├── .github
├── dependabot.yml
└── workflows
│ └── build.yml
├── LICENSE
├── README.md
├── blacklist.txt
├── build_blacklist.sh
└── whitelist.txt
/.github/dependabot.yml:
--------------------------------------------------------------------------------
1 | version: 2
2 | updates:
3 | # Maintain dependencies for GitHub Actions
4 | - package-ecosystem: "github-actions"
5 | directory: "/"
6 | schedule:
7 | interval: "daily"
8 | target-branch: "main"
9 |
--------------------------------------------------------------------------------
/.github/workflows/build.yml:
--------------------------------------------------------------------------------
1 | name: ADH Lists - Daily Task
2 |
3 | on:
4 | schedule:
5 | - cron: '0 0 * * *'
6 | workflow_dispatch:
7 |
8 | jobs:
9 | check-and-trigger:
10 | runs-on: ubuntu-latest
11 | steps:
12 | - name: Checkout repo
13 | uses: actions/checkout@v4
14 | with:
15 | repository: 'dontobi/AdGuardHome-Lists'
16 | token: ${{ secrets.ACTIONS_PAT }}
17 |
18 | - name: Run Shell Script
19 | id: script
20 | run: |
21 | mkdir output
22 | cp whitelist.txt ./output
23 | chmod +x ./build_blacklist.sh
24 | sh ./build_blacklist.sh
25 | cp blacklist.txt ./output
26 | shell: bash
27 |
28 | - name: Check GitHub Pages status
29 | uses: crazy-max/ghaction-github-status@v4.0.0
30 | with:
31 | pages_threshold: major_outage
32 |
33 | - name: Deploy to GitHub Pages
34 | if: success()
35 | uses: crazy-max/ghaction-github-pages@v4.0.0
36 | with:
37 | target_branch: lists
38 | build_dir: output
39 | env:
40 | GITHUB_TOKEN: ${{ secrets.ACTIONS_PAT }}
41 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2022-2024 [Tobias 'dontobi' Schug]
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | [](https://github.com/dontobi/AdGuardHome-Lists)
2 | [](https://github.com/dontobi/AdGuardHome-Lists/issues)
3 | [](https://github.com/dontobi/AdGuardHome-Lists/blob/main/LICENSE.md)
4 |
5 | ## Repository archived
6 | I have decided to no longer maintain this repository. If you would like to find out which blocklists I recommend, please have a look at myHome.zone.
7 |
8 | ## AdGuard Home Lists
9 | My personal Lists for AdGuard Home. Free and open source, powerful network-wide ads & trackers blocking DNS server.
10 |
11 | ## Usage
12 | Add the following links to your blacklists or whitelists.
13 | Blacklist | Whitelist
14 |
15 | ## Credits
16 | My blacklist is composed of several blacklists. So thanks to hagezi for his work.
17 |
18 | ## License
19 | MIT License
20 |
21 | Copyright (c) 2022-2024 [Tobias 'dontobi' Schug]
22 |
23 | Permission is hereby granted, free of charge, to any person obtaining a copy
24 | of this software and associated documentation files (the "Software"), to deal
25 | in the Software without restriction, including without limitation the rights
26 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
27 | copies of the Software, and to permit persons to whom the Software is
28 | furnished to do so, subject to the following conditions:
29 |
30 | The above copyright notice and this permission notice shall be included in all
31 | copies or substantial portions of the Software.
32 |
33 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
34 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
35 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
36 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
37 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
38 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
39 | SOFTWARE.
40 |
--------------------------------------------------------------------------------
/blacklist.txt:
--------------------------------------------------------------------------------
1 | ! Blacklist - Domains
2 |
3 | # Adcolony
4 | ||ads30.adcolony.com^
5 | ||adc3-launch.adcolony.com^
6 | ||events3alt.adcolony.com^
7 | ||wd.adcolony.com^
8 |
9 | # Amazon
10 | ||aan.amazon.com^
11 | ||aax.amazon-adsystem.com^
12 | ||adtago.s3.amazonaws.com^
13 | ||advertising-api-eu.amazon.com^
14 | ||advice-ads.s3.amazonaws.com^
15 | ||amazon-adsystem.com^
16 | ||analytics.s3.amazonaws.com^
17 | ||analyticsengine.s3.amazonaws.com^
18 | ||assoc-amazon.com^
19 | ||c.amazon-adsystem.com^
20 | ||mads.amazon-adsystem.com^
21 |
22 | # Apple
23 | ||advertising.apple.com^
24 | ||api-adservices.apple.com^
25 | ||books-analytics-events.apple.com^
26 | ||books-analytics-events.news.apple-dns.net^
27 | ||dzc-metrics.mzstatic.com^
28 | ||iadsdk.apple.com^
29 | ||metrics.apple.com^
30 | ||metrics.icloud.com^
31 | ||metrics.mzstatic.com^
32 | ||notes-analytics-events.apple.com^
33 | ||securemetrics.apple.com^
34 | ||stocks-analytics-events.apple.com^
35 | ||stocks-analytics-events.news.apple-dns.net^
36 | ||supportmetrics.apple.com^
37 | ||tr.iadsdk.apple.com^
38 | ||trackingshipment.apple.com^
39 | ||weather-analytics-events.apple.com^
40 |
41 | # Bugsnag
42 | ||api.bugsnag.com^
43 | ||app.bugsnag.com^
44 | ||notify.bugsnag.com^
45 | ||sessions.bugsnag.com^
46 |
47 | # Doubleclick.net
48 | ||ad.doubleclick.net^
49 | ||doubleclick.net^
50 | ||m.doubleclick.net^
51 | ||mediavisor.doubleclick.net^
52 | ||static.doubleclick.net^
53 | ||stats.g.doubleclick.net^
54 |
55 | # Facebook
56 | ||ads.facebook.com^
57 | ||adtools.facebook.com^
58 | ||an.facebook.com^
59 | ||analytics.facebook.com^
60 | ||pixel.facebook.com^
61 |
62 | # FastClick
63 | ||cdn.fastclick.net^
64 | ||media.fastclick.net^
65 |
66 | # FreshMarketer
67 | ||claritybt.freshmarketer.com^
68 | ||freshmarketer.com^
69 | ||fwtracks.freshmarketer.com^
70 |
71 | # Google
72 | ||ads.google.com^
73 | ||adservice.google.com^
74 | ||afs.googlesyndication.com^
75 | ||analytics.google.com^
76 | ||app-measurement.com^
77 | ||click.googleanalytics.com^
78 | ||google-analytics.com^
79 | ||pagead2.googleadservices.com^
80 | ||pagead2.googlesyndication.com^
81 | ||ssl.google-analytics.com^
82 |
83 | # Hotjar
84 | ||adm.hotjar.com^
85 | ||careers.hotjar.com^
86 | ||events.hotjar.io^
87 | ||hotjar.com^
88 | ||identify.hotjar.com^
89 | ||insights.hotjar.com^
90 | ||script.hotjar.com^
91 | ||static.hotjar.com^
92 | ||surveys.hotjar.com^
93 |
94 | # Huawei
95 | ||grs.hicloud.com^
96 | ||logbak.hicloud.com^
97 | ||logservice.hicloud.com^
98 | ||logservice1.hicloud.com^
99 | ||metrics-dra.dt.hicloud.com^
100 | ||metrics.data.hicloud.com^
101 | ||metrics1.data.hicloud.com^
102 | ||metrics2.data.hicloud.com^
103 | ||metrics3.data.hicloud.com^
104 | ||metrics4.data.hicloud.com^
105 | ||metrics5.data.hicloud.com^
106 |
107 | # LinkedIn
108 | ||ads.linkedin.com^
109 | ||analytics.pointdrive.linkedin.com^
110 |
111 | # Luckyorange
112 | ||api.luckyorange.com^
113 | ||cdn.luckyorange.com^
114 | ||cs.luckyorange.net^
115 | ||luckyorange.com^
116 | ||realtime.luckyorange.com^
117 | ||settings.luckyorange.net^
118 | ||upload.luckyorange.net^
119 | ||w1.luckyorange.com^
120 |
121 | # Media.net
122 | ||adservetx.media.net^
123 | ||media.net^
124 | ||static.media.net^
125 |
126 | # MouseFlow
127 | ||a.mouseflow.com^
128 | ||api.mouseflow.com^
129 | ||cdn-test.mouseflow.com^
130 | ||mouseflow.com^
131 | ||tools.mouseflow.com^
132 |
133 | # OnePlus
134 | ||analytics.oneplus.cn^
135 | ||click.oneplus.cn^
136 | ||click.oneplus.com^
137 | ||open.oneplus.net^
138 |
139 | # OPPO
140 | ||adsfs.oppomobile.com^
141 | ||adx.ads.oppomobile.com^
142 | ||bdapi.ads.oppomobile.com^
143 | ||ck.ads.oppomobile.com^
144 | ||data.ads.oppomobile.com^
145 | ||g1.ads.oppomobile.com^
146 |
147 | # Pinterest
148 | ||ads.pinterest.com^
149 | ||analytics.pinterest.com^
150 | ||log.pinterest.com^
151 | ||trk.pinterest.com^
152 | ||widgets.pinterest.com^
153 |
154 | # Realme
155 | ||ata-ads.realmemobile.com^
156 | ||bdapi-ads.realmemobile.com^
157 | ||bdapi-in-ads.realmemobile.com^
158 | ||iot-eu-logser.realme.com^
159 | ||iot-logser.realme.com^
160 |
161 | # Reddit
162 | ||ads.reddit.com^
163 | ||events.reddit.com^
164 | ||events.redditmedia.com^
165 | ||rereddit.com^
166 | ||stats.redditmedia.com^
167 |
168 | # Samsung
169 | ||ad.samsungadhub.com^
170 | ||ad.samsungads.com^
171 | ||analytics-api.samsunghealthcn.com^
172 | ||analytics.samsungknox.com^
173 | ||bigdata.ssp.samsung.com^
174 | ||config.samsungads.com^
175 | ||insights.samsung.com^
176 | ||nmetrics.samsung.com^
177 | ||samsung-com.112.2o7.net^
178 | ||samsungadhub.com^
179 | ||samsungads.com^
180 | ||smetrics.samsung.com^
181 |
182 | # Sentry
183 | ||app.getsentry.com^
184 | ||browser.sentry-cdn.com^
185 |
186 | # TikTok
187 | ||ads-api.tiktok.com^
188 | ||ads-sg.tiktok.com^
189 | ||ads.tiktok.com^
190 | ||analytics-sg.tiktok.com^
191 | ||analytics.tiktok.com^
192 | ||analytics.tiktok.comet^
193 | ||business-api.tiktok.com^
194 | ||log.byteoversea.com^
195 |
196 | # Twitter
197 | ||ads-api.twitter.com^
198 | ||ads-twitter.com^
199 | ||analytics.twitter.com^
200 | ||static.ads-twitter.com^
201 |
202 | # Unity
203 | ||adserver.unityads.unity3d.com^
204 | ||auction.unityads.unity3d.com^
205 | ||config.unityads.unity3d.com^
206 | ||webview.unityads.unity3d.com^
207 |
208 | # Wordpress
209 | ||stats.wp.com^
210 |
211 | # Xiaomi
212 | ||ad.xiaomi.com^
213 | ||api.ad.xiaomi.com^
214 | ||app.chat.xiaomi.net^
215 | ||data.mistat.india.xiaomi.com^
216 | ||data.mistat.intl.xiaomi.com^
217 | ||data.mistat.rus.xiaomi.com^
218 | ||data.mistat.xiaomi.com^
219 | ||globalapi.ad.xiaomi.com^
220 | ||sa.api.intl.miui.com^
221 | ||sdkconfig.ad.intl.xiaomi.com^
222 | ||sdkconfig.ad.xiaomi.com^
223 | ||stat.xiaomi.com^
224 | ||tracking.india.miui.com^
225 | ||tracking.intl.miui.com^
226 | ||tracking.miui.com^
227 | ||tracking.rus.miui.com^
228 |
229 | # Yahoo
230 | ||ads.yahoo.com^
231 | ||ads.yap.yahoo.com^
232 | ||adserver.yahoo.com^
233 | ||adspecs.yahoo.com^
234 | ||adtech.yahooinc.com^
235 | ||advertising.yahoo.com^
236 | ||analytics.query.yahoo.com^
237 | ||analytics.yahoo.com^
238 | ||bats.video.yahoo.com^
239 | ||beap.gemini.yahoo.com^
240 | ||br.adspecs.yahoo.com^
241 | ||cms.analytics.yahoo.com^
242 | ||comet.yahoo.com^
243 | ||de.advertising.yahoo.com^
244 | ||es.advertising.yahoo.com^
245 | ||fr.advertising.yahoo.com^
246 | ||ganon.yahoo.com^
247 | ||gemini.yahoo.com^
248 | ||geo.query.yahoo.com^
249 | ||geo.yahoo.com^
250 | ||global.adserver.yahoo.com^
251 | ||in.advertising.yahoo.com^
252 | ||it.advertising.yahoo.com^
253 | ||latam.adspecs.yahoo.com^
254 | ||log.fc.yahoo.com^
255 | ||m.yap.yahoo.com^
256 | ||marketingsolutions.yahoo.com^
257 | ||onepush.query.yahoo.com^
258 | ||opus.analytics.yahoo.com^
259 | ||partnerads.ysm.yahoo.com^
260 | ||pclick.yahoo.com^
261 | ||sea.advertising.yahoo.com^
262 | ||sp.analytics.yahoo.com^
263 | ||udc.yahoo.com^
264 | ||udcm.yahoo.com^
265 | ||uk.advertising.yahoo.com^
266 | ||us.adserver.yahoo.com^
267 | ||ush.adspecs.yahoo.com^
268 | ||visit.webhosting.yahoo.com^
269 |
270 | # Yandex
271 | ||19534.redirect.appmetrica.yandex.com^
272 | ||3.redirect.appmetrica.yandex.com^
273 | ||30488.redirect.appmetrica.yandex.com^
274 | ||4.redirect.appmetrica.yandex.com^
275 | ||adfox.yandex.ru^
276 | ||adfstat.yandex.ru^
277 | ||adsdk.yandex.ru^
278 | ||advertising.yandex.ru^
279 | ||an.yandex.ru^
280 | ||analytics.mobile.yandex.net^
281 | ||appmetrica.yandex.com^
282 | ||appmetrica.yandex.ru^
283 | ||awaps.yandex.ru^
284 | ||awsync.yandex.ru^
285 | ||banners-slb.mobile.yandex.net^
286 | ||banners.mobile.yandex.net^
287 | ||bs-meta.yandex.ru^
288 | ||bs.yandex.ru^
289 | ||clck.yandex.ru^
290 | ||click.sender.yandex.ru^
291 | ||extmaps-api.yandex.net^
292 | ||grade.market.yandex.ru^
293 | ||informer.yandex.ru^
294 | ||kiks.yandex.ru^
295 | ||matchid.adfox.yandex.ru^
296 | ||mc.yandex.ru^
297 | ||metrika.yandex.ru^
298 | ||mobile.yandexadexchange.net^
299 | ||offerwall.yandex.net^
300 | ||redirect.appmetrica.yandex.com^
301 | ||redirect.appmetrica.yandex.ru^
302 | ||report.appmetrica.yandex.net^
303 | ||share.yandex.ru^
304 | ||startup.mobile.yandex.net^
305 | ||yandexadexchange.net^
306 |
307 | # YouTube
308 | ||ads.youtube.com^
309 | ||youtube.cleverads.vn^
--------------------------------------------------------------------------------
/build_blacklist.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | # Download blacklists
4 | wget -q -O raw_dontobi.tmp https://raw.githubusercontent.com/dontobi/AdGuardHome-Lists/main/blacklist.txt
5 | wget -q -O raw_hagezi_1.tmp https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/pro.txt
6 | wget -q -O raw_hagezi_2.tmp https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/tif.txt
7 | wget -q -O raw_hagezi_3.tmp https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/spam-tlds.txt
8 |
9 | # Prepair blacklists
10 | sed -e "/^||/!d" raw_dontobi.tmp > bl_dontobi.tmp
11 | sed -e "/^||/!d" raw_hagezi_1.tmp > bl_hagezi_1.tmp
12 | sed -e "/^||/!d" raw_hagezi_2.tmp > bl_hagezi_2.tmp
13 | sed -e "/^||/!d" raw_hagezi_3.tmp > bl_hagezi_3.tmp
14 |
15 | # combine lists
16 | cat bl_*.tmp > bl_all.tmp
17 | sort bl_all.tmp | uniq > bl_build.tmp
18 |
19 | # Header
20 | echo "! Blacklist for AdGuard Home powered by Tobias 'dontobi' S." >> bl_header.tmp
21 | echo "!" >> bl_header.tmp
22 | echo "! GitHub: https://github.com/dontobi" >> bl_header.tmp
23 | echo "! Repository: https://github.com/dontobi/AdGuardHome-Lists" >> bl_header.tmp
24 | echo "! Sources: hagezi and my own blacklist" >> bl_header.tmp
25 | echo "" >> header.tmp
26 |
27 | # Final steps
28 | cat bl_header.tmp bl_build.tmp > blacklist.txt
29 | rm *.tmp
30 |
--------------------------------------------------------------------------------
/whitelist.txt:
--------------------------------------------------------------------------------
1 | ! Whitelist - Domains
2 |
3 | # Adobe
4 | @@|activate.adobe.com^$important
5 | @@|assets.adobedtm.com^$important
6 | @@|entitlement.auth.adobe.com^$important
7 | @@|fpdownload.adobe.com^$important
8 | @@|lm.licenses.adobe.com^$important
9 |
10 | # Akamai Technologies
11 | @@|akadns.net^$important
12 | @@|akamai.net^$important
13 | @@|akamaihd.net^$important
14 | @@|akamaitechnologies.com^$important
15 | @@|akamaized.net^$important
16 | @@|audio-ak-spotify-com.akamaized.net^$important
17 | @@|audio-akp-bbr-spotify-com.akamaized.net^$important
18 | @@|audio4-ak-spotify-com.akamaized.net^$important
19 | @@|dssott.com.akamaized.net^$important
20 | @@|epicgames-download1.akamaized.net^$important
21 | @@|fbcdn-creative-a.akamaihd.net^$important
22 | @@|gdmf.apple.com.akadns.net^$important
23 | @@|heads-ak-spotify-com.akamaized.net^$important
24 | @@|iadsdk.apple.com.akadns.net^$important
25 | @@|init-p01md-lb.push-apple.com.akadns.net^$important
26 | @@|iphone-ld.origin-apple.com.akadns.net^$important
27 | @@|lastfm-img2.akamaized.net^$important
28 | @@|np-edge-cdn.itunes-apple.com.akadns.net^$important
29 | @@|spotify-com.akamaized.net^$important
30 | @@|ubistatic3-a.akamaihd.net^$important
31 | @@|uts-api-cdn.itunes-apple.com.akadns.net^$important
32 | @@|widget-cdn.rpxnow.com^$important
33 |
34 | # Aliexpress
35 | @@|ae01.alicdn.com^$important
36 | @@|campaign.aliexpress.com^$important
37 | @@|login.aliexpress.com^$important
38 | @@|sale.aliexpress.com^$important
39 |
40 | # Amazfit / Huami / Zepp
41 | @@|account.huami.com^$important
42 | @@|account-de.huami.com^$important
43 | @@|account-de2.huami.com^$important
44 | @@|api-mifit.huami.com^$important
45 | @@|api-mifit-de.huami.com^$important
46 | @@|api-mifit-de2.huami.com^$important
47 | @@|api-user.huami.com^$important
48 | @@|api.amazfit.com^$important
49 | @@|auth-de.huami.com^$important
50 | @@|auth-de2.huami.com^$important
51 | @@|de.api.io.mi.com^$important
52 | @@|us.statusapi.micloud.xiaomi.net^$important
53 |
54 | # Amazon
55 | @@|a4k.amazon.com^$important
56 | @@|aiv-cdn.net.c.footprint.net^$important
57 | @@|aiv-cdn.net^$important
58 | @@|aiv-delivery.net^$important
59 | @@|amazonaws.com^$important
60 | @@|amazonvideo.com^$important
61 | @@|amzn.com^$important
62 | @@|amzn.to^$important
63 | @@|api.amazonalexa.com^$important
64 | @@|arcus-uswest.amazon.com^$important
65 | @@|atv-ext.amazon.com^$important
66 | @@|atv-ps.amazon.com^$important
67 | @@|audible.ca^$important
68 | @@|audible.com^$important
69 | @@|audible.custhelp.com^$important
70 | @@|cloudfront.net^$important
71 | @@|d25xi40x97liuc.cloudfront.net^$important
72 | @@|d2c8v52ll5s99u.cloudfront.net^$important
73 | @@|d2gatte9o95jao.cloudfront.net^$important
74 | @@|dcape-na.amazon.com^$important
75 | @@|device-messaging-na.amazon.com^$important
76 | @@|device-metrics-us-2.amazon.com^$important
77 | @@|device-metrics-us.amazon.com^$important
78 | @@|dmqdd6hw24ucf.cloudfront.net^$important
79 | @@|dogvgb9ujhybx.cloudfront.net^$important
80 | @@|eu.api.amazonvideo.com^$important
81 | @@|fls-eu.amazon.com^$important
82 | @@|fls-na.amazon.com^$important
83 | @@|images-amazon.com^$important
84 | @@|kindle-time.amazon.com^$important
85 | @@|media-amazon.com^$important
86 | @@|primevideo.com^$important
87 | @@|s3.amazonaws.com^$important
88 |
89 | # Apple
90 | @@|apple-dns.net^$important
91 | @@|apple.com^$important
92 | @@|appleid.apple.com^$important
93 | @@|ax.phobos.apple.com.edgesuite.net^$important
94 | @@|cdn-apple.com^$important
95 | @@|gateway.fe.apple-dns.net^$important
96 | @@|icloud.com^$important
97 | @@|itunes.apple.com^$important
98 | @@|itunes.com^$important
99 | @@|music.apple.com^$important
100 | @@|mzstatic.com^$important
101 | @@|ocsp.apple.com^$important
102 | @@|play.itunes.apple.com.edgesuite.net^$important
103 |
104 | # Avantgate
105 | @@|secure.avangate.com^$important
106 |
107 | # AVM
108 | @@|myfritz.net^$important
109 |
110 | # Bauhaus
111 | @@|media.bahag.cloud^$important
112 |
113 | # Bitwarden
114 | @@|api.bitwarden.com^$important
115 | @@|bitwarden.com^$important
116 | @@|help.bitwarden.com^$important
117 | @@|icons.bitwarden.net^$important
118 | @@|identity.bitwarden.com^$important
119 | @@|notifications.bitwarden.com^$important
120 | @@|vault.bitwarden.com^$important
121 |
122 | # Brightcove
123 | @@|brightcove.net^$important
124 | @@|edge.api.brightcove.com^$important
125 | @@|secure.brightcove.com^$important
126 |
127 | # CBS
128 | @@|om.cbsi.com^$important
129 |
130 | # China-Gadgets
131 | @@|china-gadgets.de^$important
132 |
133 | # Cloudflare
134 | @@|cdn.cloudflare.net^$important
135 | @@|cdnjs.cloudflare.com^$important
136 |
137 | # cloudinary
138 | @@|res.cloudinary.com^$important
139 |
140 | # Coinbase
141 | @@|coinbase.com^$important
142 |
143 | # Congstar
144 | @@|app.congstar.de^$important
145 |
146 | # Corona Warn App
147 | @@|svc90.main.px.t-online.de^$important
148 |
149 | # Dataplicity
150 | @@|dataplicity.com^$important
151 |
152 | # DAZN
153 | @@|authentication-prod-eu-central-1.ar.indazn.com^$important
154 | @@|authentication-prod.ar.indazn.com^$important
155 | @@|dazn.com^$important
156 | @@|epg.discovery.indazn.com^$important
157 | @@|experiments-api.acc.indazn.com^$important
158 | @@|favouritesv2.discovery.indazn.com^$important
159 | @@|follow-shortcuts.discovery.indazn.com^$important
160 | @@|image.discovery.indazn.com^$important
161 | @@|onboarding.indazn.com^$important
162 | @@|p-rail.discovery.indazn.com^$important
163 | @@|pkg.fe.indazn.com^$important
164 | @@|pubby.indazn.com^$important
165 | @@|rail-router.discovery.indazn.com^$important
166 | @@|rails.discovery.indazn.com^$important
167 | @@|resource-strings.acc.indazn.com^$important
168 | @@|segmentation-service-eu-central-1.discovery.indazn.com^$important
169 | @@|segmentation-service.discovery.indazn.com^$important
170 | @@|spolo-public-api-global.acc.indazn.com^$important
171 | @@|static.dazndn.com^$important
172 | @@|tags.dazn.com^$important
173 | @@|user-profile.ar.indazn.com^$important
174 | @@|youth-protect.discovery.indazn.com^$important
175 |
176 | # Debian
177 | @@|debian.org^$important
178 |
179 | # Deezer
180 | @@|deezer.com^$important
181 |
182 | # Deskline
183 | @@|resc.deskline.net^$important
184 |
185 | # Discord
186 | @@|discord.com^$important
187 | @@|discord.gg^$important
188 | @@|discord.media^$important
189 | @@|discordapp.com^$important
190 | @@|discordapp.net^$important
191 | @@|discordstatus.com^$important
192 |
193 | # Disney+
194 | @@|bamgrid.com^$important
195 | @@|cdn.registerdisney.go.com^$important
196 | @@|cws-iad1.conviva.com^$important
197 | @@|cws-sjc2.conviva.com^$important
198 | @@|cws.conviva.com^$important
199 | @@|disney-plus.net^$important
200 | @@|disney-portal.my.onetrust.com^$important
201 | @@|disney.demdex.net^$important
202 | @@|disneyplus.bn5x.net^$important
203 | @@|disneyplus.com.ssl.sc.omtrdc.net^$important
204 | @@|disneyplus.com^$important
205 | @@|dssott.com^$important
206 | @@|livepassdl.conviva.com^$important
207 | @@|pings.conviva.com^$important
208 | @@|vod-l3c-eu-north-2.media.dssott.com.c.footprint.net^$important
209 | @@|zee.cws.conviva.com^$important
210 |
211 | # DPD
212 | @@|tracking.dpd.de^$important
213 |
214 | # Dresden Elektronik / Phoscon
215 | @@|dresden-elektronik.de^$important
216 | @@|phoscon.de^$important
217 |
218 | # Drift
219 | @@|drift.com^$important
220 | @@|driftt.com^$important
221 |
222 | #Dropbox
223 | @@|dl.dropbox.com^$important
224 | @@|dl.dropboxusercontent.com^$important
225 | @@|dropbox-dns.com^$important
226 | @@|dropbox.com^$important
227 | @@|dropboxapi.com^$important
228 | @@|dropboxstatic.com^$important
229 | @@|getdropbox.com^$important
230 | @@|ns1.dropbox.com^$important
231 | @@|ns2.dropbox.com^$important
232 |
233 | # E.ON
234 | @@|eon.de^$important
235 |
236 | # Embedly
237 | @@|cdn.embedly.com^$important
238 |
239 | # Epic Games
240 | @@|epicgames.com^$important
241 | @@|epicgames.net^$important
242 | @@|unrealengine.com^$important
243 |
244 | # Facebook
245 | @@|api.facebook.com^$important
246 | @@|creative.ak.fbcdn.net^$important
247 | @@|edge-mqtt.facebook.com^$important
248 | @@|external-lhr0-1.xx.fbcdn.net^$important
249 | @@|external-lhr1-1.xx.fbcdn.net^$important
250 | @@|external-lhr10-1.xx.fbcdn.net^$important
251 | @@|external-lhr2-1.xx.fbcdn.net^$important
252 | @@|external-lhr3-1.xx.fbcdn.net^$important
253 | @@|external-lhr4-1.xx.fbcdn.net^$important
254 | @@|external-lhr5-1.xx.fbcdn.net^$important
255 | @@|external-lhr6-1.xx.fbcdn.net^$important
256 | @@|external-lhr7-1.xx.fbcdn.net^$important
257 | @@|external-lhr8-1.xx.fbcdn.net^$important
258 | @@|external-lhr9-1.xx.fbcdn.net^$important
259 | @@|graph.facebook.com^$important
260 | @@|mqtt.c10r.facebook.com^$important
261 | @@|portal.fb.com^$important
262 | @@|scontent-lhr3-1.xx.fbcdn.net^$important
263 | @@|star.c10r.facebook.com^$important
264 |
265 | # Gardena
266 | @@|gardena.com^$important
267 |
268 | # Giphy
269 | @@|giphy.com^$important
270 |
271 | # Github
272 | @@|alive.github.com^$important
273 | @@|api.github.com^$important
274 | @@|github.com^$important
275 | @@|github.io^$important
276 | @@|raw.githubusercontent.com^$important
277 |
278 | # Gleam.io
279 | @@|gleam.io^$important
280 |
281 | # Google
282 | @@|0.client-channel.google.com^$important
283 | @@|2.android.pool.ntp.org^$important
284 | @@|accounts.google.com^$important
285 | @@|analytics.google.com^$important
286 | @@|android.clients.google.com^$important
287 | @@|appsbackup-pa.clients6.google.com^$important
288 | @@|appsbackup-pa.googleapis.com^$important
289 | @@|appspot-preview.l.google.com^$important
290 | @@|clients1.google.com^$important
291 | @@|clients2.google.com^$important
292 | @@|clients3.google.com^$important
293 | @@|clients4.google.com^$important
294 | @@|clients5.google.com^$important
295 | @@|clients6.google.com^$important
296 | @@|clientservices.googleapis.com^$important
297 | @@|cloudconfig.googleapis.com^$important
298 | @@|cse.google.com^$important
299 | @@|fonts.googleapis.com^$important
300 | @@|fonts.gstatic.com^$important
301 | @@|fundingchoicesmessages.google.com^$important
302 | @@|geo3.ggpht.com^$important
303 | @@|geomobileservices-pa.googleapis.com^$important
304 | @@|googleapis.com^$important
305 | @@|gstatic.com^$important
306 | @@|id.google.com^$important
307 | @@|instantmessaging-pa.googleapis.com^$important
308 | @@|manifest.googlevideo.com^$important
309 | @@|myaccount.google.com^$important
310 | @@|photos.googleapis.com^$important
311 | @@|play.google.com^$important
312 | @@|play.googleapis.com^$important
313 | @@|redirector.googlevideo.com^$important
314 | @@|survey.g.doubleclick.net^$important
315 | @@|userlocation.googleapis.com^$important
316 | @@|video-stats.l.google.com^$important
317 | @@|yt3.ggpht.com^$important
318 |
319 | # Gravatar
320 | @@|gravatar.com^$important
321 |
322 | # Home Assistant
323 | @@|checkonline.home-assistant.io^$important
324 |
325 | # Home Connect (Bosch / Siemens)
326 | @@|bshg.sc.omtrdc.net^$important
327 | @@|device-api.asnapieu.com^$important
328 | @@|remote-data.asnapieu.com^$important
329 |
330 | # Hosteurope
331 | @@|hosteurope.de^$important
332 |
333 | # Huawei Health
334 | @@|api-dre.theme.dbankcloud.com^$important
335 | @@|connect-drcn.dbankcloud.cn^$important
336 | @@|geo-dre.platform.dbankcloud.cn^$important
337 | @@|healthcommon-dre.things.dbankcloud.cn^$important
338 | @@|healthtrade-dre.things.dbankcloud.cn^$important
339 | @@|dnkeeper.platform.dbankcloud.cn^$important
340 | @@|store-dre.hispace.dbankcloud.com^$important
341 |
342 | # Hulu
343 | @@|api.rlje.net^$important
344 |
345 | # Idealo
346 | @@|idealo.de^$important
347 |
348 | # iHeartRadio
349 | @@|937theriver.com^$important
350 | @@|iheart.com^$important
351 | @@|iheart.mx^$important
352 | @@|iheartmedia.com^$important
353 | @@|iheartradio.ca^$important
354 | @@|iheartradio.co.nz^$important
355 | @@|iheartradio.com^$important
356 | @@|ihrdev.com^$important
357 | @@|ihrhls.com^$important
358 | @@|ihrint.com^$important
359 | @@|ihrstage.com^$important
360 |
361 | # Imigx
362 | @@|imgix.net^$important
363 |
364 | # Instagram
365 | @@|cdninstagram.com^$important
366 | @@|instagram.c10r.facebook.com^$important
367 | @@|instagram.com^$important
368 |
369 | # Intercom
370 | @@|intercom.io^$important
371 |
372 | # ipify
373 | @@|api.ipify.org^$important
374 |
375 | # jQuery
376 | @@|jquery.com^$important
377 |
378 | # jsDelivr
379 | @@|jsdelivr.net^$important
380 |
381 | # KODi
382 | @@|kodi.tv^$important
383 | @@|themoviedb.com^$important
384 | @@|thetvdb.com^$important
385 |
386 | # Last.fm
387 | @@|last.fm^$important
388 | @@|last.fm.ssl.sc.omtrdc.net^$important
389 | @@|lastfm.cbsi.map.fastly.net^$important
390 | @@|ws.audioscrobbler.com^$important
391 |
392 | # Lastpass
393 | @@|accounts.lastpass.com^$important
394 | @@|auth.lastpass.com^$important
395 | @@|content.product.lastpass.com^$important
396 | @@|data.product.lastpass.com^$important
397 | @@|identity.lastpass.com^$important
398 | @@|lastpass.com^$important
399 | @@|loglogin.lastpass.com^$important
400 | @@|lp-push-server-*.lastpass.com^$important
401 | @@|pollserver.lastpass.com^$important
402 |
403 | # Lets Encrypt
404 | @@|letsencrypt.org^$important
405 |
406 | # LinkedIn
407 | @@|media-exp1.licdn.com^$important
408 | @@|static-exp1.licdn.com^$important
409 |
410 | # Link Shortener
411 | @@|bit.ly^$important
412 | @@|ow.ly^$important
413 | @@|tinyurl.com^$important
414 |
415 | # Luftfahrtbundesamt
416 | @@|exam.lba-openuav.de^$important
417 |
418 | # Marketwatch
419 | @@|s.marketwatch.com^$important
420 |
421 | # Microsoft
422 | @@|1drv.com^$important
423 | @@|1drv.ms^$important
424 | @@|api.asm.skype.com^$important
425 | @@|api.teams.skype.com^$important
426 | @@|api3.cc.skype.com^$important
427 | @@|apps.skype.com^$important
428 | @@|aspnetcdn.com^$important
429 | @@|c.s-microsoft.com^$important
430 | @@|client-s.gateway.messenger.live.com^$important
431 | @@|clientconfig.passport.net^$important
432 | @@|ctldl.windowsupdate.com^$important
433 | @@|dev.virtualearth.net^$important
434 | @@|displaycatalog.mp.microsoft.com^$important
435 | @@|dl.delivery.mp.microsoft.com^$important
436 | @@|dns.msftncsi.com^$important
437 | @@|docs.live.net^$important
438 | @@|download.visualstudio.microsoft.com^$important
439 | @@|download.windowsupdate.com^$important
440 | @@|ecn.dev.virtualearth.net^$important
441 | @@|emdl.ws.microsoft.com^$important
442 | @@|g.live.com^$important
443 | @@|geo-prod.do.dsp.mp.microsoft.com^$important
444 | @@|i.s-microsoft.com^$important
445 | @@|ic3.events.data.microsoft.com^$important
446 | @@|img.teams.skype.com^$important
447 | @@|install.appcenter.ms^$important
448 | @@|live.com^$important
449 | @@|login.live.com^$important
450 | @@|login.microsoftonline.com^$important
451 | @@|login.windows.net^$important
452 | @@|logincdn.msauth.net^$important
453 | @@|microsoftonline.com^$important
454 | @@|msftncsi.com^$important
455 | @@|neu1-urlp.secure.skypeassets.com^$important
456 | @@|nexusrules.officeapps.live.com^$important
457 | @@|office.com^$important
458 | @@|office.net^$important
459 | @@|office365.com^$important
460 | @@|officeclient.microsoft.com^$important
461 | @@|onedrive.com^$important
462 | @@|onedrive.live.com^$important
463 | @@|outlook.com^$important
464 | @@|outlook.live.com^$important
465 | @@|outlook.office365.com^$important
466 | @@|p.sfx.ms^$important
467 | @@|pricelist.skype.com^$important
468 | @@|products.office.com^$important
469 | @@|s.gateway.messenger.live.com^$important
470 | @@|self.events.data.microsoft.com^$important
471 | @@|sharepoint.com^$important
472 | @@|skyapi.live.net^$important
473 | @@|static-asm.secure.skypeassets.com^$important
474 | @@|storage.live.com^$important
475 | @@|t0.ssl.ak.dynamic.tiles.virtualearth.net^$important
476 | @@|t0.ssl.ak.tiles.virtualearth.net^$important
477 | @@|teams.events.data.microsoft.com^$important
478 | @@|teams.microsoft.com^$important
479 | @@|ui.skype.com^$important
480 | @@|urlp.asm.skype.com^$important
481 | @@|web.vortex.data.microsoft.com^$important
482 | @@|weu1-api.asm.skype.com^$important
483 | @@|win10.ipv6.microsoft.com^$important
484 |
485 | # Minecraft
486 | @@|minecraft.net^$important
487 | @@|minecraftprod.rtep.msgamestudios.com^$important
488 | @@|mojang.com^$important
489 | @@|minecraftdungeons.net^$important
490 |
491 | # Mozilla
492 | @@|blog.mozilla.org^$important
493 |
494 | # MyDealz
495 | @@|mydealz.de^$important
496 |
497 | # myhome.zone
498 | @@|myhome.zone^$important
499 | @@|*.myhome.zone^$important
500 |
501 | # Napster
502 | @@|napster.com^$important
503 |
504 | # Netflix
505 | @@|api-global.netflix.com^$important
506 | @@|appboot.netflix.com^$important
507 | @@|ichnaea.netflix.com^$important
508 | @@|netflix.com^$important
509 | @@|nflxext.com^$important
510 | @@|nflximg.com^$important
511 | @@|nflximg.net^$important
512 | @@|nflxso.net^$important
513 | @@|nflxvideo.net^$important
514 | @@|nrdp.prod.ftl.netflix.com^$important
515 | @@|secure.netflix.com^$important
516 |
517 | # Nintendo
518 | @@|nintendo.com^$important
519 | @@|nintendo.net^$important
520 |
521 | # nmp.js
522 | @@|registry.npmjs.org^$important
523 |
524 | # No-IP
525 | @@|dynupdate.no-ip.com^$important
526 | @@|no-ip.com^$important
527 |
528 | # NTP-Server
529 | @@|de.pool.ntp.org^$important
530 | @@|en.pool.ntp.org^$important
531 | @@|fr.pool.ntp.org^$important
532 | @@|uk.pool.ntp.org^$important
533 |
534 | # Nvidia
535 | @@|ota-downloads.nvidia.com^$important
536 | @@|gfwsl.geforce.com^$important
537 | @@|events.gfe.nvidia.com^$important
538 |
539 | # Optimizely
540 | @@|cdn.optimizely.com^$important
541 | @@|cdn2.optimizely.com^$important
542 | @@|cdn3.optimizely.com^$important
543 |
544 | # Otto
545 | @@|i.otto.de^$important
546 | @@|pxc.otto.de^$important
547 | @@|tp.otto.de^$important
548 |
549 | # Pandora
550 | @@|p-cdn.com^$important
551 | @@|p-cdn.us^$important
552 | @@|pandora.com^$important
553 | @@|savagebeast.com^$important
554 |
555 | # PayPal
556 | @@|c.paypal.com^$important
557 | @@|epidm.edgesuite.net^$important
558 | @@|epl.paypal-communication.com^$important
559 | @@|images.ctfassets.net^$important
560 | @@|paypal.com^$important
561 | @@|paypalobjects.com^$important
562 | @@|t.paypal.com^$important
563 |
564 | # Placehold.it
565 | @@|placehold.it^$important
566 | @@|placeholdit.imgix.net^$important
567 |
568 | # PlayStation
569 | @@|playstation.com^$important
570 | @@|playstation.net^$important
571 | @@|sonyentertainmentnetwork.com^$important
572 |
573 | # Plex
574 | @@|app.plex.tv^$important
575 | @@|cpms.spop10.ams.plex.bz^$important
576 | @@|cpms35.spop10.ams.plex.bz^$important
577 | @@|downloads.plex.tv^$important
578 | @@|meta-db-worker02.pop.ric.plex.bz^$important
579 | @@|meta.plex.tv^$important
580 | @@|my.plexapp.com^$important
581 | @@|news.provider.plex.tv^$important
582 | @@|nine.plugins.plexapp.com^$important
583 | @@|node.plexapp.com^$important
584 | @@|o1.email.plex.tv^$important
585 | @@|o2.sg0.plex.tv^$important
586 | @@|plex.bz^$important
587 | @@|plex.direct^$important
588 | @@|plex.tv.cdn.cloudflare.net^$important
589 | @@|plex.tv^$important
590 | @@|plexapp.com.cdn.cloudflare.net^$important
591 | @@|plexapp.com^$important
592 | @@|podcasts.provider.plex.tv^$important
593 | @@|proxy.plex.bz^$important
594 | @@|proxy.plex.tv^$important
595 | @@|proxy02.pop.ord.plex.bz^$important
596 | @@|pubsub.plex.bz^$important
597 | @@|pubsub.plex.tv^$important
598 | @@|resources-cdn.plexapp.com^$important
599 | @@|staging.plex.tv^$important
600 | @@|status.plex.tv^$important
601 | @@|tvdb2.plex.tv^$important
602 | @@|tvthemes.plexapp.com^$important
603 | @@|vod.provider.plex.tv^$important
604 | @@|webshows.provider.plex.tv^$important
605 |
606 | # Pinterest
607 | @@|pinterest.com^$important
608 |
609 | # Podcast Hosting
610 | @@|anchor.fm^$important
611 | @@|podcast.nexx.cloud^$important
612 | @@|traffic.megaphone.fm^$important
613 |
614 | # Portainer (Docker)
615 | @@|portainer.io^$important
616 |
617 | # Raspberry Pi
618 | @@|raspberrypi.org^$important
619 |
620 | # Reddit
621 | @@|reddit.com^$important
622 |
623 | # Samsung
624 | @@|cdn.samsungcloudsolution.com^$important
625 | @@|time.samsungcloudsolution.com^$important
626 |
627 | # Saturn
628 | @@|service-my.saturn.de^$important
629 |
630 | # Shoop
631 | @@|shoop.de^$important
632 |
633 | # Shopify
634 | @@|s.shopify.com^$important
635 |
636 | # Sky Ticket (WOW)
637 | @@|agg.oogwayintl.sky.com^$important
638 | @@|d3sawt37qbqwk0.cloudfront.net^$important
639 | @@|de.imageservice.sky.com^$important
640 | @@|dpm.demdex.net^$important
641 | @@|eu.api.atom.sky.com^$important
642 | @@|graphql.ott.sky.com^$important
643 | @@|hlsvod.p.lb.skycdn.de^$important
644 | @@|id.sky.de^$important
645 | @@|mytv.api.nowtv.com^$important
646 | @@|niio-sgwl.skyanywhere.com^$important
647 | @@|ott-sgw.skyanywhere.com^$important
648 | @@|p.sky.com^$important
649 | @@|persona-store.sky.com^$important
650 | @@|s.mzstatic.com^$important
651 | @@|wowtv.de^$important
652 |
653 | # Sonarr
654 | @@|apt.sonarr.tv^$important
655 | @@|download.sonarr.tv^$important
656 | @@|forums.sonarr.tv^$important
657 | @@|services.sonarr.tv^$important
658 | @@|skyhook.sonarr.tv^$important
659 |
660 | # Sonos
661 | @@|msmetrics.ws.sonos.com^$important
662 |
663 | # Soundcloud
664 | @@|feeds.soundcloud.com^$important
665 | @@|sndcdn.com^$important
666 | @@|soundcloud.com^$important
667 |
668 | # Spiegel.de
669 | @@|sourcepoint.mgr.consensu.org^$important
670 | @@|message331-fra.sp-prod.net^$important
671 | @@|spiegel-de.spiegel.de^$important
672 |
673 | # Spotify
674 | @@|ap.spotify.com^$important
675 | @@|apresolve.spotify.com^$important
676 | @@|audio-ake.spotify.com.edgesuite.net^$important
677 | @@|audio4-ak.spotify.com.edgesuite.net^$important
678 | @@|audio4-fa.scdn.co^$important
679 | @@|market.spotify.com^$important
680 | @@|mobile-ap.spotify.com^$important
681 | @@|open.spotify.com^$important
682 | @@|pscdn.co^$important
683 | @@|scdn.co^$important
684 | @@|spclient.wg.spotify.com^$important
685 | @@|spotify.com.edgesuite.net^$important
686 | @@|spotify.com^$important
687 | @@|spotify.demdex.net^$important
688 | @@|spotify.edgekey.net^$important
689 | @@|spotify.map.fastly.net^$important
690 | @@|spotifycdn.net^$important
691 | @@|spotilocal.com^$important
692 | @@|upgrade.scdn.com^$important
693 |
694 | # Steam
695 | @@|steamcommunity.com^$important
696 | @@|steamdeck.com^$important
697 | @@|steampowered.com^$important
698 |
699 | # Tasker
700 | @@|taskernet.com^$important
701 |
702 | # TED
703 | @@|app-api.ted.com^$important
704 | @@|hls.ted.com^$important
705 | @@|tedcdn.com^$important
706 |
707 | # TheMovieDB
708 | @@|themoviedb.com^$important
709 |
710 | # TheTVDB
711 | @@|thetvdb.com^$important
712 |
713 | # Threema
714 | @@|ds-apip.threema.ch^$important
715 | @@|ds-blobp-24.threema.ch^$important
716 | @@|ds.g-86.0.threema.ch^$important
717 | @@|threema.ch^$important
718 |
719 | # Tidal
720 | @@|tidal.com^$important
721 |
722 | # Toniebox
723 | @@|cdn-global.configcat.com^$important
724 |
725 | # Twitch
726 | @@|api.twitch.tv^$important
727 | @@|ext-twitch.tv^$important
728 | @@|jtvnw.net^$important
729 | @@|static-cdn.jtvnw.net^$important
730 | @@|supervisor.ext-twitch.tv^$important
731 | @@|ttvnw.net^$important
732 | @@|twitch.map.fastly.net^$important
733 | @@|twitch.tv^$important
734 | @@|twitchcdn.net^$important
735 | @@|twitchsvc.net^$important
736 |
737 | # Twitter
738 | @@|pbs.twimg.com^$important
739 | @@|t.co^$important
740 | @@|twimg.com^$important
741 | @@|twitter.com^$important
742 | @@|twitter.map.fastly.net^$important
743 | @@|twttr.com^$important
744 |
745 | # Ubisoft Connect
746 | @@|ubi.com^$important
747 | @@|ubisoftconnect.com^$important
748 | @@|uplay.com^$important
749 |
750 | # Vidible
751 | @@|cdn.vidible.tv^$important
752 | @@|delivery.vidible.tv^$important
753 | @@|img.vidible.tv^$important
754 | @@|videos.vidible.tv^$important
755 |
756 | # Vinted
757 | @@|images.vinted.net^$important
758 |
759 | # Vodafone
760 | @@|fc.vodafone.de^$important
761 |
762 | # WhatsApp
763 | @@|chat.cdn.whatsapp.net^$important
764 | @@|g.whatsapp.net^$important
765 | @@|media-muc2-1.cdn.whatsapp.net^$important
766 | @@|media-vie1-1.cdn.whatsapp.net^$important
767 | @@|pps.whatsapp.net^$important
768 | @@|static.whatsapp.net^$important
769 | @@|web.whatsapp.com^$important
770 | @@|whatsapp.com^$important
771 | @@|whatsapp.net^$important
772 |
773 | # Wikipedia
774 | @@|wikipedia.org^$important
775 |
776 | # Wordpress
777 | @@|wordpress.com^$important
778 | @@|wp.com^$important
779 |
780 | # XBOX
781 | @@|achievements.xboxlive.com^$important
782 | @@|activityhub.xboxlive.com^$important
783 | @@|arc.msn.com^$important
784 | @@|attestation.xboxlive.com^$important
785 | @@|avatarv3.xboxlive.com^$important
786 | @@|avty.xboxlive.com^$important
787 | @@|cert.mgt.xboxlive.com^$important
788 | @@|chatfd.xboxlive.com^$important
789 | @@|client.wns.windows.com^$important
790 | @@|clubhub.xboxlive.com^$important
791 | @@|collections.mp.microsoft.com^$important
792 | @@|comments.xboxlive.com^$important
793 | @@|def-vef.xboxlive.com^$important
794 | @@|dlassets-ssl.xboxlive.com^$important
795 | @@|editorial.xboxlive.com^$important
796 | @@|eds.xboxlive.com^$important
797 | @@|eplists.xboxlive.com^$important
798 | @@|fe3cr.delivery.mp.microsoft.com^$important
799 | @@|help.ui.xboxlive.com^$important
800 | @@|img-prod-cms-rt-microsoft-com.akamaized.net^$important
801 | @@|leaderboards.xboxlive.com^$important
802 | @@|licensing.mp.microsoft.com^$important
803 | @@|licensing.xboxlive.com^$important
804 | @@|login.live.com^$important
805 | @@|mediahub.xboxlive.com^$important
806 | @@|mixer.com^$important
807 | @@|notificationinbox.xboxlive.com^$important
808 | @@|notifier.xboxlive.com^$important
809 | @@|notify.xboxlive.com^$important
810 | @@|ocsp.digicert.com^$important
811 | @@|ocsp.msocsp.com^$important
812 | @@|peoplehub.xboxlive.com^$important
813 | @@|plaid.xboxservices.com^$important
814 | @@|privacy.xboxlive.com^$important
815 | @@|profile.xboxlive.com^$important
816 | @@|pti.store.microsoft.com^$important
817 | @@|rta.xboxlive.com^$important
818 | @@|sessiondirectory.xboxlive.com^$important
819 | @@|settings-win.data.microsoft.com^$important
820 | @@|slscr.update.microsoft.com^$important
821 | @@|social.xboxlive.com^$important
822 | @@|storeedgefd.dsx.mp.microsoft.com^$important
823 | @@|title.auth.xboxlive.com^$important
824 | @@|title.mgt.xboxlive.com^$important
825 | @@|titlehub.xboxlive.com^$important
826 | @@|titlestorage.xboxlive.com^$important
827 | @@|update.xboxlive.com^$important
828 | @@|user.auth.xboxlive.com^$important
829 | @@|userpresence.xboxlive.com^$important
830 | @@|userstats.xboxlive.com^$important
831 | @@|usertitles.xboxlive.com^$important
832 | @@|v10.events.data.microsoft.com^$important
833 | @@|v20.events.data.microsoft.com^$important
834 | @@|xblmessaging.xboxlive.com^$important
835 | @@|xbox-dash-public.rec.mp.microsoft.com^$important
836 | @@|xbox-global.ifs.windows.com^$important
837 | @@|xbox-guide-public.rec.mp.microsoft.com^$important
838 | @@|xbox.ipv6.microsoft.com^$important
839 | @@|xboxexperiencesprod.experimentation.xboxlive.com^$important
840 | @@|xccs.xboxlive.com^$important
841 | @@|xflight.xboxlive.com^$important
842 | @@|xkms.xboxlive.com^$important
843 | @@|xsts.auth.xboxlive.com^$important
844 |
845 | # Xiaomi
846 | @@|adv.sec.intl.miui.com^$important
847 | @@|api.account.xiaomi.com^$important
848 | @@|api.device.xiaomi.net^$important
849 | @@|api.micloud.xiaomi.net^$important
850 | @@|api.sec.intl.miui.com^$important
851 | @@|au.ff.avast.sec.miui.com^$important
852 | @@|authbe.sec.intl.miui.com^$important
853 | @@|bigota.d.miui.com^$important
854 | @@|data.sec.miui.com^$important
855 | @@|f1.market.xiaomi.com^$important
856 | @@|f2.market.xiaomi.com^$important
857 | @@|f3.market.xiaomi.com^$important
858 | @@|f4.market.xiaomi.com^$important
859 | @@|f5.market.xiaomi.com^$important
860 | @@|file.market.xiaomi.com^$important
861 | @@|sa.api.intl.miui.com^$important
862 | @@|t1.market.xiaomi.com^$important
863 | @@|t2.market.xiaomi.com^$important
864 | @@|t3.market.xiaomi.com^$important
865 | @@|t4.market.xiaomi.com^$important
866 | @@|t5.market.xiaomi.com^$important
867 | @@|zhuti.xiaomi.com^$important
868 |
869 | # Yahoo
870 | @@|login.yahoo.com^$important
871 |
872 | # Youtube
873 | @@|i.ytimg.com^$important
874 | @@|i1.ytimg.com^$important
875 | @@|s.youtube.com^$important
876 | @@|s.ytimg.com^$important
877 | @@|s2.youtube.com^$important
878 | @@|youtu.be^$important
879 | @@|youtube-nocookie.com^$important
880 |
881 | # ZooPlus
882 | @@|shop-cdn-m.mediazs.com^$important
883 | @@|shop-public-cdn.mediazs.com^$important
884 |
--------------------------------------------------------------------------------