如何使用xpcom更改firefox代理设置

时间:2012-05-15 16:38:07

标签: javascript firefox-addon xpcom

我有一个在localhost(127.0.0.1)上运行的代理服务器,并且我已经厌倦必须培训用户如何在firefox中切换代理以绕过被阻止的网站。
 我决定写一个插件。我想知道如何使用 xpcom 告诉firefox使用某个代理,例如
对于http,请使用127.0.0.1端口8080.
互联网上的例子很少。

由于

1 个答案:

答案 0 :(得分:5)

代理设置存储在preferences中。您可能想要更改network.proxy.typenetwork.proxy.httpnetwork.proxy.http_portdocumentation)。像这样:

Components.utils.import("resource://gre/modules/Services.jsm");
Services.prefs.setIntPref("network.proxy.type", 1);
Services.prefs.setCharPref("network.proxy.http", "127.0.0.1");
Services.prefs.setIntPref("network.proxy.http_port", 8080);

如果您需要为每个网址动态确定代理,您可以使用nsIProtocolProxyService interface之前的功能提供程序 - 它允许您定义“代理过滤器”。这样的事情应该有效:

var pps = Components.classes["@mozilla.org/network/protocol-proxy-service;1"]
          .getService(Components.interfaces.nsIProtocolProxyService);

// Create the proxy info object in advance to avoid creating one every time
var myProxyInfo = pps.newProxyInfo("http", "127.0.0.1", 8080, 0, -1, 0);

var filter = {
  applyFilter: function(pps, uri, proxy)
  {
    if (uri.spec == ...)
      return myProxyInfo;
    else
      return proxy;
  }
};
pps.registerFilter(filter, 1000);