├── .github ├── ISSUE_TEMPLATE │ ├── blank-issue.yaml │ ├── bug-report.yaml │ ├── new-type.yml │ └── testing.yml ├── PULL_REQUEST_TEMPLATE │ └── pull_request_template.md ├── dependabot.yml ├── labeler.yml └── workflows │ ├── bandit.yml │ ├── build_blocklist.yml │ ├── codeql.yml │ ├── deploy_cloudflare.yml │ ├── greetings.yml │ ├── label.yml │ ├── sast-gitleaks.yml │ ├── sast-semgrep.yml │ └── stale.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── Lists ├── BLACKLIST-mixed.txt ├── BLACKLIST.txt ├── WHITELIST.txt ├── abp-mixed.txt ├── abp.txt ├── adguard-mixed.txt ├── adguard.txt ├── default_ad_blocklist.txt ├── dnsmasq-mixed.txt ├── dnsmasq.txt ├── pi-hole-mixed.txt ├── pi-hole.txt ├── standard_list-mixed.txt └── standard_list.txt ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── cfg ├── gitleaks.toml └── repolint.json ├── docs ├── CNAME ├── contributing.md ├── docs_about.md ├── docs_contributing.md ├── docs_faq.md ├── docs_installation.md ├── docs_license.md ├── docs_testing.md ├── docs_whitelist.md ├── images │ ├── License-Image.jpeg │ ├── ads_space.png │ ├── contributing.svg │ ├── spotify_ads_list_logo.png │ ├── standard_logo.svg │ └── tutorial.gif ├── index.md └── versions_standard.md ├── mkdocs.yml ├── requirements.txt ├── scripts ├── add_default-ads-blocklist.py ├── check_dns.py ├── check_whitelist.py ├── remove_duplicated.py ├── update_list_mixed.py └── update_lists.py └── stylesheets └── extra.css /.github/ISSUE_TEMPLATE/blank-issue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/.github/ISSUE_TEMPLATE/blank-issue.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/.github/ISSUE_TEMPLATE/bug-report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-type.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/.github/ISSUE_TEMPLATE/new-type.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/.github/ISSUE_TEMPLATE/testing.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/bandit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/.github/workflows/bandit.yml -------------------------------------------------------------------------------- /.github/workflows/build_blocklist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/.github/workflows/build_blocklist.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/deploy_cloudflare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/.github/workflows/deploy_cloudflare.yml -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.github/workflows/label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/.github/workflows/label.yml -------------------------------------------------------------------------------- /.github/workflows/sast-gitleaks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/.github/workflows/sast-gitleaks.yml -------------------------------------------------------------------------------- /.github/workflows/sast-semgrep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/.github/workflows/sast-semgrep.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Empty -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Lists/BLACKLIST-mixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/Lists/BLACKLIST-mixed.txt -------------------------------------------------------------------------------- /Lists/BLACKLIST.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/Lists/BLACKLIST.txt -------------------------------------------------------------------------------- /Lists/WHITELIST.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/Lists/WHITELIST.txt -------------------------------------------------------------------------------- /Lists/abp-mixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/Lists/abp-mixed.txt -------------------------------------------------------------------------------- /Lists/abp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/Lists/abp.txt -------------------------------------------------------------------------------- /Lists/adguard-mixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/Lists/adguard-mixed.txt -------------------------------------------------------------------------------- /Lists/adguard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/Lists/adguard.txt -------------------------------------------------------------------------------- /Lists/default_ad_blocklist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/Lists/default_ad_blocklist.txt -------------------------------------------------------------------------------- /Lists/dnsmasq-mixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/Lists/dnsmasq-mixed.txt -------------------------------------------------------------------------------- /Lists/dnsmasq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/Lists/dnsmasq.txt -------------------------------------------------------------------------------- /Lists/pi-hole-mixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/Lists/pi-hole-mixed.txt -------------------------------------------------------------------------------- /Lists/pi-hole.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/Lists/pi-hole.txt -------------------------------------------------------------------------------- /Lists/standard_list-mixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/Lists/standard_list-mixed.txt -------------------------------------------------------------------------------- /Lists/standard_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/Lists/standard_list.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /cfg/gitleaks.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/cfg/gitleaks.toml -------------------------------------------------------------------------------- /cfg/repolint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/cfg/repolint.json -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | spotify.piscinadeentropia.es -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/docs_about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/docs/docs_about.md -------------------------------------------------------------------------------- /docs/docs_contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/docs/docs_contributing.md -------------------------------------------------------------------------------- /docs/docs_faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/docs/docs_faq.md -------------------------------------------------------------------------------- /docs/docs_installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/docs/docs_installation.md -------------------------------------------------------------------------------- /docs/docs_license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/docs/docs_license.md -------------------------------------------------------------------------------- /docs/docs_testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/docs/docs_testing.md -------------------------------------------------------------------------------- /docs/docs_whitelist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/docs/docs_whitelist.md -------------------------------------------------------------------------------- /docs/images/License-Image.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/docs/images/License-Image.jpeg -------------------------------------------------------------------------------- /docs/images/ads_space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/docs/images/ads_space.png -------------------------------------------------------------------------------- /docs/images/contributing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/docs/images/contributing.svg -------------------------------------------------------------------------------- /docs/images/spotify_ads_list_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/docs/images/spotify_ads_list_logo.png -------------------------------------------------------------------------------- /docs/images/standard_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/docs/images/standard_logo.svg -------------------------------------------------------------------------------- /docs/images/tutorial.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/docs/images/tutorial.gif -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/versions_standard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/docs/versions_standard.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/add_default-ads-blocklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/scripts/add_default-ads-blocklist.py -------------------------------------------------------------------------------- /scripts/check_dns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/scripts/check_dns.py -------------------------------------------------------------------------------- /scripts/check_whitelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/scripts/check_whitelist.py -------------------------------------------------------------------------------- /scripts/remove_duplicated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/scripts/remove_duplicated.py -------------------------------------------------------------------------------- /scripts/update_list_mixed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/scripts/update_list_mixed.py -------------------------------------------------------------------------------- /scripts/update_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/scripts/update_lists.py -------------------------------------------------------------------------------- /stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isaaker/Spotify-AdsList/HEAD/stylesheets/extra.css --------------------------------------------------------------------------------