├── README ├── chrome.manifest ├── chrome ├── content │ ├── options.xul │ ├── overlay.js │ └── overlay.xul └── locale │ └── en-US │ ├── overlay.dtd │ └── overlay.properties ├── defaults └── preferences │ └── prefs.js └── install.rdf /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ProxyMob/HEAD/README -------------------------------------------------------------------------------- /chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ProxyMob/HEAD/chrome.manifest -------------------------------------------------------------------------------- /chrome/content/options.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ProxyMob/HEAD/chrome/content/options.xul -------------------------------------------------------------------------------- /chrome/content/overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ProxyMob/HEAD/chrome/content/overlay.js -------------------------------------------------------------------------------- /chrome/content/overlay.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ProxyMob/HEAD/chrome/content/overlay.xul -------------------------------------------------------------------------------- /chrome/locale/en-US/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ProxyMob/HEAD/chrome/locale/en-US/overlay.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/overlay.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /defaults/preferences/prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ProxyMob/HEAD/defaults/preferences/prefs.js -------------------------------------------------------------------------------- /install.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/ProxyMob/HEAD/install.rdf --------------------------------------------------------------------------------