├── .gitignore ├── IAutoProxy.idl ├── Packager.pm ├── README ├── apdiff.sh ├── chrome.manifest ├── chrome ├── content │ ├── errors.html │ ├── filterClasses.js │ ├── filterListener.js │ ├── filterStorage.js │ ├── matcher.js │ ├── policy.js │ ├── prefs.js │ ├── proxy.js │ ├── requests.js │ ├── subscriptionClasses.js │ ├── synchronizer.js │ ├── ui │ │ ├── about.js │ │ ├── about.xul │ │ ├── browserWindow.js │ │ ├── chooseProxyServer.js │ │ ├── chooseProxyServer.xul │ │ ├── editProxyServer.js │ │ ├── editProxyServer.xul │ │ ├── enableProxyOn.js │ │ ├── findbar.js │ │ ├── firefoxOverlay.xul │ │ ├── flasher.js │ │ ├── mailOverlay.xul │ │ ├── optionsOverlay.js │ │ ├── optionsOverlay.xul │ │ ├── overlay.js │ │ ├── overlayGeneral.xul │ │ ├── prismOverlay.xul │ │ ├── seamonkeyOverlay.xul │ │ ├── settings.js │ │ ├── settings.xul │ │ ├── sidebar.js │ │ ├── sidebar.xul │ │ ├── sidebarDetached.xul │ │ ├── subscription.js │ │ ├── subscription.xul │ │ ├── subscriptions.xml │ │ ├── tip_subscriptions.js │ │ ├── tip_subscriptions.xul │ │ └── utils.js │ └── utils.js ├── locale │ ├── de │ │ ├── about.dtd │ │ ├── chooseProxyServer.dtd │ │ ├── editProxyServer.dtd │ │ ├── global.properties │ │ ├── overlay.dtd │ │ ├── settings.dtd │ │ ├── sidebar.dtd │ │ ├── subscription.dtd │ │ └── tip_subscriptions.dtd │ ├── en-US │ │ ├── about.dtd │ │ ├── chooseProxyServer.dtd │ │ ├── editProxyServer.dtd │ │ ├── global.properties │ │ ├── overlay.dtd │ │ ├── settings.dtd │ │ ├── sidebar.dtd │ │ ├── subscription.dtd │ │ └── tip_subscriptions.dtd │ ├── es-ES │ │ ├── about.dtd │ │ ├── chooseProxyServer.dtd │ │ ├── editProxyServer.dtd │ │ ├── global.properties │ │ ├── overlay.dtd │ │ ├── settings.dtd │ │ ├── sidebar.dtd │ │ ├── subscription.dtd │ │ └── tip_subscriptions.dtd │ ├── fr │ │ ├── about.dtd │ │ ├── chooseProxyServer.dtd │ │ ├── editProxyServer.dtd │ │ ├── global.properties │ │ ├── overlay.dtd │ │ ├── settings.dtd │ │ ├── sidebar.dtd │ │ ├── subscription.dtd │ │ └── tip_subscriptions.dtd │ ├── pt-BR │ │ ├── about.dtd │ │ ├── chooseProxyServer.dtd │ │ ├── editProxyServer.dtd │ │ ├── global.properties │ │ ├── overlay.dtd │ │ ├── settings.dtd │ │ ├── sidebar.dtd │ │ ├── subscription.dtd │ │ └── tip_subscriptions.dtd │ ├── sq-AL │ │ ├── about.dtd │ │ ├── chooseProxyServer.dtd │ │ ├── editProxyServer.dtd │ │ ├── global.properties │ │ ├── overlay.dtd │ │ ├── settings.dtd │ │ ├── sidebar.dtd │ │ ├── subscription.dtd │ │ └── tip_subscriptions.dtd │ ├── sv-SE │ │ ├── about.dtd │ │ ├── chooseProxyServer.dtd │ │ ├── editProxyServer.dtd │ │ ├── global.properties │ │ ├── overlay.dtd │ │ ├── settings.dtd │ │ ├── sidebar.dtd │ │ ├── subscription.dtd │ │ └── tip_subscriptions.dtd │ └── zh-CN │ │ ├── about.dtd │ │ ├── chooseProxyServer.dtd │ │ ├── editProxyServer.dtd │ │ ├── global.properties │ │ ├── overlay.dtd │ │ ├── settings.dtd │ │ ├── sidebar.dtd │ │ ├── subscription.dtd │ │ └── tip_subscriptions.dtd └── skin │ ├── about.css │ ├── aup-status-16.png │ ├── aup-status.png │ ├── checkbox.png │ ├── chooseProxyServer.css │ ├── close.png │ ├── editProxyServer.css │ ├── item-state.png │ ├── overlay.css │ ├── seaMonkeyHack.css │ ├── settings.css │ ├── sidebar.css │ ├── subscription.css │ └── tip_subscriptions.css ├── components └── AutoProxy.js ├── create_xpi.pl ├── defaults └── preferences │ └── autoproxy.js ├── icon.png ├── install.rdf ├── make_babelzilla_build.pl ├── make_devbuild.pl ├── make_devbuild.sh ├── make_release.pl ├── remove_string.pl ├── search_and_replace.pl ├── setupTestEnvironment.pl ├── test_locales.pl └── update.rdf /.gitignore: -------------------------------------------------------------------------------- 1 | *.xpi 2 | -------------------------------------------------------------------------------- /IAutoProxy.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/IAutoProxy.idl -------------------------------------------------------------------------------- /Packager.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/Packager.pm -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/README -------------------------------------------------------------------------------- /apdiff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/apdiff.sh -------------------------------------------------------------------------------- /chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome.manifest -------------------------------------------------------------------------------- /chrome/content/errors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/content/errors.html -------------------------------------------------------------------------------- /chrome/content/filterClasses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/content/filterClasses.js -------------------------------------------------------------------------------- /chrome/content/filterListener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/content/filterListener.js -------------------------------------------------------------------------------- /chrome/content/filterStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/content/filterStorage.js -------------------------------------------------------------------------------- /chrome/content/matcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/content/matcher.js -------------------------------------------------------------------------------- /chrome/content/policy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/content/policy.js -------------------------------------------------------------------------------- /chrome/content/prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/content/prefs.js -------------------------------------------------------------------------------- /chrome/content/proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/content/proxy.js -------------------------------------------------------------------------------- /chrome/content/requests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/content/requests.js -------------------------------------------------------------------------------- /chrome/content/subscriptionClasses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/content/subscriptionClasses.js -------------------------------------------------------------------------------- /chrome/content/synchronizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/content/synchronizer.js -------------------------------------------------------------------------------- /chrome/content/ui/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/content/ui/about.js -------------------------------------------------------------------------------- /chrome/content/ui/about.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/content/ui/about.xul -------------------------------------------------------------------------------- /chrome/content/ui/browserWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/content/ui/browserWindow.js -------------------------------------------------------------------------------- /chrome/content/ui/chooseProxyServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/content/ui/chooseProxyServer.js -------------------------------------------------------------------------------- /chrome/content/ui/chooseProxyServer.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/content/ui/chooseProxyServer.xul -------------------------------------------------------------------------------- /chrome/content/ui/editProxyServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/content/ui/editProxyServer.js -------------------------------------------------------------------------------- /chrome/content/ui/editProxyServer.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/content/ui/editProxyServer.xul -------------------------------------------------------------------------------- /chrome/content/ui/enableProxyOn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/content/ui/enableProxyOn.js -------------------------------------------------------------------------------- /chrome/content/ui/findbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/content/ui/findbar.js -------------------------------------------------------------------------------- /chrome/content/ui/firefoxOverlay.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/content/ui/firefoxOverlay.xul -------------------------------------------------------------------------------- /chrome/content/ui/flasher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/content/ui/flasher.js -------------------------------------------------------------------------------- /chrome/content/ui/mailOverlay.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/content/ui/mailOverlay.xul -------------------------------------------------------------------------------- /chrome/content/ui/optionsOverlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/content/ui/optionsOverlay.js -------------------------------------------------------------------------------- /chrome/content/ui/optionsOverlay.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/content/ui/optionsOverlay.xul -------------------------------------------------------------------------------- /chrome/content/ui/overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/content/ui/overlay.js -------------------------------------------------------------------------------- /chrome/content/ui/overlayGeneral.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/content/ui/overlayGeneral.xul -------------------------------------------------------------------------------- /chrome/content/ui/prismOverlay.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/content/ui/prismOverlay.xul -------------------------------------------------------------------------------- /chrome/content/ui/seamonkeyOverlay.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/content/ui/seamonkeyOverlay.xul -------------------------------------------------------------------------------- /chrome/content/ui/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/content/ui/settings.js -------------------------------------------------------------------------------- /chrome/content/ui/settings.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/content/ui/settings.xul -------------------------------------------------------------------------------- /chrome/content/ui/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/content/ui/sidebar.js -------------------------------------------------------------------------------- /chrome/content/ui/sidebar.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/content/ui/sidebar.xul -------------------------------------------------------------------------------- /chrome/content/ui/sidebarDetached.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/content/ui/sidebarDetached.xul -------------------------------------------------------------------------------- /chrome/content/ui/subscription.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/content/ui/subscription.js -------------------------------------------------------------------------------- /chrome/content/ui/subscription.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/content/ui/subscription.xul -------------------------------------------------------------------------------- /chrome/content/ui/subscriptions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/content/ui/subscriptions.xml -------------------------------------------------------------------------------- /chrome/content/ui/tip_subscriptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/content/ui/tip_subscriptions.js -------------------------------------------------------------------------------- /chrome/content/ui/tip_subscriptions.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/content/ui/tip_subscriptions.xul -------------------------------------------------------------------------------- /chrome/content/ui/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/content/ui/utils.js -------------------------------------------------------------------------------- /chrome/content/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/content/utils.js -------------------------------------------------------------------------------- /chrome/locale/de/about.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/de/about.dtd -------------------------------------------------------------------------------- /chrome/locale/de/chooseProxyServer.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /chrome/locale/de/editProxyServer.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/de/editProxyServer.dtd -------------------------------------------------------------------------------- /chrome/locale/de/global.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/de/global.properties -------------------------------------------------------------------------------- /chrome/locale/de/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/de/overlay.dtd -------------------------------------------------------------------------------- /chrome/locale/de/settings.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/de/settings.dtd -------------------------------------------------------------------------------- /chrome/locale/de/sidebar.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/de/sidebar.dtd -------------------------------------------------------------------------------- /chrome/locale/de/subscription.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/de/subscription.dtd -------------------------------------------------------------------------------- /chrome/locale/de/tip_subscriptions.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/de/tip_subscriptions.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/about.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/en-US/about.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/chooseProxyServer.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/en-US/chooseProxyServer.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/editProxyServer.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/en-US/editProxyServer.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/global.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/en-US/global.properties -------------------------------------------------------------------------------- /chrome/locale/en-US/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/en-US/overlay.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/settings.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/en-US/settings.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/sidebar.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/en-US/sidebar.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/subscription.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/en-US/subscription.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/tip_subscriptions.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/en-US/tip_subscriptions.dtd -------------------------------------------------------------------------------- /chrome/locale/es-ES/about.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/es-ES/about.dtd -------------------------------------------------------------------------------- /chrome/locale/es-ES/chooseProxyServer.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /chrome/locale/es-ES/editProxyServer.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/es-ES/editProxyServer.dtd -------------------------------------------------------------------------------- /chrome/locale/es-ES/global.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/es-ES/global.properties -------------------------------------------------------------------------------- /chrome/locale/es-ES/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/es-ES/overlay.dtd -------------------------------------------------------------------------------- /chrome/locale/es-ES/settings.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/es-ES/settings.dtd -------------------------------------------------------------------------------- /chrome/locale/es-ES/sidebar.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/es-ES/sidebar.dtd -------------------------------------------------------------------------------- /chrome/locale/es-ES/subscription.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/es-ES/subscription.dtd -------------------------------------------------------------------------------- /chrome/locale/es-ES/tip_subscriptions.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/es-ES/tip_subscriptions.dtd -------------------------------------------------------------------------------- /chrome/locale/fr/about.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/fr/about.dtd -------------------------------------------------------------------------------- /chrome/locale/fr/chooseProxyServer.dtd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chrome/locale/fr/editProxyServer.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/fr/editProxyServer.dtd -------------------------------------------------------------------------------- /chrome/locale/fr/global.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/fr/global.properties -------------------------------------------------------------------------------- /chrome/locale/fr/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/fr/overlay.dtd -------------------------------------------------------------------------------- /chrome/locale/fr/settings.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/fr/settings.dtd -------------------------------------------------------------------------------- /chrome/locale/fr/sidebar.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/fr/sidebar.dtd -------------------------------------------------------------------------------- /chrome/locale/fr/subscription.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/fr/subscription.dtd -------------------------------------------------------------------------------- /chrome/locale/fr/tip_subscriptions.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/fr/tip_subscriptions.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-BR/about.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/pt-BR/about.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-BR/chooseProxyServer.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /chrome/locale/pt-BR/editProxyServer.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/pt-BR/editProxyServer.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-BR/global.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/pt-BR/global.properties -------------------------------------------------------------------------------- /chrome/locale/pt-BR/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/pt-BR/overlay.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-BR/settings.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/pt-BR/settings.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-BR/sidebar.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/pt-BR/sidebar.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-BR/subscription.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/pt-BR/subscription.dtd -------------------------------------------------------------------------------- /chrome/locale/pt-BR/tip_subscriptions.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/pt-BR/tip_subscriptions.dtd -------------------------------------------------------------------------------- /chrome/locale/sq-AL/about.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/sq-AL/about.dtd -------------------------------------------------------------------------------- /chrome/locale/sq-AL/chooseProxyServer.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/sq-AL/chooseProxyServer.dtd -------------------------------------------------------------------------------- /chrome/locale/sq-AL/editProxyServer.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/sq-AL/editProxyServer.dtd -------------------------------------------------------------------------------- /chrome/locale/sq-AL/global.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/sq-AL/global.properties -------------------------------------------------------------------------------- /chrome/locale/sq-AL/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/sq-AL/overlay.dtd -------------------------------------------------------------------------------- /chrome/locale/sq-AL/settings.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/sq-AL/settings.dtd -------------------------------------------------------------------------------- /chrome/locale/sq-AL/sidebar.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/sq-AL/sidebar.dtd -------------------------------------------------------------------------------- /chrome/locale/sq-AL/subscription.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/sq-AL/subscription.dtd -------------------------------------------------------------------------------- /chrome/locale/sq-AL/tip_subscriptions.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/sq-AL/tip_subscriptions.dtd -------------------------------------------------------------------------------- /chrome/locale/sv-SE/about.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/sv-SE/about.dtd -------------------------------------------------------------------------------- /chrome/locale/sv-SE/chooseProxyServer.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /chrome/locale/sv-SE/editProxyServer.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/sv-SE/editProxyServer.dtd -------------------------------------------------------------------------------- /chrome/locale/sv-SE/global.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/sv-SE/global.properties -------------------------------------------------------------------------------- /chrome/locale/sv-SE/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/sv-SE/overlay.dtd -------------------------------------------------------------------------------- /chrome/locale/sv-SE/settings.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/sv-SE/settings.dtd -------------------------------------------------------------------------------- /chrome/locale/sv-SE/sidebar.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/sv-SE/sidebar.dtd -------------------------------------------------------------------------------- /chrome/locale/sv-SE/subscription.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/sv-SE/subscription.dtd -------------------------------------------------------------------------------- /chrome/locale/sv-SE/tip_subscriptions.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/sv-SE/tip_subscriptions.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-CN/about.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/zh-CN/about.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-CN/chooseProxyServer.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /chrome/locale/zh-CN/editProxyServer.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/zh-CN/editProxyServer.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-CN/global.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/zh-CN/global.properties -------------------------------------------------------------------------------- /chrome/locale/zh-CN/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/zh-CN/overlay.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-CN/settings.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/zh-CN/settings.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-CN/sidebar.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/zh-CN/sidebar.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-CN/subscription.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/zh-CN/subscription.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-CN/tip_subscriptions.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/locale/zh-CN/tip_subscriptions.dtd -------------------------------------------------------------------------------- /chrome/skin/about.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/skin/about.css -------------------------------------------------------------------------------- /chrome/skin/aup-status-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/skin/aup-status-16.png -------------------------------------------------------------------------------- /chrome/skin/aup-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/skin/aup-status.png -------------------------------------------------------------------------------- /chrome/skin/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/skin/checkbox.png -------------------------------------------------------------------------------- /chrome/skin/chooseProxyServer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/skin/chooseProxyServer.css -------------------------------------------------------------------------------- /chrome/skin/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/skin/close.png -------------------------------------------------------------------------------- /chrome/skin/editProxyServer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/skin/editProxyServer.css -------------------------------------------------------------------------------- /chrome/skin/item-state.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/skin/item-state.png -------------------------------------------------------------------------------- /chrome/skin/overlay.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/skin/overlay.css -------------------------------------------------------------------------------- /chrome/skin/seaMonkeyHack.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/skin/seaMonkeyHack.css -------------------------------------------------------------------------------- /chrome/skin/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/skin/settings.css -------------------------------------------------------------------------------- /chrome/skin/sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/skin/sidebar.css -------------------------------------------------------------------------------- /chrome/skin/subscription.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/skin/subscription.css -------------------------------------------------------------------------------- /chrome/skin/tip_subscriptions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/chrome/skin/tip_subscriptions.css -------------------------------------------------------------------------------- /components/AutoProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/components/AutoProxy.js -------------------------------------------------------------------------------- /create_xpi.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/create_xpi.pl -------------------------------------------------------------------------------- /defaults/preferences/autoproxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/defaults/preferences/autoproxy.js -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/icon.png -------------------------------------------------------------------------------- /install.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/install.rdf -------------------------------------------------------------------------------- /make_babelzilla_build.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/make_babelzilla_build.pl -------------------------------------------------------------------------------- /make_devbuild.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/make_devbuild.pl -------------------------------------------------------------------------------- /make_devbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/make_devbuild.sh -------------------------------------------------------------------------------- /make_release.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/make_release.pl -------------------------------------------------------------------------------- /remove_string.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/remove_string.pl -------------------------------------------------------------------------------- /search_and_replace.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/search_and_replace.pl -------------------------------------------------------------------------------- /setupTestEnvironment.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/setupTestEnvironment.pl -------------------------------------------------------------------------------- /test_locales.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/test_locales.pl -------------------------------------------------------------------------------- /update.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agunchan/autoproxy/HEAD/update.rdf --------------------------------------------------------------------------------