├── .github ├── ISSUE_TEMPLATE │ ├── new_domain.md │ └── other.md ├── dependabot.yml └── workflows │ ├── automated-updates.yml │ ├── dns-check.yml │ └── tests.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── categories ├── analytics.txt ├── analyticsparsed ├── android.txt ├── androidparsed ├── area120.txt ├── area120parsed ├── dns.txt ├── dnsparsed ├── domains.txt ├── domainsparsed ├── doubleclick.txt ├── doubleclickparsed ├── fiber.txt ├── fiberparsed ├── firebase.txt ├── firebaseparsed ├── fitbit.txt ├── fitbitparsed ├── fonts.txt ├── fontsparsed ├── general.txt ├── generalparsed ├── jibemobile.txt ├── jibemobileparsed ├── mail.txt ├── mailparsed ├── nest.txt ├── nestparsed ├── pagelink.txt ├── pagelinkparsed ├── products.txt ├── productsparsed ├── proxies.txt ├── proxiesparsed ├── shortlinks.txt ├── shortlinksparsed ├── tenor.txt ├── tenorparsed ├── thirdparty.txt ├── thirdpartyparsed ├── youtube.txt └── youtubeparsed ├── convert.py ├── google-domains ├── images ├── GAFAMSPLATTEXTNOGgit.png └── gafam-poster-en-color.png ├── install.py ├── pihole-google-adguard-important.txt ├── pihole-google-adguard.txt ├── pihole-google-dnsmasq.conf ├── pihole-google-unbound.conf ├── pihole-google.txt ├── regex.list ├── requirements.txt ├── scripts ├── dnscheck.py ├── domain-check-api.py └── tests.py ├── unbound.conf └── wildcards-domains /.github/ISSUE_TEMPLATE/new_domain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/.github/ISSUE_TEMPLATE/new_domain.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/.github/ISSUE_TEMPLATE/other.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/automated-updates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/.github/workflows/automated-updates.yml -------------------------------------------------------------------------------- /.github/workflows/dns-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/.github/workflows/dns-check.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | .venv -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/README.md -------------------------------------------------------------------------------- /categories/analytics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/categories/analytics.txt -------------------------------------------------------------------------------- /categories/analyticsparsed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/categories/analyticsparsed -------------------------------------------------------------------------------- /categories/android.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/categories/android.txt -------------------------------------------------------------------------------- /categories/androidparsed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/categories/androidparsed -------------------------------------------------------------------------------- /categories/area120.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/categories/area120.txt -------------------------------------------------------------------------------- /categories/area120parsed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/categories/area120parsed -------------------------------------------------------------------------------- /categories/dns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/categories/dns.txt -------------------------------------------------------------------------------- /categories/dnsparsed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/categories/dnsparsed -------------------------------------------------------------------------------- /categories/domains.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/categories/domains.txt -------------------------------------------------------------------------------- /categories/domainsparsed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/categories/domainsparsed -------------------------------------------------------------------------------- /categories/doubleclick.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/categories/doubleclick.txt -------------------------------------------------------------------------------- /categories/doubleclickparsed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/categories/doubleclickparsed -------------------------------------------------------------------------------- /categories/fiber.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/categories/fiber.txt -------------------------------------------------------------------------------- /categories/fiberparsed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/categories/fiberparsed -------------------------------------------------------------------------------- /categories/firebase.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/categories/firebase.txt -------------------------------------------------------------------------------- /categories/firebaseparsed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/categories/firebaseparsed -------------------------------------------------------------------------------- /categories/fitbit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/categories/fitbit.txt -------------------------------------------------------------------------------- /categories/fitbitparsed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/categories/fitbitparsed -------------------------------------------------------------------------------- /categories/fonts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/categories/fonts.txt -------------------------------------------------------------------------------- /categories/fontsparsed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/categories/fontsparsed -------------------------------------------------------------------------------- /categories/general.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/categories/general.txt -------------------------------------------------------------------------------- /categories/generalparsed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/categories/generalparsed -------------------------------------------------------------------------------- /categories/jibemobile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/categories/jibemobile.txt -------------------------------------------------------------------------------- /categories/jibemobileparsed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/categories/jibemobileparsed -------------------------------------------------------------------------------- /categories/mail.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/categories/mail.txt -------------------------------------------------------------------------------- /categories/mailparsed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/categories/mailparsed -------------------------------------------------------------------------------- /categories/nest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/categories/nest.txt -------------------------------------------------------------------------------- /categories/nestparsed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/categories/nestparsed -------------------------------------------------------------------------------- /categories/pagelink.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/categories/pagelink.txt -------------------------------------------------------------------------------- /categories/pagelinkparsed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/categories/pagelinkparsed -------------------------------------------------------------------------------- /categories/products.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/categories/products.txt -------------------------------------------------------------------------------- /categories/productsparsed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/categories/productsparsed -------------------------------------------------------------------------------- /categories/proxies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/categories/proxies.txt -------------------------------------------------------------------------------- /categories/proxiesparsed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/categories/proxiesparsed -------------------------------------------------------------------------------- /categories/shortlinks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/categories/shortlinks.txt -------------------------------------------------------------------------------- /categories/shortlinksparsed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/categories/shortlinksparsed -------------------------------------------------------------------------------- /categories/tenor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/categories/tenor.txt -------------------------------------------------------------------------------- /categories/tenorparsed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/categories/tenorparsed -------------------------------------------------------------------------------- /categories/thirdparty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/categories/thirdparty.txt -------------------------------------------------------------------------------- /categories/thirdpartyparsed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/categories/thirdpartyparsed -------------------------------------------------------------------------------- /categories/youtube.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/categories/youtube.txt -------------------------------------------------------------------------------- /categories/youtubeparsed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/categories/youtubeparsed -------------------------------------------------------------------------------- /convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/convert.py -------------------------------------------------------------------------------- /google-domains: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/google-domains -------------------------------------------------------------------------------- /images/GAFAMSPLATTEXTNOGgit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/images/GAFAMSPLATTEXTNOGgit.png -------------------------------------------------------------------------------- /images/gafam-poster-en-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/images/gafam-poster-en-color.png -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/install.py -------------------------------------------------------------------------------- /pihole-google-adguard-important.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/pihole-google-adguard-important.txt -------------------------------------------------------------------------------- /pihole-google-adguard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/pihole-google-adguard.txt -------------------------------------------------------------------------------- /pihole-google-dnsmasq.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/pihole-google-dnsmasq.conf -------------------------------------------------------------------------------- /pihole-google-unbound.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/pihole-google-unbound.conf -------------------------------------------------------------------------------- /pihole-google.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/pihole-google.txt -------------------------------------------------------------------------------- /regex.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/regex.list -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/dnscheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/scripts/dnscheck.py -------------------------------------------------------------------------------- /scripts/domain-check-api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/scripts/domain-check-api.py -------------------------------------------------------------------------------- /scripts/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/scripts/tests.py -------------------------------------------------------------------------------- /unbound.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/unbound.conf -------------------------------------------------------------------------------- /wildcards-domains: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickspaargaren/no-google/HEAD/wildcards-domains --------------------------------------------------------------------------------