mirror of
https://github.com/nickspaargaren/no-google.git
synced 2023-12-13 21:00:26 +01:00
Remove problematic regex filters reported in #33
This commit is contained in:
parent
1cf19f49c6
commit
aaf88a781a
2 changed files with 10 additions and 58 deletions
64
README.md
64
README.md
|
@ -16,61 +16,15 @@ Suggestions are completely welcomed!
|
|||
NOTE: Youtube advertisements are pretty difficult to block trough DNS, as they mainly use a couple of domains for delivering advertisements, but they may also use those same domains for delivering other types of contents that you might not want to block.
|
||||
|
||||
## Regex filters
|
||||
>^[1234]\.bp\.blogspot\.com
|
||||
|
||||
>((.*)\.)?abc\.(.*)
|
||||
|
||||
>((.*)\.)?ampproject\.(.*)
|
||||
|
||||
>((.*)\.)?android\.(.*)
|
||||
|
||||
>((.*)\.)?chrome\.(.*)
|
||||
|
||||
>((.*)\.)?chromeexperiments\.(.*)
|
||||
|
||||
>((.*)\.)?chromium\.(.*)
|
||||
|
||||
>((.*)\.)?doubleclick\.(.*)
|
||||
|
||||
>((.*)\.)?firebaseio\.(.*)
|
||||
|
||||
>((.*)\.)?ggpht\.(.*)
|
||||
|
||||
>((.*)\.)?gmail\.(.*)
|
||||
|
||||
>((.*)\.)?google(\.(.*))?
|
||||
|
||||
>((.*)\.)?googleadservices\.(.*)
|
||||
|
||||
>((.*)\.)?googleapis\.(.*)
|
||||
|
||||
>((.*)\.)?googlesyndication\.(.*)
|
||||
|
||||
>((.*)\.)?googletagmanager\.(.*)
|
||||
|
||||
>((.*)\.)?googletagservices\.(.*)
|
||||
|
||||
>((.*)\.)?googleusercontent\.(.*)
|
||||
|
||||
>((.*)\.)?google-analytics\.(.*)
|
||||
|
||||
>((.*)\.)?gstatic\.(.*)
|
||||
|
||||
>((.*)\.)?gv(t[12])?\.(.*)
|
||||
|
||||
>((.*)\.)?waze\.(.*)
|
||||
|
||||
>((.*)\.)?withgoogle\.(.*)
|
||||
|
||||
>((.*)\.)?youtube\.(.*)
|
||||
|
||||
>((.*)\.)?ytimg\.(.*)
|
||||
|
||||
>.?1e100.
|
||||
|
||||
>.?googlebot.
|
||||
|
||||
>.?gmodules.
|
||||
>(.*\.|^)((think)?with)?google($|((adservices|apis|mail|static|syndication|tagmanager|tagservices|usercontent|zip|-analytics)($|\..+)))
|
||||
>(.*\.|^)g(gpht|mail|static|v(t[12])?)($|\..+)
|
||||
>(.*\.|^)chrom(e(experiments)?|ium)($|\..+)
|
||||
>(.*\.|^)ampproject($|\..+)
|
||||
>(.*\.|^)doubleclick($|\..+)
|
||||
>(.*\.|^)firebaseio($|\..+)
|
||||
>(.*\.|^)googlevideo($|\..+)
|
||||
>(.*\.|^)waze($|\..+)
|
||||
>(.*\.|^)y(outube|timg)($|\..+)
|
||||
|
||||
You can also easily use the modified [pihole regex installer script](https://github.com/mmotti/pihole-regex) by [@mmoti](https://github.com/mmotti) by executing this terminal command from your raspberry Pi Pi-hole server.
|
||||
```
|
||||
|
|
|
@ -1,11 +1,9 @@
|
|||
(.*\.|^)((think)?with)?google($|((adservices|apis|mail|static|syndication|tagmanager|tagservices|usercontent|zip|-analytics)($|\..+)))
|
||||
(.*\.|^)g(gpht|mail|static|v(t[12])?)($|\..+)
|
||||
(.*\.|^)chrom(e(experiments)?|ium)($|\..+)
|
||||
(.*\.|^)abc($|\..+)
|
||||
(.*\.|^)ampproject($|\..+)
|
||||
(.*\.|^)android($|\..+)
|
||||
(.*\.|^)doubleclick($|\..+)
|
||||
(.*\.|^)firebaseio($|\..+)
|
||||
(.*\.|^)googlevideo($|\..+)
|
||||
(.*\.|^)waze($|\..+)
|
||||
(.*\.|^)y(outube|timg)($|\..+)
|
||||
(.*\.|^)y(outube|timg)($|\..+)
|
Loading…
Reference in a new issue