Chrome 应用程序 - Webview 代理支持 [PC]

Chrome App - Webview Proxy support [PC]

我正在使用 webview 在 google chrome 应用程序中加载外部网站,我想通过一些代理 IP 而不是我的本地 IP 加载这些 URL。我检查了 webview 标签,但找不到 proxy.Is 的任何选项,有办法实现这一点。

window.html

<!DOCTYPE html>
<html>
  <head>
  </head>
  <body>
    <div>Hello, world!</div>
    <webview id="wv1" partition="p1" style="width: 450px; height: 300px; border: 2px solid red" src="http://www.google.com"></webview>
    <webview id="wv2" partition="p2" style="width: 450px; height: 300px; border: 2px solid red" src="http://www.nytimes.com"></webview>
    <webview id="wv3" partition="p3" style="width: 450px; height: 300px; border: 2px solid red" src="http://www.whosebug.com"></webview>
    <webview id="wv4" partition="p4" style="width: 450px; height: 300px; border: 2px solid red" src="http://www.yahoo.com"></webview>
  </body>
</html> 

遗憾的是,无法通过应用程序对其进行影响。

据推测,Chrome 应用程序从浏览器继承了代理设置,<webview> 无法影响这一点。扩展 have an API to manipulate that setting, but Apps do not.