├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── _locales ├── en │ └── messages.json └── zh_TW │ └── messages.json ├── background.js ├── cfblocker ├── Filter.js ├── ListFormatter.js ├── LocalStorageStore.js └── UrlFormatter.js ├── icons ├── chrome-icon.png ├── promotion-920x680.png ├── screenshot-en.png └── screenshot-zh_TW.png ├── img ├── alert-octagon.svg └── ic_alert_octagon.png ├── manifest.json ├── options.css ├── options.html ├── options.js ├── package.json ├── sites.js ├── stop.css ├── stop.html ├── stop.js └── utils.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildskyf/ihatecontentfarm/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildskyf/ihatecontentfarm/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildskyf/ihatecontentfarm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildskyf/ihatecontentfarm/HEAD/README.md -------------------------------------------------------------------------------- /_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildskyf/ihatecontentfarm/HEAD/_locales/en/messages.json -------------------------------------------------------------------------------- /_locales/zh_TW/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildskyf/ihatecontentfarm/HEAD/_locales/zh_TW/messages.json -------------------------------------------------------------------------------- /background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildskyf/ihatecontentfarm/HEAD/background.js -------------------------------------------------------------------------------- /cfblocker/Filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildskyf/ihatecontentfarm/HEAD/cfblocker/Filter.js -------------------------------------------------------------------------------- /cfblocker/ListFormatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildskyf/ihatecontentfarm/HEAD/cfblocker/ListFormatter.js -------------------------------------------------------------------------------- /cfblocker/LocalStorageStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildskyf/ihatecontentfarm/HEAD/cfblocker/LocalStorageStore.js -------------------------------------------------------------------------------- /cfblocker/UrlFormatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildskyf/ihatecontentfarm/HEAD/cfblocker/UrlFormatter.js -------------------------------------------------------------------------------- /icons/chrome-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildskyf/ihatecontentfarm/HEAD/icons/chrome-icon.png -------------------------------------------------------------------------------- /icons/promotion-920x680.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildskyf/ihatecontentfarm/HEAD/icons/promotion-920x680.png -------------------------------------------------------------------------------- /icons/screenshot-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildskyf/ihatecontentfarm/HEAD/icons/screenshot-en.png -------------------------------------------------------------------------------- /icons/screenshot-zh_TW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildskyf/ihatecontentfarm/HEAD/icons/screenshot-zh_TW.png -------------------------------------------------------------------------------- /img/alert-octagon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildskyf/ihatecontentfarm/HEAD/img/alert-octagon.svg -------------------------------------------------------------------------------- /img/ic_alert_octagon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildskyf/ihatecontentfarm/HEAD/img/ic_alert_octagon.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildskyf/ihatecontentfarm/HEAD/manifest.json -------------------------------------------------------------------------------- /options.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildskyf/ihatecontentfarm/HEAD/options.css -------------------------------------------------------------------------------- /options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildskyf/ihatecontentfarm/HEAD/options.html -------------------------------------------------------------------------------- /options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildskyf/ihatecontentfarm/HEAD/options.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildskyf/ihatecontentfarm/HEAD/package.json -------------------------------------------------------------------------------- /sites.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildskyf/ihatecontentfarm/HEAD/sites.js -------------------------------------------------------------------------------- /stop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildskyf/ihatecontentfarm/HEAD/stop.css -------------------------------------------------------------------------------- /stop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildskyf/ihatecontentfarm/HEAD/stop.html -------------------------------------------------------------------------------- /stop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildskyf/ihatecontentfarm/HEAD/stop.js -------------------------------------------------------------------------------- /utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildskyf/ihatecontentfarm/HEAD/utils.js --------------------------------------------------------------------------------