├── LICENSE ├── README.md ├── css └── popup.css ├── icon ├── icon128.png ├── icon32.png └── icon64.png ├── js ├── background.js ├── jquery-1.7.2.min.js └── popup.js ├── main.html ├── manifest.json ├── onServer ├── player │ └── README.md ├── rulelist │ ├── README.md │ ├── configlist │ ├── proxylist │ ├── redirectlist │ ├── refererslist │ └── update └── ruletool │ ├── README.md │ ├── gen.py │ ├── gen3.py │ ├── oconfiglist.py │ ├── ohostsite.py │ ├── oproxylist.py │ ├── oredirectlist.py │ └── orefererslist.py ├── popup.html └── swf └── README.md /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqhtyi/ADfree-Player-Offline/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqhtyi/ADfree-Player-Offline/HEAD/README.md -------------------------------------------------------------------------------- /css/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqhtyi/ADfree-Player-Offline/HEAD/css/popup.css -------------------------------------------------------------------------------- /icon/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqhtyi/ADfree-Player-Offline/HEAD/icon/icon128.png -------------------------------------------------------------------------------- /icon/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqhtyi/ADfree-Player-Offline/HEAD/icon/icon32.png -------------------------------------------------------------------------------- /icon/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqhtyi/ADfree-Player-Offline/HEAD/icon/icon64.png -------------------------------------------------------------------------------- /js/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqhtyi/ADfree-Player-Offline/HEAD/js/background.js -------------------------------------------------------------------------------- /js/jquery-1.7.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqhtyi/ADfree-Player-Offline/HEAD/js/jquery-1.7.2.min.js -------------------------------------------------------------------------------- /js/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqhtyi/ADfree-Player-Offline/HEAD/js/popup.js -------------------------------------------------------------------------------- /main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqhtyi/ADfree-Player-Offline/HEAD/main.html -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqhtyi/ADfree-Player-Offline/HEAD/manifest.json -------------------------------------------------------------------------------- /onServer/player/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqhtyi/ADfree-Player-Offline/HEAD/onServer/player/README.md -------------------------------------------------------------------------------- /onServer/rulelist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqhtyi/ADfree-Player-Offline/HEAD/onServer/rulelist/README.md -------------------------------------------------------------------------------- /onServer/rulelist/configlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqhtyi/ADfree-Player-Offline/HEAD/onServer/rulelist/configlist -------------------------------------------------------------------------------- /onServer/rulelist/proxylist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqhtyi/ADfree-Player-Offline/HEAD/onServer/rulelist/proxylist -------------------------------------------------------------------------------- /onServer/rulelist/redirectlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqhtyi/ADfree-Player-Offline/HEAD/onServer/rulelist/redirectlist -------------------------------------------------------------------------------- /onServer/rulelist/refererslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqhtyi/ADfree-Player-Offline/HEAD/onServer/rulelist/refererslist -------------------------------------------------------------------------------- /onServer/rulelist/update: -------------------------------------------------------------------------------- 1 | 1407573887080 -------------------------------------------------------------------------------- /onServer/ruletool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqhtyi/ADfree-Player-Offline/HEAD/onServer/ruletool/README.md -------------------------------------------------------------------------------- /onServer/ruletool/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqhtyi/ADfree-Player-Offline/HEAD/onServer/ruletool/gen.py -------------------------------------------------------------------------------- /onServer/ruletool/gen3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqhtyi/ADfree-Player-Offline/HEAD/onServer/ruletool/gen3.py -------------------------------------------------------------------------------- /onServer/ruletool/oconfiglist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqhtyi/ADfree-Player-Offline/HEAD/onServer/ruletool/oconfiglist.py -------------------------------------------------------------------------------- /onServer/ruletool/ohostsite.py: -------------------------------------------------------------------------------- 1 | hostsite = 'http://127.0.0.1' 2 | #Important the last character cannot be / 3 | -------------------------------------------------------------------------------- /onServer/ruletool/oproxylist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqhtyi/ADfree-Player-Offline/HEAD/onServer/ruletool/oproxylist.py -------------------------------------------------------------------------------- /onServer/ruletool/oredirectlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqhtyi/ADfree-Player-Offline/HEAD/onServer/ruletool/oredirectlist.py -------------------------------------------------------------------------------- /onServer/ruletool/orefererslist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqhtyi/ADfree-Player-Offline/HEAD/onServer/ruletool/orefererslist.py -------------------------------------------------------------------------------- /popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqhtyi/ADfree-Player-Offline/HEAD/popup.html -------------------------------------------------------------------------------- /swf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqhtyi/ADfree-Player-Offline/HEAD/swf/README.md --------------------------------------------------------------------------------