├── EventEmitter.js ├── data ├── helper │ ├── error.svg │ ├── index.css │ ├── index.html │ ├── index.js │ ├── info.svg │ └── success.svg ├── icons │ ├── 128.png │ ├── 16.png │ ├── 19.png │ ├── 256.png │ ├── 32.png │ ├── 38.png │ ├── 48.png │ ├── 512.png │ ├── 64.png │ └── enabled │ │ ├── 128.png │ │ ├── 16.png │ │ ├── 19.png │ │ ├── 256.png │ │ ├── 32.png │ │ ├── 38.png │ │ ├── 48.png │ │ ├── 512.png │ │ └── 64.png ├── options │ ├── index.css │ ├── index.html │ └── index.js ├── pac │ └── firefox.js └── popup │ ├── index.css │ ├── index.html │ ├── index.js │ ├── off.svg │ └── on.svg ├── manifest.json ├── privacy.js ├── proxy.js ├── tor.js ├── ui.js └── worker.js /EventEmitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/tor-bundle/HEAD/EventEmitter.js -------------------------------------------------------------------------------- /data/helper/error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/tor-bundle/HEAD/data/helper/error.svg -------------------------------------------------------------------------------- /data/helper/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/tor-bundle/HEAD/data/helper/index.css -------------------------------------------------------------------------------- /data/helper/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/tor-bundle/HEAD/data/helper/index.html -------------------------------------------------------------------------------- /data/helper/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/tor-bundle/HEAD/data/helper/index.js -------------------------------------------------------------------------------- /data/helper/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/tor-bundle/HEAD/data/helper/info.svg -------------------------------------------------------------------------------- /data/helper/success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/tor-bundle/HEAD/data/helper/success.svg -------------------------------------------------------------------------------- /data/icons/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/tor-bundle/HEAD/data/icons/128.png -------------------------------------------------------------------------------- /data/icons/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/tor-bundle/HEAD/data/icons/16.png -------------------------------------------------------------------------------- /data/icons/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/tor-bundle/HEAD/data/icons/19.png -------------------------------------------------------------------------------- /data/icons/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/tor-bundle/HEAD/data/icons/256.png -------------------------------------------------------------------------------- /data/icons/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/tor-bundle/HEAD/data/icons/32.png -------------------------------------------------------------------------------- /data/icons/38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/tor-bundle/HEAD/data/icons/38.png -------------------------------------------------------------------------------- /data/icons/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/tor-bundle/HEAD/data/icons/48.png -------------------------------------------------------------------------------- /data/icons/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/tor-bundle/HEAD/data/icons/512.png -------------------------------------------------------------------------------- /data/icons/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/tor-bundle/HEAD/data/icons/64.png -------------------------------------------------------------------------------- /data/icons/enabled/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/tor-bundle/HEAD/data/icons/enabled/128.png -------------------------------------------------------------------------------- /data/icons/enabled/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/tor-bundle/HEAD/data/icons/enabled/16.png -------------------------------------------------------------------------------- /data/icons/enabled/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/tor-bundle/HEAD/data/icons/enabled/19.png -------------------------------------------------------------------------------- /data/icons/enabled/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/tor-bundle/HEAD/data/icons/enabled/256.png -------------------------------------------------------------------------------- /data/icons/enabled/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/tor-bundle/HEAD/data/icons/enabled/32.png -------------------------------------------------------------------------------- /data/icons/enabled/38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/tor-bundle/HEAD/data/icons/enabled/38.png -------------------------------------------------------------------------------- /data/icons/enabled/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/tor-bundle/HEAD/data/icons/enabled/48.png -------------------------------------------------------------------------------- /data/icons/enabled/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/tor-bundle/HEAD/data/icons/enabled/512.png -------------------------------------------------------------------------------- /data/icons/enabled/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/tor-bundle/HEAD/data/icons/enabled/64.png -------------------------------------------------------------------------------- /data/options/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/tor-bundle/HEAD/data/options/index.css -------------------------------------------------------------------------------- /data/options/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/tor-bundle/HEAD/data/options/index.html -------------------------------------------------------------------------------- /data/options/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/tor-bundle/HEAD/data/options/index.js -------------------------------------------------------------------------------- /data/pac/firefox.js: -------------------------------------------------------------------------------- 1 | function FindProxyForURL() { 2 | return 'SOCKS5 127.0.0.1:22050'; 3 | } 4 | -------------------------------------------------------------------------------- /data/popup/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/tor-bundle/HEAD/data/popup/index.css -------------------------------------------------------------------------------- /data/popup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/tor-bundle/HEAD/data/popup/index.html -------------------------------------------------------------------------------- /data/popup/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/tor-bundle/HEAD/data/popup/index.js -------------------------------------------------------------------------------- /data/popup/off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/tor-bundle/HEAD/data/popup/off.svg -------------------------------------------------------------------------------- /data/popup/on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/tor-bundle/HEAD/data/popup/on.svg -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/tor-bundle/HEAD/manifest.json -------------------------------------------------------------------------------- /privacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/tor-bundle/HEAD/privacy.js -------------------------------------------------------------------------------- /proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/tor-bundle/HEAD/proxy.js -------------------------------------------------------------------------------- /tor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/tor-bundle/HEAD/tor.js -------------------------------------------------------------------------------- /ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/tor-bundle/HEAD/ui.js -------------------------------------------------------------------------------- /worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/tor-bundle/HEAD/worker.js --------------------------------------------------------------------------------