proxy.settings 编辑

A BrowserSetting object that can be used to change the browser's proxy settings.

Note: The ability to change proxy settings requires private window access because proxy settings affect both private and non-private windows. Therefore, if an extension has not been granted private window permission, calls to proxy.settings.set() will throw an exception.

The underlying value is an object with the properties listed below.

When setting this object, all properties are optional. Note that any properties that are omitted will be reset to their default value.

autoConfigUrlOptional
string. A URL to use to configure the proxy.
autoLoginOptional
boolean. Do not prompt for authentication if the password is saved. Defaults to false.
ftpOptional
string. The address of the FTP proxy. Can include a port.
httpOptional
string. The address of the HTTP proxy. Can include a port.
httpProxyAllOptional
boolean. Use the HTTP proxy server for all protocols. Defaults to false.
passthroughOptional
string. A comma-separated list of hosts which should not be proxied. Defaults to "localhost, 127.0.0.1".
proxyDNSOptional
boolean. Proxy DNS when using SOCKS5. Defaults to false.
proxyTypeOptional
string. The type of proxy to use. This may take any one of the following values: "none", "autoDetect", "system", "manual", "autoConfig". Defaults to "system".
socksOptional
string. The address of the SOCKS proxy. Can include a port.
socksVersionOptional
integer. The version of the SOCKS proxy. May be 4 or 5. Defaults to 5.
sslOptional
string. The address of the SSL proxy. Can include a port.

Examples

let proxySettings = {
  proxyType: "manual",
  http: "http://proxy.org:8080",
  socksVersion: 4,
  passthrough: ".example.org"
};

browser.proxy.settings.set({value: proxySettings});

Browser compatibility

BCD tables only load in the browser

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:93 次

字数:3185

最后编辑:7年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文