├── .editorconfig ├── .eslintrc.js ├── .eslintrc.json ├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .jsbeautifyrc ├── LICENSE ├── README.md ├── __tests__ └── dom-spec.js ├── ads-dom-remover-runner.js ├── ads-dom-remover.js └── package.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/userscripts-ads-dom-remover/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/userscripts-ads-dom-remover/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/userscripts-ads-dom-remover/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/userscripts-ads-dom-remover/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/userscripts-ads-dom-remover/HEAD/.gitignore -------------------------------------------------------------------------------- /.jsbeautifyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/userscripts-ads-dom-remover/HEAD/.jsbeautifyrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/userscripts-ads-dom-remover/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/userscripts-ads-dom-remover/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/dom-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/userscripts-ads-dom-remover/HEAD/__tests__/dom-spec.js -------------------------------------------------------------------------------- /ads-dom-remover-runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/userscripts-ads-dom-remover/HEAD/ads-dom-remover-runner.js -------------------------------------------------------------------------------- /ads-dom-remover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/userscripts-ads-dom-remover/HEAD/ads-dom-remover.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/userscripts-ads-dom-remover/HEAD/package.json --------------------------------------------------------------------------------