@browserless.io/browserless 2.25.0-beta-2 → 2.25.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +39 -3
- package/README.md +4 -5
- package/build/browserless.js +3 -1
- package/build/browsers/browsers.cdp.d.ts +3 -0
- package/build/browsers/browsers.cdp.js +4 -1
- package/build/browsers/browsers.playwright.d.ts +4 -0
- package/build/browsers/browsers.playwright.js +11 -2
- package/build/browsers/index.js +4 -3
- package/build/http.d.ts +9 -0
- package/build/http.js +9 -0
- package/build/routes/chrome/http/content.post.body.json +8 -8
- package/build/routes/chrome/http/pdf.post.body.json +8 -8
- package/build/routes/chrome/http/scrape.post.body.json +8 -8
- package/build/routes/chrome/http/screenshot.post.body.json +8 -8
- package/build/routes/chrome/tests/kill-sessions.spec.js +1 -1
- package/build/routes/chromium/http/content.post.body.json +8 -8
- package/build/routes/chromium/http/pdf.post.body.json +8 -8
- package/build/routes/chromium/http/scrape.post.body.json +8 -8
- package/build/routes/chromium/http/screenshot.post.body.json +8 -8
- package/build/routes/chromium/tests/kill-sessions.spec.js +1 -1
- package/build/routes/edge/http/content.post.body.json +579 -0
- package/build/routes/edge/http/content.post.d.ts +8 -0
- package/build/routes/edge/http/content.post.js +7 -0
- package/build/routes/edge/http/content.post.query.json +183 -0
- package/build/routes/edge/http/content.post.response.json +5 -0
- package/build/routes/edge/http/download.post.body.json +32 -0
- package/build/routes/edge/http/download.post.d.ts +8 -0
- package/build/routes/edge/http/download.post.js +7 -0
- package/build/routes/edge/http/download.post.query.json +120 -0
- package/build/routes/edge/http/download.post.response.json +4 -0
- package/build/routes/edge/http/function.post.body.json +32 -0
- package/build/routes/edge/http/function.post.d.ts +8 -0
- package/build/routes/edge/http/function.post.js +7 -0
- package/build/routes/edge/http/function.post.query.json +120 -0
- package/build/routes/edge/http/function.post.response.json +4 -0
- package/build/routes/edge/http/json-list.get.d.ts +5 -0
- package/build/routes/edge/http/json-list.get.js +5 -0
- package/build/routes/edge/http/json-list.get.response.json +52 -0
- package/build/routes/edge/http/json-new.put.d.ts +5 -0
- package/build/routes/edge/http/json-new.put.js +5 -0
- package/build/routes/edge/http/json-new.put.response.json +44 -0
- package/build/routes/edge/http/json-protocol.get.d.ts +5 -0
- package/build/routes/edge/http/json-protocol.get.js +5 -0
- package/build/routes/edge/http/json-protocol.get.response.json +6 -0
- package/build/routes/edge/http/json-version.get.d.ts +5 -0
- package/build/routes/edge/http/json-version.get.js +5 -0
- package/build/routes/edge/http/json-version.get.response.json +44 -0
- package/build/routes/edge/http/pdf.post.body.json +724 -0
- package/build/routes/edge/http/pdf.post.d.ts +8 -0
- package/build/routes/edge/http/pdf.post.js +7 -0
- package/build/routes/edge/http/pdf.post.query.json +120 -0
- package/build/routes/edge/http/pdf.post.response.json +5 -0
- package/build/routes/edge/http/performance.post.body.json +26 -0
- package/build/routes/edge/http/performance.post.d.ts +8 -0
- package/build/routes/edge/http/performance.post.js +7 -0
- package/build/routes/edge/http/performance.post.query.json +120 -0
- package/build/routes/edge/http/performance.post.response.json +7 -0
- package/build/routes/edge/http/scrape.post.body.json +626 -0
- package/build/routes/edge/http/scrape.post.d.ts +8 -0
- package/build/routes/edge/http/scrape.post.js +7 -0
- package/build/routes/edge/http/scrape.post.query.json +183 -0
- package/build/routes/edge/http/scrape.post.response.json +334 -0
- package/build/routes/edge/http/screenshot.post.body.json +669 -0
- package/build/routes/edge/http/screenshot.post.d.ts +8 -0
- package/build/routes/edge/http/screenshot.post.js +7 -0
- package/build/routes/edge/http/screenshot.post.query.json +120 -0
- package/build/routes/edge/http/screenshot.post.response.json +5 -0
- package/build/routes/edge/tests/content.spec.d.ts +1 -0
- package/build/routes/edge/tests/content.spec.js +312 -0
- package/build/routes/edge/tests/download.spec.d.ts +1 -0
- package/build/routes/edge/tests/download.spec.js +67 -0
- package/build/routes/edge/tests/function.spec.d.ts +1 -0
- package/build/routes/edge/tests/function.spec.js +277 -0
- package/build/routes/edge/tests/json-version.spec.d.ts +1 -0
- package/build/routes/edge/tests/json-version.spec.js +37 -0
- package/build/routes/edge/tests/kill-sessions.spec.d.ts +1 -0
- package/build/routes/edge/tests/kill-sessions.spec.js +80 -0
- package/build/routes/edge/tests/page-websocket.spec.d.ts +1 -0
- package/build/routes/edge/tests/page-websocket.spec.js +97 -0
- package/build/routes/edge/tests/pdf.spec.d.ts +1 -0
- package/build/routes/edge/tests/pdf.spec.js +345 -0
- package/build/routes/edge/tests/performance.spec.d.ts +1 -0
- package/build/routes/edge/tests/performance.spec.js +124 -0
- package/build/routes/edge/tests/scrape.spec.d.ts +1 -0
- package/build/routes/edge/tests/scrape.spec.js +354 -0
- package/build/routes/edge/tests/screenshot.spec.d.ts +1 -0
- package/build/routes/edge/tests/screenshot.spec.js +339 -0
- package/build/routes/edge/tests/websocket.spec.d.ts +1 -0
- package/build/routes/edge/tests/websocket.spec.js +384 -0
- package/build/routes/edge/ws/browser.d.ts +7 -0
- package/build/routes/edge/ws/browser.js +6 -0
- package/build/routes/edge/ws/browser.query.json +120 -0
- package/build/routes/edge/ws/cdp.d.ts +8 -0
- package/build/routes/edge/ws/cdp.js +7 -0
- package/build/routes/edge/ws/cdp.query.json +120 -0
- package/build/routes/edge/ws/page.d.ts +8 -0
- package/build/routes/edge/ws/page.js +7 -0
- package/build/routes/edge/ws/page.query.json +120 -0
- package/build/routes/edge/ws/playwright.d.ts +8 -0
- package/build/routes/edge/ws/playwright.js +7 -0
- package/build/routes/edge/ws/playwright.query.json +100 -0
- package/build/routes/firefox/tests/kill-sessions.spec.js +1 -1
- package/build/routes/management/http/meta.get.js +3 -1
- package/build/routes/webkit/tests/kill-sessions.spec.js +1 -1
- package/build/sdk-utils.js +1 -1
- package/build/shared/scrape.http.js +2 -2
- package/build/types.d.ts +32 -0
- package/build/types.js +18 -0
- package/build/utils.d.ts +1 -0
- package/build/utils.js +16 -2
- package/docker/chrome/Dockerfile +14 -14
- package/docker/chromium/Dockerfile +14 -14
- package/docker/edge/.dockerignore +16 -0
- package/docker/edge/Dockerfile +43 -0
- package/docker/firefox/Dockerfile +14 -14
- package/docker/multi/Dockerfile +18 -18
- package/docker/sdk/Dockerfile +10 -0
- package/extensions/ublock/_locales/ar/messages.json +3 -3
- package/extensions/ublock/_locales/bg/messages.json +1 -1
- package/extensions/ublock/_locales/br_FR/messages.json +2 -2
- package/extensions/ublock/_locales/cy/messages.json +11 -11
- package/extensions/ublock/_locales/el/messages.json +2 -2
- package/extensions/ublock/_locales/hu/messages.json +1 -1
- package/extensions/ublock/_locales/id/messages.json +1 -1
- package/extensions/ublock/_locales/lv/messages.json +4 -4
- package/extensions/ublock/_locales/mk/messages.json +130 -130
- package/extensions/ublock/_locales/oc/messages.json +1 -1
- package/extensions/ublock/_locales/pt_BR/messages.json +1 -1
- package/extensions/ublock/_locales/pt_PT/messages.json +2 -2
- package/extensions/ublock/_locales/si/messages.json +100 -100
- package/extensions/ublock/_locales/sr/messages.json +4 -4
- package/extensions/ublock/_locales/vi/messages.json +19 -19
- package/extensions/ublock/_locales/zh_TW/messages.json +28 -28
- package/extensions/ublock/assets/assets.json +33 -29
- package/extensions/ublock/assets/thirdparties/easylist/easylist.txt +2984 -3287
- package/extensions/ublock/assets/thirdparties/easylist/easyprivacy.txt +150 -171
- package/extensions/ublock/assets/thirdparties/pgl.yoyo.org/as/serverlist +37 -27
- package/extensions/ublock/assets/thirdparties/publicsuffix.org/list/effective_tld_names.dat +802 -888
- package/extensions/ublock/assets/thirdparties/urlhaus-filter/urlhaus-filter-online.txt +2355 -2071
- package/extensions/ublock/assets/ublock/badlists.txt +9 -1
- package/extensions/ublock/assets/ublock/badware.min.txt +354 -243
- package/extensions/ublock/assets/ublock/filters.min.txt +5837 -5737
- package/extensions/ublock/assets/ublock/privacy.min.txt +151 -38
- package/extensions/ublock/assets/ublock/quick-fixes.min.txt +83 -127
- package/extensions/ublock/assets/ublock/unbreak.min.txt +66 -50
- package/extensions/ublock/css/codemirror.css +4 -0
- package/extensions/ublock/document-blocked.html +3 -1
- package/extensions/ublock/js/arglist-parser.js +116 -0
- package/extensions/ublock/js/background.js +1 -1
- package/extensions/ublock/js/logger-ui.js +1 -1
- package/extensions/ublock/js/messaging.js +9 -2
- package/extensions/ublock/js/pagestore.js +3 -1
- package/extensions/ublock/js/redirect-engine.js +3 -1
- package/extensions/ublock/{assets/resources/set-attr.js → js/resources/attribute.js} +115 -11
- package/extensions/ublock/js/resources/base.js +38 -0
- package/extensions/ublock/js/resources/cookie.js +419 -0
- package/extensions/ublock/js/resources/href-sanitizer.js +188 -0
- package/extensions/ublock/js/resources/localstorage.js +235 -0
- package/extensions/ublock/js/resources/parse-replace.js +54 -0
- package/extensions/ublock/js/resources/prevent-settimeout.js +236 -0
- package/extensions/ublock/js/resources/proxy-apply.js +109 -0
- package/extensions/ublock/js/resources/replace-argument.js +120 -0
- package/extensions/ublock/{assets → js}/resources/run-at.js +20 -4
- package/extensions/ublock/{assets → js}/resources/safe-self.js +5 -4
- package/extensions/ublock/{assets → js}/resources/scriptlets.js +90 -1589
- package/extensions/ublock/js/resources/set-constant.js +287 -0
- package/extensions/ublock/js/resources/shared.js +44 -0
- package/extensions/ublock/js/resources/spoof-css.js +163 -0
- package/extensions/ublock/js/s14e-serializer.js +2 -1
- package/extensions/ublock/js/scriptlet-filtering-core.js +1 -1
- package/extensions/ublock/js/scriptlet-filtering.js +1 -31
- package/extensions/ublock/js/static-dnr-filtering.js +143 -129
- package/extensions/ublock/js/static-filtering-parser.js +27 -117
- package/extensions/ublock/js/static-net-filtering.js +53 -141
- package/extensions/ublock/js/traffic.js +1 -1
- package/extensions/ublock/js/urlskip.js +166 -0
- package/extensions/ublock/js/vapi-background-ext.js +38 -14
- package/extensions/ublock/manifest.json +1 -1
- package/package.json +22 -22
- package/src/browserless.ts +4 -0
- package/src/browsers/browsers.cdp.ts +5 -0
- package/src/browsers/browsers.playwright.ts +14 -1
- package/src/browsers/index.ts +5 -2
- package/src/http.ts +9 -0
- package/src/routes/chrome/tests/kill-sessions.spec.ts +1 -1
- package/src/routes/chromium/tests/kill-sessions.spec.ts +1 -1
- package/src/routes/edge/http/content.post.ts +20 -0
- package/src/routes/edge/http/download.post.ts +20 -0
- package/src/routes/edge/http/function.post.ts +20 -0
- package/src/routes/edge/http/json-list.get.ts +7 -0
- package/src/routes/edge/http/json-new.put.ts +7 -0
- package/src/routes/edge/http/json-protocol.get.ts +7 -0
- package/src/routes/edge/http/json-version.get.ts +7 -0
- package/src/routes/edge/http/pdf.post.ts +20 -0
- package/src/routes/edge/http/performance.post.ts +20 -0
- package/src/routes/edge/http/scrape.post.ts +20 -0
- package/src/routes/edge/http/screenshot.post.ts +20 -0
- package/src/routes/edge/tests/content.spec.ts +376 -0
- package/src/routes/edge/tests/download.spec.ts +77 -0
- package/src/routes/edge/tests/function.spec.ts +317 -0
- package/src/routes/edge/tests/json-version.spec.ts +52 -0
- package/src/routes/edge/tests/kill-sessions.spec.ts +99 -0
- package/src/routes/edge/tests/page-websocket.spec.ts +129 -0
- package/src/routes/edge/tests/pdf.spec.ts +389 -0
- package/src/routes/edge/tests/performance.spec.ts +155 -0
- package/src/routes/edge/tests/scrape.spec.ts +417 -0
- package/src/routes/edge/tests/screenshot.spec.ts +387 -0
- package/src/routes/edge/tests/websocket.spec.ts +510 -0
- package/src/routes/edge/ws/browser.ts +10 -0
- package/src/routes/edge/ws/cdp.ts +17 -0
- package/src/routes/edge/ws/page.ts +10 -0
- package/src/routes/edge/ws/playwright.ts +17 -0
- package/src/routes/firefox/tests/kill-sessions.spec.ts +1 -1
- package/src/routes/management/http/meta.get.ts +6 -1
- package/src/routes/management/http/static.get.ts +1 -1
- package/src/routes/webkit/tests/kill-sessions.spec.ts +1 -1
- package/src/sdk-utils.ts +1 -1
- package/src/shared/scrape.http.ts +2 -2
- package/src/types.ts +19 -0
- package/src/utils.ts +38 -16
- package/static/docs/swagger.json +2097 -10
- package/static/docs/swagger.min.json +2096 -9
- package/static/function/client.js +141 -253
- package/static/function/index.html +141 -253
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
[Adblock Plus 1.1]
|
|
2
2
|
! Title: EasyPrivacy
|
|
3
3
|
! Expires: 6 days (update frequency)
|
|
4
|
-
! Last modified:
|
|
4
|
+
! Last modified: Wed, 01 Jan 2025 13:02:32 +0000
|
|
5
5
|
! Diff-Path: %diffpath%#easyprivacy
|
|
6
6
|
! Diff-Expires: 317 minutes
|
|
7
7
|
! *** easylist:template_header.txt ***
|
|
@@ -256,7 +256,6 @@
|
|
|
256
256
|
/analytics.config.js
|
|
257
257
|
/analytics.do
|
|
258
258
|
/analytics.gif?
|
|
259
|
-
/analytics.html?
|
|
260
259
|
/analytics.js/v1/*
|
|
261
260
|
/analytics.plausible.js
|
|
262
261
|
/analytics.prod.$domain=~fifteen.eu
|
|
@@ -320,6 +319,7 @@
|
|
|
320
319
|
/api/adplogger/*
|
|
321
320
|
/api/async.php?t=user&m=pagehits&
|
|
322
321
|
/api/bfb_write_log
|
|
322
|
+
/api/click/*?c=
|
|
323
323
|
/api/cmp_tracker|
|
|
324
324
|
/api/drpStats
|
|
325
325
|
/api/event-rfkj/*
|
|
@@ -551,6 +551,7 @@
|
|
|
551
551
|
/cklink.gif?
|
|
552
552
|
/cklog.js
|
|
553
553
|
/clear.gif?
|
|
554
|
+
/click-tracking.js
|
|
554
555
|
/click/impression?
|
|
555
556
|
/click?track=
|
|
556
557
|
/click_metrics-jquery.js
|
|
@@ -753,7 +754,6 @@
|
|
|
753
754
|
/dla_tracker.js
|
|
754
755
|
/dlpageping?
|
|
755
756
|
/dm.gif?
|
|
756
|
-
/dm.tlo?id=
|
|
757
757
|
/dmp/pixel.js
|
|
758
758
|
/dmu2panalytics/ajax_call.php?
|
|
759
759
|
/dnx-event-collector/*
|
|
@@ -2204,7 +2204,7 @@
|
|
|
2204
2204
|
/t/event?
|
|
2205
2205
|
/t?referer=
|
|
2206
2206
|
/t?tcid=
|
|
2207
|
-
/taboola-header.js
|
|
2207
|
+
/taboola-header.js$script
|
|
2208
2208
|
/taboola.js
|
|
2209
2209
|
/taboola/loader.js
|
|
2210
2210
|
/taboolaHead.js
|
|
@@ -2580,7 +2580,6 @@
|
|
|
2580
2580
|
/web-data-ingress?
|
|
2581
2581
|
/web-pixel-shopify-app-pixel@
|
|
2582
2582
|
/web-pixel-shopify-custom-pixel@
|
|
2583
|
-
/web-vitals.
|
|
2584
2583
|
/web/push?
|
|
2585
2584
|
/web_analytics/*
|
|
2586
2585
|
/web_answertip.js
|
|
@@ -2642,11 +2641,13 @@
|
|
|
2642
2641
|
/wp-slimstat.min.js
|
|
2643
2642
|
/wp-statistics-tracker.min.js
|
|
2644
2643
|
/wp-statistics/assets/js/tracker.js
|
|
2645
|
-
/wp-statistics/v2/hit
|
|
2644
|
+
/wp-statistics/v2/hit
|
|
2646
2645
|
/wp-stats-manager/js/wsm_new.js
|
|
2647
2646
|
/wp-useronline/useronline.js
|
|
2648
2647
|
/wp_stat.php?
|
|
2649
2648
|
/wpengine-analytics/js/main.js
|
|
2649
|
+
/wpr-beacon.js
|
|
2650
|
+
/wpr-beacon.min.js
|
|
2650
2651
|
/wps-visitor-counter/styles/js/custom.js
|
|
2651
2652
|
/wpstatistics/v1/hit?
|
|
2652
2653
|
/wrapper/metrics/v1/custom-metrics?
|
|
@@ -2880,6 +2881,7 @@ _WebVitalsReporter_
|
|
|
2880
2881
|
.cmail19.com/t/$image
|
|
2881
2882
|
.cmail19.com/ti/$image
|
|
2882
2883
|
.cmail20.com/t/$image
|
|
2884
|
+
.crsend.com/stats/$image
|
|
2883
2885
|
.ct.sendgrid.net/$image
|
|
2884
2886
|
.delivery-status.com/open?
|
|
2885
2887
|
.demdex.net/event?
|
|
@@ -2904,6 +2906,7 @@ _WebVitalsReporter_
|
|
|
2904
2906
|
.gif?stat=open
|
|
2905
2907
|
.goodwell18.com/track/
|
|
2906
2908
|
.google-analytics.com/
|
|
2909
|
+
.hilton.com/subscription/watermark.gif?
|
|
2907
2910
|
.hootsuite.com/trk?
|
|
2908
2911
|
.informz.net/z/$image
|
|
2909
2912
|
.innologica.com/t/
|
|
@@ -2927,6 +2930,7 @@ _WebVitalsReporter_
|
|
|
2927
2930
|
.keap-link016.com/$image
|
|
2928
2931
|
.kijiji.ca/r/
|
|
2929
2932
|
.klclick.com/$image
|
|
2933
|
+
.lassuranceretraite.fr/mk/op/$image
|
|
2930
2934
|
.list-manage.com/track/
|
|
2931
2935
|
.mail.odysee.com/o/$image
|
|
2932
2936
|
.mailbutler.io/tracking/
|
|
@@ -2970,6 +2974,7 @@ _WebVitalsReporter_
|
|
|
2970
2974
|
.starbucks.com/a/
|
|
2971
2975
|
.substack.com/o/$image
|
|
2972
2976
|
.substackcdn.com/open?$image
|
|
2977
|
+
.telekom-dienste.de/common/1x1_transparent.png
|
|
2973
2978
|
.theatlantic.com/email.gif?
|
|
2974
2979
|
.titus.de/oo/$image
|
|
2975
2980
|
.tradewhy.cn//openemail/$image
|
|
@@ -3094,6 +3099,7 @@ _WebVitalsReporter_
|
|
|
3094
3099
|
/znsrc.com/c/*$image
|
|
3095
3100
|
://2ip.*/member_photo/$third-party
|
|
3096
3101
|
://cl.melonbooks.co.jp/c/$image
|
|
3102
|
+
://e.email.*/open?$image
|
|
3097
3103
|
://email.*/e/o/
|
|
3098
3104
|
://email.*/o/$image
|
|
3099
3105
|
://parcel-api.delivery-status.*/open/$image
|
|
@@ -3122,6 +3128,7 @@ omni.soundestlink.com$image
|
|
|
3122
3128
|
||aaxwall.com^
|
|
3123
3129
|
||acsbapp.com^
|
|
3124
3130
|
||adcontroll.com^
|
|
3131
|
+
||aditude.cloud^
|
|
3125
3132
|
||admaxium.com^
|
|
3126
3133
|
||adnext.co^
|
|
3127
3134
|
||adrtx.net^
|
|
@@ -3129,6 +3136,7 @@ omni.soundestlink.com$image
|
|
|
3129
3136
|
||adspsp.com^
|
|
3130
3137
|
||adstk.io^
|
|
3131
3138
|
||adultium.com^
|
|
3139
|
+
||afrdtech.com^
|
|
3132
3140
|
||aggle.net^
|
|
3133
3141
|
||agkn.com^
|
|
3134
3142
|
||agma-analytics.de^
|
|
@@ -3163,7 +3171,6 @@ omni.soundestlink.com$image
|
|
|
3163
3171
|
||briskeagle.io^
|
|
3164
3172
|
||briskpelican.io^
|
|
3165
3173
|
||broadstreet.ai^
|
|
3166
|
-
||brsrvr.com^
|
|
3167
3174
|
||brwsrfrm.com^
|
|
3168
3175
|
||btloader.com^
|
|
3169
3176
|
||bx-cloud.com^
|
|
@@ -3257,6 +3264,7 @@ omni.soundestlink.com$image
|
|
|
3257
3264
|
||g11885060100.co^
|
|
3258
3265
|
||g12083144435.co^
|
|
3259
3266
|
||g12281228770.co^
|
|
3267
|
+
||g1386590346.co^
|
|
3260
3268
|
||g1584674682.co^
|
|
3261
3269
|
||g1584674684.co^
|
|
3262
3270
|
||g1782759015.co^
|
|
@@ -3405,7 +3413,6 @@ omni.soundestlink.com$image
|
|
|
3405
3413
|
||pzapi-kg.com^
|
|
3406
3414
|
||pzimff.com^
|
|
3407
3415
|
||q0losid.com^
|
|
3408
|
-
||q20jqurls0y7gk8.info^
|
|
3409
3416
|
||quantserve.com^
|
|
3410
3417
|
||quickkoala.io^
|
|
3411
3418
|
||quickpcfixer.click^
|
|
@@ -5837,6 +5844,7 @@ omni.soundestlink.com$image
|
|
|
5837
5844
|
||visitorpath.com^$third-party
|
|
5838
5845
|
||visitorprofiler.com^$third-party
|
|
5839
5846
|
||visitorqueue.com^$third-party
|
|
5847
|
+
||visitortracking.com^$third-party
|
|
5840
5848
|
||visitortracklog.com^$third-party
|
|
5841
5849
|
||visitorville.com^$third-party
|
|
5842
5850
|
||visitstreamer.com^$third-party
|
|
@@ -6215,6 +6223,7 @@ omni.soundestlink.com$image
|
|
|
6215
6223
|
||afraidlanguage.com^
|
|
6216
6224
|
||aftermathbrother.com^
|
|
6217
6225
|
||agilebreeze.com^
|
|
6226
|
+
||agileformer.com^
|
|
6218
6227
|
||agreeablearch.com^
|
|
6219
6228
|
||agreeablestew.com^
|
|
6220
6229
|
||agreeabletouch.com^
|
|
@@ -6345,6 +6354,7 @@ omni.soundestlink.com$image
|
|
|
6345
6354
|
||bikesboard.com^
|
|
6346
6355
|
||billowybead.com^
|
|
6347
6356
|
||billowybelief.com^
|
|
6357
|
+
||binarycrest.com^
|
|
6348
6358
|
||binspiredtees.com^
|
|
6349
6359
|
||birthdaybelief.com^
|
|
6350
6360
|
||bitterbear.com^
|
|
@@ -6357,6 +6367,7 @@ omni.soundestlink.com$image
|
|
|
6357
6367
|
||blissfullagoon.com^
|
|
6358
6368
|
||blotburn.com^
|
|
6359
6369
|
||blueeyedblow.com^
|
|
6370
|
+
||bluevinebooks.com^
|
|
6360
6371
|
||blushingbeast.com^
|
|
6361
6372
|
||blushingboundary.com^
|
|
6362
6373
|
||blushingbread.com^
|
|
@@ -6462,6 +6473,7 @@ omni.soundestlink.com$image
|
|
|
6462
6473
|
||ceciliavenus.com^
|
|
6463
6474
|
||celestialeuphony.com^
|
|
6464
6475
|
||celestialspectra.com^
|
|
6476
|
+
||chademocharge.com^
|
|
6465
6477
|
||chaireggnog.com^
|
|
6466
6478
|
||chairscrack.com^
|
|
6467
6479
|
||chairsdonkey.com^
|
|
@@ -6493,6 +6505,7 @@ omni.soundestlink.com$image
|
|
|
6493
6505
|
||chubbycreature.com^
|
|
6494
6506
|
||chunkycactus.com^
|
|
6495
6507
|
||cicdserver.com^
|
|
6508
|
+
||ciderfeast.com^
|
|
6496
6509
|
||cinemabonus.com^
|
|
6497
6510
|
||circlelevel.com^
|
|
6498
6511
|
||clamcelery.com^
|
|
@@ -6742,6 +6755,7 @@ omni.soundestlink.com$image
|
|
|
6742
6755
|
||eagereden.com^
|
|
6743
6756
|
||eagerflame.com^
|
|
6744
6757
|
||eagerknight.com^
|
|
6758
|
+
||earnbaht.com^
|
|
6745
6759
|
||earthquakescarf.com^
|
|
6746
6760
|
||earthycopy.com^
|
|
6747
6761
|
||earthyfarm.com^
|
|
@@ -6803,6 +6817,7 @@ omni.soundestlink.com$image
|
|
|
6803
6817
|
||enthusiastictemper.com^
|
|
6804
6818
|
||enviousshape.com^
|
|
6805
6819
|
||enviousthread.com^
|
|
6820
|
+
||epicoldschool.com^
|
|
6806
6821
|
||equablekettle.com^
|
|
6807
6822
|
||erraticreaction.com^
|
|
6808
6823
|
||etherealbamboo.com^
|
|
@@ -6903,6 +6918,7 @@ omni.soundestlink.com$image
|
|
|
6903
6918
|
||floweryfact.com^
|
|
6904
6919
|
||floweryflavor.com^
|
|
6905
6920
|
||floweryoperation.com^
|
|
6921
|
+
||flushingbeast.com^
|
|
6906
6922
|
||flutteringfireman.com^
|
|
6907
6923
|
||foambench.com^
|
|
6908
6924
|
||foamyfood.com^
|
|
@@ -6916,6 +6932,7 @@ omni.soundestlink.com$image
|
|
|
6916
6932
|
||fortunatemark.com^
|
|
6917
6933
|
||fourarithmetic.com^
|
|
6918
6934
|
||fourfork.com^
|
|
6935
|
+
||fourpawsahead.com^
|
|
6919
6936
|
||fractalcoast.com^
|
|
6920
6937
|
||frailflock.com^
|
|
6921
6938
|
||frailfruit.com^
|
|
@@ -6985,11 +7002,13 @@ omni.soundestlink.com$image
|
|
|
6985
7002
|
||glowingmeadow.com^
|
|
6986
7003
|
||gluedpixel.com^
|
|
6987
7004
|
||godlygeese.com^
|
|
7005
|
+
||godseedband.com^
|
|
6988
7006
|
||goldfishgrowth.com^
|
|
6989
7007
|
||gondolagnome.com^
|
|
6990
7008
|
||goodbark.com^
|
|
6991
7009
|
||gorgeousedge.com^
|
|
6992
7010
|
||gorgeousground.com^
|
|
7011
|
+
||gossamerwing.com^
|
|
6993
7012
|
||gracefulmilk.com^
|
|
6994
7013
|
||gracefulsock.com^
|
|
6995
7014
|
||grainmass.com^
|
|
@@ -6997,6 +7016,7 @@ omni.soundestlink.com$image
|
|
|
6997
7016
|
||grandiosefire.com^
|
|
6998
7017
|
||grandioseguide.com^
|
|
6999
7018
|
||grandmotherunit.com^
|
|
7019
|
+
||granlite.com^
|
|
7000
7020
|
||grapeopinion.com^
|
|
7001
7021
|
||gravitygive.com^
|
|
7002
7022
|
||gravitykick.com^
|
|
@@ -7073,6 +7093,7 @@ omni.soundestlink.com$image
|
|
|
7073
7093
|
||historicalrequest.com^
|
|
7074
7094
|
||hocgeese.com^
|
|
7075
7095
|
||hollowafterthought.com^
|
|
7096
|
+
||homebizplaza.com^
|
|
7076
7097
|
||homelycrown.com^
|
|
7077
7098
|
||homeslick.com^
|
|
7078
7099
|
||honeybulb.com^
|
|
@@ -7081,6 +7102,7 @@ omni.soundestlink.com$image
|
|
|
7081
7102
|
||honorablehall.com^
|
|
7082
7103
|
||honorablehydrant.com^
|
|
7083
7104
|
||honorableland.com^
|
|
7105
|
+
||hookconference.com^
|
|
7084
7106
|
||hospitablehall.com^
|
|
7085
7107
|
||hospitablehat.com^
|
|
7086
7108
|
||howdyinbox.com^
|
|
@@ -7128,6 +7150,7 @@ omni.soundestlink.com$image
|
|
|
7128
7150
|
||inquisitiveinvention.com^
|
|
7129
7151
|
||instrumentinsect.com^
|
|
7130
7152
|
||instrumentsponge.com^
|
|
7153
|
+
||insulatech.com^
|
|
7131
7154
|
||intelligentscissors.com^
|
|
7132
7155
|
||intentlens.com^
|
|
7133
7156
|
||interestdust.com^
|
|
@@ -7239,6 +7262,7 @@ omni.soundestlink.com$image
|
|
|
7239
7262
|
||lyricshook.com^
|
|
7240
7263
|
||maddeningpowder.com^
|
|
7241
7264
|
||madebyintent.com^
|
|
7265
|
+
||madlysuccessful.com^
|
|
7242
7266
|
||magicaljoin.com^
|
|
7243
7267
|
||magicminibox.com^
|
|
7244
7268
|
||magiczenith.com^
|
|
@@ -7314,6 +7338,7 @@ omni.soundestlink.com$image
|
|
|
7314
7338
|
||minuterhythm.com^
|
|
7315
7339
|
||miscreantmine.com^
|
|
7316
7340
|
||miscreantmoon.com^
|
|
7341
|
+
||missionrewards.com^
|
|
7317
7342
|
||mistyhorizon.com^
|
|
7318
7343
|
||mittencattle.com^
|
|
7319
7344
|
||mixedreading.com^
|
|
@@ -7321,6 +7346,7 @@ omni.soundestlink.com$image
|
|
|
7321
7346
|
||modularmental.com^
|
|
7322
7347
|
||moldyicicle.com^
|
|
7323
7348
|
||monacobeatles.com^
|
|
7349
|
+
||monthlyhat.com^
|
|
7324
7350
|
||moorshoes.com^
|
|
7325
7351
|
||morefriendly.com^
|
|
7326
7352
|
||motionflowers.com^
|
|
@@ -7355,6 +7381,7 @@ omni.soundestlink.com$image
|
|
|
7355
7381
|
||negotiatetime.com^
|
|
7356
7382
|
||neighborlywatch.com^
|
|
7357
7383
|
||nervoussummer.com^
|
|
7384
|
+
||newartreview.com^
|
|
7358
7385
|
||newsletterjet.com^
|
|
7359
7386
|
||niftygraphs.com^
|
|
7360
7387
|
||niftyhospital.com^
|
|
@@ -7364,6 +7391,7 @@ omni.soundestlink.com$image
|
|
|
7364
7391
|
||nimbleplot.com^
|
|
7365
7392
|
||nocturnalloom.com^
|
|
7366
7393
|
||nocturnalmystique.com^
|
|
7394
|
+
||nodethisweek.com^
|
|
7367
7395
|
||noiselessplough.com^
|
|
7368
7396
|
||nonchalantnerve.com^
|
|
7369
7397
|
||nondescriptcrowd.com^
|
|
@@ -7387,6 +7415,7 @@ omni.soundestlink.com$image
|
|
|
7387
7415
|
||objecthero.com^
|
|
7388
7416
|
||obscenesidewalk.com^
|
|
7389
7417
|
||observantice.com^
|
|
7418
|
+
||offshorecyclone.com^
|
|
7390
7419
|
||oldfashionedoffer.com^
|
|
7391
7420
|
||omgthink.com^
|
|
7392
7421
|
||omniscientfeeling.com^
|
|
@@ -7443,6 +7472,7 @@ omni.soundestlink.com$image
|
|
|
7443
7472
|
||peacefullimit.com^
|
|
7444
7473
|
||pedromister.com^
|
|
7445
7474
|
||pedropanther.com^
|
|
7475
|
+
||pegsbuttons.com^
|
|
7446
7476
|
||perceivequarter.com^
|
|
7447
7477
|
||periodicpocket.com^
|
|
7448
7478
|
||perkyjade.com^
|
|
@@ -7467,6 +7497,7 @@ omni.soundestlink.com$image
|
|
|
7467
7497
|
||piquantstove.com^
|
|
7468
7498
|
||piquantvortex.com^
|
|
7469
7499
|
||pixeledhub.com^
|
|
7500
|
+
||pixelvariety.com^
|
|
7470
7501
|
||pizzasnut.com^
|
|
7471
7502
|
||placeframe.com^
|
|
7472
7503
|
||placidactivity.com^
|
|
@@ -7538,6 +7569,7 @@ omni.soundestlink.com$image
|
|
|
7538
7569
|
||promopassage.com^
|
|
7539
7570
|
||proofconvert.com^
|
|
7540
7571
|
||propertypotato.com^
|
|
7572
|
+
||propsynergy.com^
|
|
7541
7573
|
||protestcopy.com^
|
|
7542
7574
|
||proudprose.com^
|
|
7543
7575
|
||psychedelicarithmetic.com^
|
|
@@ -7593,6 +7625,7 @@ omni.soundestlink.com$image
|
|
|
7593
7625
|
||rapidkittens.com^
|
|
7594
7626
|
||rarestcandy.com^
|
|
7595
7627
|
||raresummer.com^
|
|
7628
|
+
||razzweb.com^
|
|
7596
7629
|
||reactjspdf.com^
|
|
7597
7630
|
||readgoldfish.com^
|
|
7598
7631
|
||readingguilt.com^
|
|
@@ -7674,6 +7707,7 @@ omni.soundestlink.com$image
|
|
|
7674
7707
|
||ruthlessmilk.com^
|
|
7675
7708
|
||ruthlessrobin.com^
|
|
7676
7709
|
||sableloss.com^
|
|
7710
|
+
||sableshelf.com^
|
|
7677
7711
|
||sablesmile.com^
|
|
7678
7712
|
||sablesong.com^
|
|
7679
7713
|
||sadloaf.com^
|
|
@@ -7684,6 +7718,7 @@ omni.soundestlink.com$image
|
|
|
7684
7718
|
||samesticks.com^
|
|
7685
7719
|
||samestretch.com^
|
|
7686
7720
|
||samplesamba.com^
|
|
7721
|
+
||samuraibots.com^
|
|
7687
7722
|
||sandstrophies.com^
|
|
7688
7723
|
||satisfycork.com^
|
|
7689
7724
|
||satisfyingshirt.com^
|
|
@@ -7741,6 +7776,7 @@ omni.soundestlink.com$image
|
|
|
7741
7776
|
||sedatebun.com^
|
|
7742
7777
|
||seedscissors.com^
|
|
7743
7778
|
||seemlysuggestion.com^
|
|
7779
|
+
||seespice.com^
|
|
7744
7780
|
||selectionship.com^
|
|
7745
7781
|
||selectivesummer.com^
|
|
7746
7782
|
||selfishsea.com^
|
|
@@ -7767,6 +7803,7 @@ omni.soundestlink.com$image
|
|
|
7767
7803
|
||shakyseat.com^
|
|
7768
7804
|
||shakysurprise.com^
|
|
7769
7805
|
||shakytaste.com^
|
|
7806
|
+
||shallowart.com^
|
|
7770
7807
|
||shallowblade.com^
|
|
7771
7808
|
||shallowsmile.com^
|
|
7772
7809
|
||shamerain.com^
|
|
@@ -7840,6 +7877,7 @@ omni.soundestlink.com$image
|
|
|
7840
7877
|
||snakesshop.com^
|
|
7841
7878
|
||snakesstone.com^
|
|
7842
7879
|
||snappyreport.com^
|
|
7880
|
+
||snapsgate.com^
|
|
7843
7881
|
||sneakwind.com^
|
|
7844
7882
|
||sneakystew.com^
|
|
7845
7883
|
||snoresmile.com^
|
|
@@ -8045,6 +8083,8 @@ omni.soundestlink.com$image
|
|
|
8045
8083
|
||tangyamount.com^
|
|
8046
8084
|
||tangycover.com^
|
|
8047
8085
|
||tarttendency.com^
|
|
8086
|
+
||tasksimplify.com^
|
|
8087
|
+
||tasselapp.com^
|
|
8048
8088
|
||tastefulsongs.com^
|
|
8049
8089
|
||tastelesstoes.com^
|
|
8050
8090
|
||tastelesstrees.com^
|
|
@@ -8068,12 +8108,14 @@ omni.soundestlink.com$image
|
|
|
8068
8108
|
||temptteam.com^
|
|
8069
8109
|
||tendersugar.com^
|
|
8070
8110
|
||tendertest.com^
|
|
8111
|
+
||tenhourweek.com^
|
|
8071
8112
|
||terriblethumb.com^
|
|
8072
8113
|
||terrificgoose.com^
|
|
8073
8114
|
||terrifictooth.com^
|
|
8074
8115
|
||testadmiral.com^
|
|
8075
8116
|
||testedtouch.com^
|
|
8076
8117
|
||texturetrick.com^
|
|
8118
|
+
||thejavalane.com^
|
|
8077
8119
|
||therapeuticcars.com^
|
|
8078
8120
|
||thickticket.com^
|
|
8079
8121
|
||thicktrucks.com^
|
|
@@ -8163,6 +8205,7 @@ omni.soundestlink.com$image
|
|
|
8163
8205
|
||unknowncrate.com^
|
|
8164
8206
|
||unknownidea.com^
|
|
8165
8207
|
||unknowntray.com^
|
|
8208
|
+
||unloadyourself.com^
|
|
8166
8209
|
||untidyquestion.com^
|
|
8167
8210
|
||untidyrice.com^
|
|
8168
8211
|
||unusedstone.com^
|
|
@@ -8238,6 +8281,7 @@ omni.soundestlink.com$image
|
|
|
8238
8281
|
||wigglyindustry.com^
|
|
8239
8282
|
||wildcommittee.com^
|
|
8240
8283
|
||wildernesscamera.com^
|
|
8284
|
+
||wildwoodavenue.com^
|
|
8241
8285
|
||wirecomic.com^
|
|
8242
8286
|
||wiredforcoffee.com^
|
|
8243
8287
|
||wirypaste.com^
|
|
@@ -8507,6 +8551,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
8507
8551
|
||eurocounter.com^$third-party
|
|
8508
8552
|
||exapxl.de^$third-party
|
|
8509
8553
|
||faibl.org^$third-party
|
|
8554
|
+
||fairanalytics.de^$third-party
|
|
8510
8555
|
||fast-counter.net^$third-party
|
|
8511
8556
|
||fastcounter.de^$third-party
|
|
8512
8557
|
||fixcounter.com^$third-party
|
|
@@ -8533,6 +8578,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
8533
8578
|
||hung.ch^$third-party
|
|
8534
8579
|
||iivt.com^$third-party
|
|
8535
8580
|
||imcht.net^$third-party
|
|
8581
|
+
||imcounter.com^$third-party
|
|
8536
8582
|
||ingenioustech.biz^$third-party
|
|
8537
8583
|
||intelliad.de^$third-party
|
|
8538
8584
|
||interaktiv-net.de^$third-party
|
|
@@ -8648,6 +8694,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
8648
8694
|
||txt.eu^$third-party
|
|
8649
8695
|
||undom.net^$third-party
|
|
8650
8696
|
||uniconsent.com^$third-party
|
|
8697
|
+
||untho.de^$third-party
|
|
8651
8698
|
||up-rank.com^$third-party
|
|
8652
8699
|
||urstats.de^$third-party
|
|
8653
8700
|
||usage.seibert-media.io^$third-party
|
|
@@ -9011,6 +9058,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
9011
9058
|
||gsspcln.jp^$third-party
|
|
9012
9059
|
||gyro-n.com^$third-party
|
|
9013
9060
|
||h-cast.jp^$third-party
|
|
9061
|
+
||hebiichigo.com^$third-party
|
|
9014
9062
|
||hitgraph.jp^$third-party
|
|
9015
9063
|
||i-mobile.co.jp^$third-party
|
|
9016
9064
|
||i2ad.jp^$third-party
|
|
@@ -9288,6 +9336,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
9288
9336
|
||webvisor.com^$third-party
|
|
9289
9337
|
||webvisor.ru^$third-party
|
|
9290
9338
|
||wwgate.ru^$third-party
|
|
9339
|
+
||yandexmetric.com^$third-party
|
|
9291
9340
|
||zero.kz^$third-party
|
|
9292
9341
|
! Serbian
|
|
9293
9342
|
! Slovak
|
|
@@ -9345,6 +9394,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
9345
9394
|
||truehits3.gits.net.th^$third-party
|
|
9346
9395
|
! Turkish
|
|
9347
9396
|
||brainsland.com^$third-party
|
|
9397
|
+
||cunda.ai^$third-party
|
|
9348
9398
|
||elmasistatistik.com.tr^$third-party
|
|
9349
9399
|
||onlinewebstat.com^$third-party
|
|
9350
9400
|
||realist.gen.tr^$third-party
|
|
@@ -9463,7 +9513,6 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
9463
9513
|
||amazonaws.com^*/prod_analytics
|
|
9464
9514
|
||amazonpay.com/customerInsight?
|
|
9465
9515
|
||amp-error-reporting.appspot.com^
|
|
9466
|
-
||amplify.outbrain.com^$third-party
|
|
9467
9516
|
||amplifypixel.outbrain.com^
|
|
9468
9517
|
||ampproject.org/preconnect.gif
|
|
9469
9518
|
||ams-pageview-public.s3.amazonaws.com^
|
|
@@ -9518,6 +9567,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
9518
9567
|
||analytics.erepublic.com^
|
|
9519
9568
|
||analytics.fabricators.ltd^$third-party
|
|
9520
9569
|
||analytics.facebook.com^$third-party
|
|
9570
|
+
||analytics.fatmedia.io^
|
|
9521
9571
|
||analytics.favcy.com^
|
|
9522
9572
|
||analytics.firespring.com^
|
|
9523
9573
|
||analytics.foresee.com^
|
|
@@ -9581,6 +9631,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
9581
9631
|
||analytics.themarketiq.com^
|
|
9582
9632
|
||analytics.threedeepmarketing.com^
|
|
9583
9633
|
||analytics.tiktok.com^
|
|
9634
|
+
||analytics.topseotoolkit.com^
|
|
9584
9635
|
||analytics.tout.com^
|
|
9585
9636
|
||analytics.unibuddy.co^
|
|
9586
9637
|
||analytics.unilogcorp.com^
|
|
@@ -9647,6 +9698,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
9647
9698
|
||appliedsemantics.com/images/x.gif
|
|
9648
9699
|
||applovin.com/shopify/*/pixel
|
|
9649
9700
|
||appmifile.com/webfile/globalweb/stat/
|
|
9701
|
+
||apps-pbd.ctraffic.io^
|
|
9650
9702
|
||apps.omegatheme.com/facebook-pixel/
|
|
9651
9703
|
||appsolutions.com/hitme?$third-party
|
|
9652
9704
|
||appspot.com/analytics/
|
|
@@ -9669,6 +9721,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
9669
9721
|
||assets.yumpu.com/release/*/tracking.js
|
|
9670
9722
|
||assistant.watson.appdomain.cloud/analytics/
|
|
9671
9723
|
||asterpix.com/tagcloudview/
|
|
9724
|
+
||at.cbsi.com/lib/api/client-info
|
|
9672
9725
|
||at.cbsi.com^*/event?
|
|
9673
9726
|
||atcdn.co.uk/frostbite/
|
|
9674
9727
|
||atgsvcs.com/js/atgsvcs.js
|
|
@@ -9833,6 +9886,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
9833
9886
|
||cdnjs.work/metrics.js
|
|
9834
9887
|
||cdnma.com/apps/capture.js
|
|
9835
9888
|
||cdnplanet.com/static/rum/rum.js
|
|
9889
|
+
||cdns.brsrvr.com^
|
|
9836
9890
|
||ceros.com/a?data
|
|
9837
9891
|
||cf-pixelfront-analytics.widencdn.net^
|
|
9838
9892
|
||cf.overblog.com^
|
|
@@ -9966,7 +10020,6 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
9966
10020
|
||collector.automote.co.nz^
|
|
9967
10021
|
||collector.clareity.net^
|
|
9968
10022
|
||collector.contentexchange.me^$third-party
|
|
9969
|
-
||collector.dmp.cnna.io^
|
|
9970
10023
|
||collector.getyourguide.com^
|
|
9971
10024
|
||collector.mazeberry.com^
|
|
9972
10025
|
||collector.sspinc.io^
|
|
@@ -10114,7 +10167,6 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
10114
10167
|
||diagnose.igstatic.com^
|
|
10115
10168
|
||dig.ultimedia.com^
|
|
10116
10169
|
||digimedia.com/pageviews.php?
|
|
10117
|
-
||digitalgov.gov/Universal-Federated-Analytics-Min.js
|
|
10118
10170
|
||digitaloceanspaces.com/pixel/
|
|
10119
10171
|
||direct-collect.dy-api.com^
|
|
10120
10172
|
||direct-collect.dy-api.eu^
|
|
@@ -10151,11 +10203,9 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
10151
10203
|
||dynamicyield.com/var?
|
|
10152
10204
|
||e.channelexco.com^
|
|
10153
10205
|
||e.ebidtech.com/cv/
|
|
10154
|
-
||e.htplayground.com^
|
|
10155
10206
|
||ea.youmaker.com^
|
|
10156
10207
|
||early-birds.fr/tracker/
|
|
10157
10208
|
||ebayadservices.com/marketingtracking/
|
|
10158
|
-
||ebayrtm.com/rtm?RtmCmd&a=img&$image
|
|
10159
10209
|
||ec.walkme.com^
|
|
10160
10210
|
||ecomm.events^
|
|
10161
10211
|
||ecommstats.s3.amazonaws.com^
|
|
@@ -10222,7 +10272,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
10222
10272
|
||events.release.narrativ.com^$subdocument,xmlhttprequest
|
|
10223
10273
|
||events.shareably.net^
|
|
10224
10274
|
||events.splash-screen.net^
|
|
10225
|
-
||events.split.io
|
|
10275
|
+
||events.split.io^$domain=~collegeboard.org
|
|
10226
10276
|
||events.storifyme.com^
|
|
10227
10277
|
||events.tryamped.com^
|
|
10228
10278
|
||events.tubecup.org^
|
|
@@ -10311,6 +10361,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
10311
10361
|
||foureyes.io/fe-init.js
|
|
10312
10362
|
||fourmtagservices.appspot.com^
|
|
10313
10363
|
||fp-cdn.azureedge.net^
|
|
10364
|
+
||fp-it-acc.portal101.cn/deviceprofile/
|
|
10314
10365
|
||freecurrencyrates.com/statgif.
|
|
10315
10366
|
||freedom.com^*/analytic/
|
|
10316
10367
|
||freedom.com^*/analytics/
|
|
@@ -10467,6 +10518,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
10467
10518
|
||hub.reacti.co/index.js
|
|
10468
10519
|
||hubspot.com/analytics/
|
|
10469
10520
|
||hubspot.com/cs/loader-v2.js
|
|
10521
|
+
||hubspot.com/img/trackers/
|
|
10470
10522
|
||hubspot.com/tracking/
|
|
10471
10523
|
||hubspot.com/usage-logging/
|
|
10472
10524
|
||hushforms.com/visitorid?
|
|
@@ -10771,7 +10823,6 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
10771
10823
|
||metrix.emagister.com^
|
|
10772
10824
|
||mgmlcdn.com/stats/
|
|
10773
10825
|
||minutemediacdn.com/campaign-manager-client/
|
|
10774
|
-
||mircheigeshoa.com/prod/smi/fp.min.js
|
|
10775
10826
|
||mixpanel.com/track?
|
|
10776
10827
|
||mj-snowplow-static-js.s3.amazonaws.com^
|
|
10777
10828
|
||mkcms.com/stats.js
|
|
@@ -10916,7 +10967,6 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
10916
10967
|
||ora.tv/j/ora_evttracking.js
|
|
10917
10968
|
||orb.ee/collect
|
|
10918
10969
|
||ordergroove.com/log/offer?
|
|
10919
|
-
||organiccdn.io/assets/sdk/monitor.unit-sdk.js
|
|
10920
10970
|
||organicfruitapps.com/analytics/
|
|
10921
10971
|
||orts.wixawin.com^$third-party
|
|
10922
10972
|
||osano.com/js/?action_name=
|
|
@@ -10977,6 +11027,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
10977
11027
|
||photobox.com/logs
|
|
10978
11028
|
||phrasetech.com/api/collect
|
|
10979
11029
|
||pi.ispot.tv^
|
|
11030
|
+
||pi.pardot.com/analytics?
|
|
10980
11031
|
||piano.io/api/v3/customform/log/impression
|
|
10981
11032
|
||piano.io/tracker/
|
|
10982
11033
|
||pico.tools/metrics/
|
|
@@ -11193,6 +11244,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
11193
11244
|
||s.pinimg.com/ct/core.js
|
|
11194
11245
|
||s.srvsynd.com^
|
|
11195
11246
|
||s.vibe.co^
|
|
11247
|
+
||s3.amazonaws.com/www.audiencenetwork.ai/
|
|
11196
11248
|
||sa.scorpion.co^
|
|
11197
11249
|
||saasexch.com/bapi/fe/usd/report/
|
|
11198
11250
|
||safe-iplay.com/logger
|
|
@@ -11284,7 +11336,6 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
11284
11336
|
||solutions.invocacdn.com^
|
|
11285
11337
|
||souisa.com/analytics/
|
|
11286
11338
|
||soundestlink.com/rest/forms/v2/track/
|
|
11287
|
-
||soundestlink.com/REST/forms/v2/track/view?
|
|
11288
11339
|
||sourceforge.net/tracker/$~xmlhttprequest
|
|
11289
11340
|
||sp-wukong-tracker.b-cdn.net^
|
|
11290
11341
|
||sp.tinymce.com^
|
|
@@ -11338,6 +11389,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
11338
11389
|
||stats.bitgravity.com^
|
|
11339
11390
|
||stats.bluebillywig.com^
|
|
11340
11391
|
||stats.bradmax.com^
|
|
11392
|
+
||stats.bunkr.ru^
|
|
11341
11393
|
||stats.callnowbutton.com^
|
|
11342
11394
|
||stats.cmcigroup.com^
|
|
11343
11395
|
||stats.curds.io^
|
|
@@ -11382,10 +11434,12 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
11382
11434
|
||stats.wp.com^
|
|
11383
11435
|
||stats.wpmucdn.com^
|
|
11384
11436
|
||stats.zotabox.com^
|
|
11437
|
+
||stats2.indianpornempire.com^
|
|
11385
11438
|
||statsadv.dadapro.com^$third-party
|
|
11386
11439
|
||statsapi.screen9.com^
|
|
11387
11440
|
||statscollector-1.agora.io^
|
|
11388
11441
|
||statscollector.sd-rtn.com^
|
|
11442
|
+
||statsig.anthropic.com^
|
|
11389
11443
|
||statsjs.klevu.com^
|
|
11390
11444
|
||statt-collect.herokuapp.com^
|
|
11391
11445
|
||stg-data-collector.playbuzz.com^
|
|
@@ -11422,7 +11476,6 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
11422
11476
|
||swiftypecdn.com/cc.js$third-party
|
|
11423
11477
|
||swiftypecdn.com/te.js$third-party
|
|
11424
11478
|
||sync.adap.tv^
|
|
11425
|
-
||sync.outbrain.com^$third-party
|
|
11426
11479
|
||synergizeonline.net/trackpoint/
|
|
11427
11480
|
||system-beta.b-cdn.net^
|
|
11428
11481
|
||syteapi.com/et?
|
|
@@ -11616,6 +11669,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
11616
11669
|
||tracker.nitropay.com^
|
|
11617
11670
|
||tracker.nocodelytics.com^
|
|
11618
11671
|
||tracker.novage.com.ua^
|
|
11672
|
+
||tracker.prod.ams3.k8s.hyperia.sk^
|
|
11619
11673
|
||tracker.services.vaix.ai^
|
|
11620
11674
|
||tracker.smartframe.io^
|
|
11621
11675
|
||tracker.softcube.com^
|
|
@@ -11766,6 +11820,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
11766
11820
|
||userway.org/api/v1/stats
|
|
11767
11821
|
||usizy.com/external/pageview
|
|
11768
11822
|
||usr.interactiveone.com^
|
|
11823
|
+
||utics.nodejibi.in^
|
|
11769
11824
|
||utils.global-e.com/set?
|
|
11770
11825
|
||utt.pm/utm/
|
|
11771
11826
|
||v.shopify.com^
|
|
@@ -11781,6 +11836,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
11781
11836
|
||veeseo.com/tracking/
|
|
11782
11837
|
||ventunotech.com/beacon/
|
|
11783
11838
|
||vercel-vitals.axiom.co^
|
|
11839
|
+
||vid.media.cm/m.js
|
|
11784
11840
|
||vidazoo.com/aggregate?
|
|
11785
11841
|
||vidazoo.com/event/
|
|
11786
11842
|
||video-ad-stats.googlesyndication.com^
|
|
@@ -11837,6 +11893,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
11837
11893
|
||wds.weqs.me^
|
|
11838
11894
|
||weather.ca/counter.gif?
|
|
11839
11895
|
||web-tracker.smsbump.com^
|
|
11896
|
+
||web.valiuz.com^*/tag.js
|
|
11840
11897
|
||web1.51.la^
|
|
11841
11898
|
||webcare.byside.com/agent/usert_agent.php
|
|
11842
11899
|
||webedia.fr/js/gs.js
|
|
@@ -11904,6 +11961,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
11904
11961
|
||yahoo.co.jp/js/s_retargeting.js
|
|
11905
11962
|
||yahoo.com/sync/casale/
|
|
11906
11963
|
||yandex.*/data?referrer=
|
|
11964
|
+
||yandex.ru/an/rtbcount/
|
|
11907
11965
|
||yandex.ru/click/
|
|
11908
11966
|
||yandex.ru/cycounter?
|
|
11909
11967
|
||yarpp.org/pixels/
|
|
@@ -11977,7 +12035,6 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
11977
12035
|
||d1t9uctetvi0tu.cloudfront.net^
|
|
11978
12036
|
||d1tbj6eaenapdy.cloudfront.net^
|
|
11979
12037
|
||d1vg5xiq7qffdj.cloudfront.net^
|
|
11980
|
-
||d1wix2gc2cgqis.cloudfront.net^
|
|
11981
12038
|
||d1xfq2052q7thw.cloudfront.net^
|
|
11982
12039
|
||d1z3r0i09bwium.cloudfront.net^
|
|
11983
12040
|
||d1z9vm58yath60.cloudfront.net^
|
|
@@ -12177,7 +12234,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
12177
12234
|
||guarantee-cdn.com^$third-party
|
|
12178
12235
|
||howsmyssl.com^$third-party
|
|
12179
12236
|
||js.trendmd.com^$script,subdocument,third-party
|
|
12180
|
-
||legitscript.com/seals
|
|
12237
|
+
||legitscript.com/seals/$script
|
|
12181
12238
|
||medals.bizrate.com^$third-party
|
|
12182
12239
|
||nsg.symantec.com^$third-party
|
|
12183
12240
|
||popup.laybuy.com^$subdocument,third-party
|
|
@@ -12313,7 +12370,6 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
12313
12370
|
||plausible.ams.to^
|
|
12314
12371
|
||plista.com/getuid?
|
|
12315
12372
|
||plista.com/iframeShowItem.php
|
|
12316
|
-
||prod-mhaa.mhtr.be/public/tr/tracker.min.js
|
|
12317
12373
|
||px.staticfiles.at^
|
|
12318
12374
|
||quiz.stroeermediabrands.de/pub/$image
|
|
12319
12375
|
||retrack.q-divisioncdn.de^
|
|
@@ -12823,7 +12879,6 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
12823
12879
|
||bvr.ast.snva.jp^
|
|
12824
12880
|
||bvr.snva.jp^
|
|
12825
12881
|
||c-rings.net^$script,third-party
|
|
12826
|
-
||cdn.ad-platform.jmty.jp^
|
|
12827
12882
|
||client-log.karte.io^
|
|
12828
12883
|
||clipkit.co/clipkit_assets/beacon-
|
|
12829
12884
|
||cloudfunctions.net/trackEvent
|
|
@@ -12836,7 +12891,6 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
12836
12891
|
||cv-tracker.stanby.com^
|
|
12837
12892
|
||delivery.satr.jp/event/
|
|
12838
12893
|
||docomo.ne.jp/scripts/retargeting/retargeting.js
|
|
12839
|
-
||e-nls.com/disp_cnt.php
|
|
12840
12894
|
||estore.jp/beacon/
|
|
12841
12895
|
||ev.tpocdm.com^
|
|
12842
12896
|
||flux-cdn.com/client/ukiuki/flux_wikiwiki_AS_TM_AT.min.js
|
|
@@ -13040,6 +13094,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
13040
13094
|
||nctrk.abmail.com.br^
|
|
13041
13095
|
||netdeal.com.br/open/event/
|
|
13042
13096
|
||neurotrack.neurolake.io^
|
|
13097
|
+
||pageviews.tray.com.br^
|
|
13043
13098
|
||sat.soluall.net^
|
|
13044
13099
|
||segmentor.snowfox-ai.com^
|
|
13045
13100
|
||statig.com.br/pub/setCookie.js?
|
|
@@ -13047,6 +13102,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
13047
13102
|
||stats.gridmidia.com.br^
|
|
13048
13103
|
||tags.cmp.tail.digital^
|
|
13049
13104
|
||terra.com.br/metrics/
|
|
13105
|
+
||tiktok.tray.com.br^
|
|
13050
13106
|
||track.noddus.com^
|
|
13051
13107
|
||track.zapimoveis.com.br^
|
|
13052
13108
|
||tracker.tolvnow.com^
|
|
@@ -13114,6 +13170,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
13114
13170
|
||kvartirant.ru/counter.php?
|
|
13115
13171
|
||likemore-go.imgsmail.ru^$image
|
|
13116
13172
|
||linestudio.ru/counter/
|
|
13173
|
+
||logs.adplay.ru^
|
|
13117
13174
|
||logs.viavideo.digital^
|
|
13118
13175
|
||mail.ru/cm.gif?
|
|
13119
13176
|
||mango-office.ru/calltracking/
|
|
@@ -13148,6 +13205,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
13148
13205
|
||st.hbrd.io^
|
|
13149
13206
|
||stainlesssteel.ru/counter.php?
|
|
13150
13207
|
||stat.eagleplatform.com^
|
|
13208
|
+
||stat.fly.codes^
|
|
13151
13209
|
||stat.rum.cdnvideo.ru^
|
|
13152
13210
|
||stat.sputnik.ru^
|
|
13153
13211
|
||stat.tvigle.ru^
|
|
@@ -13239,6 +13297,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
13239
13297
|
||track.tappx.com^
|
|
13240
13298
|
||tracker.thinkindot.com^
|
|
13241
13299
|
||tracking.smartmeapp.com^
|
|
13300
|
+
||tracking.univtec.com^
|
|
13242
13301
|
||trsbf.com/static/fbs.min.js
|
|
13243
13302
|
||webpixel.smartmeapp.com^
|
|
13244
13303
|
! Swedish
|
|
@@ -13265,6 +13324,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
13265
13324
|
||c.keltis.com^
|
|
13266
13325
|
||collector.wawlabs.com^
|
|
13267
13326
|
||daioncdn.net/events?
|
|
13327
|
+
||eticaret.pro/pixel/
|
|
13268
13328
|
||hulyagedikci.com/vhit.php?
|
|
13269
13329
|
||iyzipay.com/buyer-protection/assets/js/analytics.js
|
|
13270
13330
|
||izinal.com/log
|
|
@@ -13494,6 +13554,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
13494
13554
|
||beacon.shutterfly.com^
|
|
13495
13555
|
||beacon.walmart.com^
|
|
13496
13556
|
||beacon.wikia-services.com^
|
|
13557
|
+
||beacons.digital.disneyadvertising.com^
|
|
13497
13558
|
||bearblog.dev/hit/
|
|
13498
13559
|
||beforeitsnews.com/core/ajax/counter/count.php^
|
|
13499
13560
|
||behance.net/log
|
|
@@ -13567,6 +13628,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
13567
13628
|
||change.org/api-proxy/-/et
|
|
13568
13629
|
||change.org/api-proxy/-/event_tracker
|
|
13569
13630
|
||channel.io/front/v*/channels/*/events
|
|
13631
|
+
||chat.deepseek.com/api/v0/events
|
|
13570
13632
|
||chatfuel.com/cf-analytics/
|
|
13571
13633
|
||chatgpt.com/ces/v1/t
|
|
13572
13634
|
||chatroll.com/t.gif
|
|
@@ -13575,12 +13637,15 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
13575
13637
|
||chronicle.medal.tv^
|
|
13576
13638
|
||cidrap.umn.edu/core/modules/statistics
|
|
13577
13639
|
||cisco.com/c/dam/cdc/j/at.js
|
|
13640
|
+
||civitai.com/api/page-view
|
|
13641
|
+
||civitai.com/api/trpc/track.addView
|
|
13578
13642
|
||cl.canva.com^
|
|
13579
13643
|
||cl.t3n.de^
|
|
13580
13644
|
||clanker-events.squarespace.com^
|
|
13581
13645
|
||clarice.streema.com^
|
|
13582
13646
|
||classdojo.com/logs/
|
|
13583
13647
|
||classistatic.com^*/js/lib/prebid-7.5.0.min.js$script,domain=kijiji.ca
|
|
13648
|
+
||claude.ai/sentry^
|
|
13584
13649
|
||click.aliexpress.com^$image
|
|
13585
13650
|
||click.nudevista.com^
|
|
13586
13651
|
||clickindia.com/cimem/ad-post-ajax.php?FormName=browsingHistory
|
|
@@ -13590,6 +13655,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
13590
13655
|
||cloudfront.net/tracker-latest.min.js
|
|
13591
13656
|
||cloudfront.net/vis_opt.js
|
|
13592
13657
|
||cloudfront.net/vis_opt_no_jquery.js
|
|
13658
|
+
||cloudzilla.ai/ingest/
|
|
13593
13659
|
||clp-mms.cloudpro.co.uk^
|
|
13594
13660
|
||cm-mms.coachmag.co.uk^
|
|
13595
13661
|
||cm.nordvpn.com^
|
|
@@ -13730,7 +13796,6 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
13730
13796
|
||dropbox.com/2/client_metrics
|
|
13731
13797
|
||dropbox.com/2/pap_event_logging
|
|
13732
13798
|
||dropbox.com/alternate_
|
|
13733
|
-
||dropbox.com/csp_log?
|
|
13734
13799
|
||dropbox.com/jse
|
|
13735
13800
|
||dropbox.com/log/
|
|
13736
13801
|
||dropbox.com/log_js_sw_data
|
|
@@ -13754,6 +13819,10 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
13754
13819
|
||ea.epochbase.com^
|
|
13755
13820
|
||ebay.com/delstats/
|
|
13756
13821
|
||ebay.com^*/customer_image_service?
|
|
13822
|
+
||ebay.com^*/madrona_loadscripts.js
|
|
13823
|
+
||ebaystatic.com/cr/v/c01/c54e60e1-996e-4a53-a314-f44a6b151b40.min.js
|
|
13824
|
+
||ebaystatic.com/cr/v/c01/nh24082119176031f8a0afcb42d.js
|
|
13825
|
+
||ebaystatic.com/cr/v/c01/ubt241024192c097b9ddc0a81e0a.js
|
|
13757
13826
|
||ebaystatic.com^*tracking/configuration.js
|
|
13758
13827
|
||ec.thredup.com^
|
|
13759
13828
|
||edge.staging.fullstory.com^
|
|
@@ -13804,6 +13873,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
13804
13873
|
||events-tracker.deliveroo.net^
|
|
13805
13874
|
||events.api.godaddy.com^
|
|
13806
13875
|
||events.baselime.io^
|
|
13876
|
+
||events.bsky.app^
|
|
13807
13877
|
||events.character.ai^
|
|
13808
13878
|
||events.clips4sale.com^
|
|
13809
13879
|
||events.framer.com^
|
|
@@ -13856,9 +13926,9 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
13856
13926
|
||femetrics.grammarly.io^
|
|
13857
13927
|
||fgn-plausible.serverable.com^
|
|
13858
13928
|
||figma.com/api/figment-proxy/
|
|
13929
|
+
||figma.com/api/web_logger/
|
|
13859
13930
|
||filext.com/pageview^
|
|
13860
13931
|
||findmatches.com/bts.js
|
|
13861
|
-
||findmatches.com/t/tr/lp/intg.js?
|
|
13862
13932
|
||findmatches.com/tri?tid=
|
|
13863
13933
|
||fingerprint.com/events/
|
|
13864
13934
|
||fingerprintjs.com/visitors/
|
|
@@ -13953,6 +14023,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
13953
14023
|
||goodreads.com/report_metric
|
|
13954
14024
|
||goodreads.com/track/
|
|
13955
14025
|
||google.com/ads/measurement/
|
|
14026
|
+
||google.com/async/ddllog
|
|
13956
14027
|
||google.com/dssw.js
|
|
13957
14028
|
||google.com/images/phd/px.gif
|
|
13958
14029
|
||google.com/log?
|
|
@@ -14156,6 +14227,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
14156
14227
|
||loom.com/metrics/graphql
|
|
14157
14228
|
||lowes.com/gauge/
|
|
14158
14229
|
||lowes.com/pharos/api/webTelemetry?
|
|
14230
|
+
||lucida.su/api/event
|
|
14159
14231
|
||lyft.com/api/track
|
|
14160
14232
|
||lyngsat.com/system/loadclick.js
|
|
14161
14233
|
||m.facebook.com/ajax/weblite_load_logging/
|
|
@@ -14219,6 +14291,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
14219
14291
|
||mi.grubhub.com^
|
|
14220
14292
|
||miao.baidu.com^
|
|
14221
14293
|
||midas.chase.com^
|
|
14294
|
+
||mixpanel-proxy.coingecko.com^
|
|
14222
14295
|
||mixpanel-proxy.ted.com^
|
|
14223
14296
|
||mixproxy.epoch.cloud^$domain=theepochtimes.com
|
|
14224
14297
|
||mktcs.cloudapps.cisco.com^
|
|
@@ -14321,6 +14394,8 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
14321
14394
|
||p.ctpost.com/article?
|
|
14322
14395
|
||p.hentaiforce.net^
|
|
14323
14396
|
||p.minds.com^
|
|
14397
|
+
||p.ost2.fyi/courses/*/save_user_state
|
|
14398
|
+
||p.ost2.fyi/event^
|
|
14324
14399
|
||p.sfx.ms/is/invis.gif
|
|
14325
14400
|
||pac.thescottishsun.co.uk^
|
|
14326
14401
|
||pac.thesun.co.uk^
|
|
@@ -14343,6 +14418,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
14343
14418
|
||ph.thenextweb.com^
|
|
14344
14419
|
||phonearena.com/_track.php
|
|
14345
14420
|
||pi.ai/proxy/api/event
|
|
14421
|
+
||pie.org/g/collect?
|
|
14346
14422
|
||pikbest.com/?m=Stats&
|
|
14347
14423
|
||ping.hashnode.com^
|
|
14348
14424
|
||ping.hungama.com^
|
|
@@ -14375,6 +14451,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
14375
14451
|
||playvideohd.com/cdn-cgi/trace
|
|
14376
14452
|
||plenty.vidio.com^
|
|
14377
14453
|
||plushd.bio/cdn-cgi/trace
|
|
14454
|
+
||pluto.smallpdf.com^
|
|
14378
14455
|
||pm.dailykos.com^
|
|
14379
14456
|
||pm.geniusmonkey.com^
|
|
14380
14457
|
||pog.com^$ping
|
|
@@ -14480,6 +14557,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
14480
14557
|
||rvo-cohesion.healthline.com^
|
|
14481
14558
|
||s.gofile.io^
|
|
14482
14559
|
||s.infogram.com^
|
|
14560
|
+
||s.smallpdf.com/static/track-js-
|
|
14483
14561
|
||s.wayfair.com^
|
|
14484
14562
|
||sa.uswitch.com^
|
|
14485
14563
|
||saa.insideedition.com^
|
|
@@ -14500,6 +14578,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
14500
14578
|
||searchiq.co/api/tr?
|
|
14501
14579
|
||secure.checkout.visa.com/logging/
|
|
14502
14580
|
||seekingalpha.com/mone_event
|
|
14581
|
+
||service.techzine.eu^
|
|
14503
14582
|
||services.haaretz.com/ds/impression
|
|
14504
14583
|
||services.haaretz.com/ms-gstat-campaign/
|
|
14505
14584
|
||servo-report.dvdfab.
|
|
@@ -14531,7 +14610,6 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
14531
14610
|
||slickdeals.net/ajax/stats/
|
|
14532
14611
|
||slideshare.net/frontend_tracking/
|
|
14533
14612
|
||slipstream.skyscanner.net^
|
|
14534
|
-
||smallpdf.com/build/track-js.js
|
|
14535
14613
|
||smartlink-api.amuse.io/api/analytics/
|
|
14536
14614
|
||smassets.net/assets/anonweb/anonweb-click-
|
|
14537
14615
|
||smetrics.couponcabin.com^
|
|
@@ -14747,6 +14825,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
14747
14825
|
||thesun.co.uk/assets/client/newrelicExperimentTracking~
|
|
14748
14826
|
||thesun.ie/track?
|
|
14749
14827
|
||thetimes.co.uk/track?
|
|
14828
|
+
||thetruth.com/pd.js
|
|
14750
14829
|
||thewindowsclub.com/wp-content/themes/genesis/lib/js/skip-links.min.js
|
|
14751
14830
|
||thisiswhyimbroke.com/api/user/gift-guide-thumbnail-homepage/tracking
|
|
14752
14831
|
||thisiswhyimbroke.com/api/user/tracking
|
|
@@ -14853,6 +14932,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
14853
14932
|
||twitter.com^*/log.json
|
|
14854
14933
|
||tyler-brown.com/api/stats?
|
|
14855
14934
|
||typepad.com/t/stats?
|
|
14935
|
+
||ua.financialexpress.com/api/capture
|
|
14856
14936
|
||ua.indianexpress.com^
|
|
14857
14937
|
||uber.com/_events
|
|
14858
14938
|
||uber.com/_track
|
|
@@ -14899,6 +14979,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
14899
14979
|
||vimeo.com/ablincoln/
|
|
14900
14980
|
||vimeocdn.com/js_opt/logging_combined.min.js
|
|
14901
14981
|
||visualstudio.com/v2/track
|
|
14982
|
+
||vivaldi.*/rep/rep.js
|
|
14902
14983
|
||vizcloud.co/ping/
|
|
14903
14984
|
||vk.com/al_video.php?act=ads_stat
|
|
14904
14985
|
||vk.com/al_video.php?act=inc_view_counter
|
|
@@ -14930,6 +15011,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
14930
15011
|
||walmart.ca/api/landing-page/beacon-logger
|
|
14931
15012
|
||walmartimages.com/dfw/4ff9c6c9-d9a0/$domain=walmart.com
|
|
14932
15013
|
||wapn1.flosports.tv^
|
|
15014
|
+
||watchadsontape.com/stat/
|
|
14933
15015
|
||wattpad.com/js/tracker/app.
|
|
14934
15016
|
||wc.yahoodns.net^$image
|
|
14935
15017
|
||wccftech.com/cnt7vfDVvWa3.js
|
|
@@ -15031,6 +15113,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
15031
15113
|
||zalando-prive.*/api/tracking/
|
|
15032
15114
|
||zappos.com/err.cgi?
|
|
15033
15115
|
||zappos.com/karakoram/js/main.
|
|
15116
|
+
||zed.dev/api/send_page_event
|
|
15034
15117
|
||zenimpact.io/dist/zen_init.min.js
|
|
15035
15118
|
||zerohedge.com/statistics-ajax?
|
|
15036
15119
|
||zillowstatic.com/contact-pixel/$image,domain=zillow.com
|
|
@@ -15106,9 +15189,11 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
15106
15189
|
||ebaystatic.com/rs/v/klminxoj1uyzvo0p0qu4nhpg0qo.js
|
|
15107
15190
|
||ebaystatic.com/rs/v/s0hteylevy4bpkd12dvkd4yi5ms.js
|
|
15108
15191
|
||event.evtm.53.com^
|
|
15192
|
+
||feross.org/views
|
|
15109
15193
|
||idstatus.sky.com^
|
|
15110
15194
|
||img2021.navyfederal.org^
|
|
15111
15195
|
||imgs.signifyd.com^
|
|
15196
|
+
||log-185a61e7.bendigobank.com.au^
|
|
15112
15197
|
||mfasa.chase.com/auth/js/jpmc_bb_check.js
|
|
15113
15198
|
||olacontent.schwab.com^$script
|
|
15114
15199
|
||qfp.intuit.com^
|
|
@@ -15122,6 +15207,7 @@ $third-party,xmlhttprequest,domain=opensubtitles.org
|
|
|
15122
15207
|
||u47.pnc.com^
|
|
15123
15208
|
||w-profiling.cibc.com^$script
|
|
15124
15209
|
||w-profiling.simplii.com^
|
|
15210
|
+
||wup-185a61e7.bendigobank.com.au^
|
|
15125
15211
|
! Fingerprint
|
|
15126
15212
|
||bankofamerica.com/cookie-id.js
|
|
15127
15213
|
||bup.bankofamerica.com^
|
|
@@ -15307,6 +15393,7 @@ $csp=child-src 'none'; frame-src *; worker-src 'none',domain=thepiratebay.org|vi
|
|
|
15307
15393
|
||worthpoint.com/lIUjcOwl/init.js
|
|
15308
15394
|
||www.digikey.*/lO2Z493J/init.js
|
|
15309
15395
|
||www.mouser.*/4UAZUiaI/init.js
|
|
15396
|
+
||yeti.com/T1p5rBaN/init.js
|
|
15310
15397
|
||zazzle.ca/botdefender/init.js
|
|
15311
15398
|
||zazzle.ca/svc/px
|
|
15312
15399
|
||zazzle.co.nz/botdefender/init.js
|
|
@@ -15333,8 +15420,10 @@ $csp=child-src 'none'; frame-src *; worker-src 'none',domain=thepiratebay.org|vi
|
|
|
15333
15420
|
||pcoptimizedsettings.com/wp-content/plugins/koko-analytics/$script,redirect=noop.js,important
|
|
15334
15421
|
||pcoptimizedsettings.com/wp-content/uploads/breeze/google/gtag.js$script,redirect=noop.js,important
|
|
15335
15422
|
! GPC
|
|
15336
|
-
uber.com,jdsports.com,engadget.com,yahoo.com,techcrunch.com,rivals.com,kkrt.com,crunchyroll.com,dnb.com,dnb.co.uk,weather.com,ubereats.com##+js(set, Navigator.prototype.globalPrivacyControl, false)
|
|
15337
|
-
uber.com,jdsports.com,engadget.com,yahoo.com,techcrunch.com,rivals.com,kkrt.com,crunchyroll.com,dnb.com,dnb.co.uk,weather.com,ubereats.com##+js(set, navigator.globalPrivacyControl, false)
|
|
15423
|
+
ticketmaster.*,livewithkellyandmark.com,visible.com,porsche.com,uber.com,jdsports.com,engadget.com,yahoo.com,techcrunch.com,rivals.com,kkrt.com,crunchyroll.com,dnb.com,dnb.co.uk,weather.com,ubereats.com##+js(set, Navigator.prototype.globalPrivacyControl, false)
|
|
15424
|
+
ticketmaster.*,livewithkellyandmark.com,visible.com,porsche.com,uber.com,jdsports.com,engadget.com,yahoo.com,techcrunch.com,rivals.com,kkrt.com,crunchyroll.com,dnb.com,dnb.co.uk,weather.com,ubereats.com##+js(set, navigator.globalPrivacyControl, false)
|
|
15425
|
+
! Clear GPC storage item
|
|
15426
|
+
visible.com##+js(set-local-storage-item, browser-ids, $remove$)
|
|
15338
15427
|
! server-side GTM
|
|
15339
15428
|
bolighub.dk##+js(acs, document.getElementsByTagName, gtm.js)
|
|
15340
15429
|
! chartbeat.js redirect
|
|
@@ -15361,16 +15450,6 @@ abema.tv##^script:has-text(NREUM)
|
|
|
15361
15450
|
!#else
|
|
15362
15451
|
abema.tv##+js(rmnt, script, NREUM)
|
|
15363
15452
|
!#endif
|
|
15364
|
-
://coomer.su^$xhr,method=patch|post
|
|
15365
|
-
://kemono.su^$xhr,method=patch|post
|
|
15366
|
-
@@/^https:\/\/coomer\.su\/api\/v1\/(?:fansly|onlyfans)\/user\/[-.0-9A-Z_a-z]+\/post\/[-0-9A-Za-z]+(?:\/flag)?$/$xhr,1p,match-case,method=post
|
|
15367
|
-
@@/^https:\/\/coomer\.su\/api\/v1\/favorites\/creator\/(?:fansly|onlyfans)\/[-.0-9A-Z_a-z]+$/$xhr,1p,match-case,method=post
|
|
15368
|
-
@@/^https:\/\/coomer\.su\/api\/v1\/favorites\/post\/(?:fansly|onlyfans)\/[-.0-9A-Z_a-z]+\/\d+$/$xhr,1p,match-case,method=post
|
|
15369
|
-
@@/^https:\/\/kemono\.su\/api\/v1\/(?:afdian|boosty|discord|dlsite|fan(?:box|tia)|gumroad|onlyfans|patreon|subscribestar)\/user\/[-.0-9A-Z_a-z]+\/post\/[-0-9A-Za-z]+(?:\/flag)?$/$xhr,1p,match-case,method=post
|
|
15370
|
-
@@/^https:\/\/kemono\.su\/api\/v1\/favorites\/creator\/(?:afdian|boosty|discord|dlsite|fan(?:box|tia)|gumroad|onlyfans|patreon|subscribestar)\/[-.0-9A-Z_a-z]+$/$xhr,1p,match-case,method=post
|
|
15371
|
-
@@/^https:\/\/kemono\.su\/api\/v1\/favorites\/post\/(?:afdian|boosty|discord|dlsite|fan(?:box|tia)|gumroad|onlyfans|patreon|subscribestar)\/[-.0-9A-Z_a-z]+\/[0-9A-Za-z]+$/$xhr,1p,match-case,method=post
|
|
15372
|
-
@@||coomer.su/.well-known/ddos-guard/mark/|
|
|
15373
|
-
@@||kemono.su/.well-known/ddos-guard/mark/|
|
|
15374
15453
|
! phileweb.com
|
|
15375
15454
|
||clarity.ms/tag/$script,domain=phileweb.com,important
|
|
15376
15455
|
phileweb.com##+js(set-attr, span[class] img.lazyload[width], src, [data-src])
|
|
@@ -17049,8 +17128,6 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
17049
17128
|
||web.hikari-softbank.com^
|
|
17050
17129
|
||web.life-cw.com^
|
|
17051
17130
|
||webtest.lpio.jp^
|
|
17052
|
-
||www.a8clk.amelia.ne.jp^
|
|
17053
|
-
||www.a8clk.kanagawa-zero.com^
|
|
17054
17131
|
||yoiku-sub.yoiku.support^
|
|
17055
17132
|
|
|
17056
17133
|
! *** easylist:easyprivacy/easyprivacy_specific_cname_plausible.txt ***
|
|
@@ -18092,7 +18169,6 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
18092
18169
|
||zug.sbb.ch^
|
|
18093
18170
|
|
|
18094
18171
|
! *** easylist:easyprivacy/easyprivacy_specific_cname_adobe.txt ***
|
|
18095
|
-
||000scripps.hb.omtrdc.net^
|
|
18096
18172
|
||0tfsd2rwwu3xjstb.edge41.testandtarget.omniture.com^
|
|
18097
18173
|
||1ps6e7sort397gy9.edge46.testandtarget.omniture.com^
|
|
18098
18174
|
||20.edge46.testandtarget.omniture.com^
|
|
@@ -19906,7 +19982,6 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
19906
19982
|
||lp.email-kpn.cjm.adobe.com^
|
|
19907
19983
|
||lp.email-lightroom.cjm.adobe.com^
|
|
19908
19984
|
||lp.email-merkle.cjm.adobe.com^
|
|
19909
|
-
||lp.go2.ringcentral.com^
|
|
19910
19985
|
||lp.hol1.demoamericas275.adobe.com^
|
|
19911
19986
|
||lp.hol10.demoamericas275.adobe.com^
|
|
19912
19987
|
||lp.hol11.demoamericas275.adobe.com^
|
|
@@ -26417,7 +26492,6 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
26417
26492
|
||ssl.o.univadis.fr^
|
|
26418
26493
|
||ssl.o.univadis.it^
|
|
26419
26494
|
||ssl.o.vitals.com^
|
|
26420
|
-
||ssl.o.webmd.com^
|
|
26421
26495
|
||ssl.o.webmdrx.com^
|
|
26422
26496
|
||ssl.sciencechannel.com^
|
|
26423
26497
|
||sslanalytics.sixt.co.uk^
|
|
@@ -26963,7 +27037,6 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
26963
27037
|
||std.o.medicinenet.com^
|
|
26964
27038
|
||std.o.medscape.com^
|
|
26965
27039
|
||std.o.rxlist.com^
|
|
26966
|
-
||std.o.webmd.com^
|
|
26967
27040
|
||stel.telegraaf.nl^
|
|
26968
27041
|
||stereos2.crutchfield.com^
|
|
26969
27042
|
||stereos2s.crutchfield.ca^
|
|
@@ -27616,7 +27689,6 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
27616
27689
|
||visitor.novartisoncology.us^
|
|
27617
27690
|
||visualscience.external.bbc.co.uk^
|
|
27618
27691
|
||vs.target.com^
|
|
27619
|
-
||w.smobile.wotif.com^
|
|
27620
27692
|
||w88.abc.com^
|
|
27621
27693
|
||w88.disneynow.com^
|
|
27622
27694
|
||w88.espn.com^
|
|
@@ -27717,15 +27789,11 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
27717
27789
|
||www-sadobe.anabuki-community.com^
|
|
27718
27790
|
||www-sadobe.anabuki.co.jp^
|
|
27719
27791
|
||www-smt.daiichisankyo-hc.co.jp^
|
|
27720
|
-
||www.metrics.argos.co.uk^
|
|
27721
27792
|
||www.metrics.bankaustria.at^
|
|
27722
27793
|
||www.notice.assurancewireless.com^
|
|
27723
27794
|
||www.notice.metrobyt-mobile.com^
|
|
27724
27795
|
||www.notice.t-mobile.com^
|
|
27725
|
-
||www.smetrics.argos.co.uk^
|
|
27726
27796
|
||www.smetrics.imedeen.us^
|
|
27727
|
-
||www.sstats.bnpparibasfortis.be^
|
|
27728
|
-
||www.sstats.hellobank.be^
|
|
27729
27797
|
||www1.discountautomirrors.com^
|
|
27730
27798
|
||www15.jedora.com^
|
|
27731
27799
|
||www15.jtv.com^
|
|
@@ -30104,13 +30172,10 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
30104
30172
|
||advtek.actonservice.com^
|
|
30105
30173
|
||ae.cobweb.com^
|
|
30106
30174
|
||aeromark.actonservice.com^
|
|
30107
|
-
||africa.promo.skf.com^
|
|
30108
|
-
||africafr.promo.skf.com^
|
|
30109
30175
|
||aftermath.actonservice.com^
|
|
30110
30176
|
||afterschoolallstars.actonservice.com^
|
|
30111
30177
|
||agcs-knowledge.allianz.com^
|
|
30112
30178
|
||agvinfo.kollmorgen.com^
|
|
30113
|
-
||ai.promo.skf.com^
|
|
30114
30179
|
||aicipc.actonservice.com^
|
|
30115
30180
|
||aip.actonservice.com^
|
|
30116
30181
|
||air-weigh.actonservice.com^
|
|
@@ -30168,13 +30233,11 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
30168
30233
|
||apparound.actonservice.com^
|
|
30169
30234
|
||apply.bluetrustloans.com^
|
|
30170
30235
|
||apply.maxlend.com^
|
|
30171
|
-
||apprhs.hrm.healthgrades.com^
|
|
30172
30236
|
||apptus.actonservice.com^
|
|
30173
30237
|
||aptare.actonservice.com^
|
|
30174
30238
|
||apwip-dev.actonservice.com^
|
|
30175
30239
|
||apwip.actonservice.com^
|
|
30176
30240
|
||aqr.actonservice.com^
|
|
30177
|
-
||ar.promo.skf.com^
|
|
30178
30241
|
||aragenbio.actonservice.com^
|
|
30179
30242
|
||aragonresearch.actonservice.com^
|
|
30180
30243
|
||argyleforum.actonservice.com^
|
|
@@ -30202,18 +30265,14 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
30202
30265
|
||at.sharpmarketing.eu^
|
|
30203
30266
|
||atbs.actonservice.com^
|
|
30204
30267
|
||aticti.actonservice.com^
|
|
30205
|
-
||atlantic-general-hospital.hrm.healthgrades.com^
|
|
30206
30268
|
||atlanticlabequipment.actonservice.com^
|
|
30207
30269
|
||atlastravel.actonservice.com^
|
|
30208
30270
|
||atlasworldusa.actonservice.com^
|
|
30209
30271
|
||atsmobile.actonservice.com^
|
|
30210
30272
|
||attivoconsulting.actonservice.com^
|
|
30211
|
-
||au.promo.skf.com^
|
|
30212
30273
|
||audiofly.actonservice.com^
|
|
30213
|
-
||augustahealth.hrm.healthgrades.com^
|
|
30214
30274
|
||aumarketing.sedgwick.com^
|
|
30215
30275
|
||aurelianlending.actonservice.com^
|
|
30216
|
-
||austria.promo.skf.com^
|
|
30217
30276
|
||authentic3d.actonservice.com^
|
|
30218
30277
|
||automate.gixxy.com^
|
|
30219
30278
|
||automotive.autodeskcommunications.com^
|
|
@@ -30236,10 +30295,7 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
30236
30295
|
||bakercommunications.actonservice.com^
|
|
30237
30296
|
||ballantine.actonservice.com^
|
|
30238
30297
|
||ballymoregroup.actonservice.com^
|
|
30239
|
-
||baltics.promo.skf.com^
|
|
30240
30298
|
||bambee.actonservice.com^
|
|
30241
|
-
||bannerhealth.hrm.healthgrades.com^
|
|
30242
|
-
||baptisthealth.hrm.healthgrades.com^
|
|
30243
30299
|
||bayshoresystems.actonservice.com^
|
|
30244
30300
|
||bcanl.bca-autoveiling.nl^
|
|
30245
30301
|
||bcc-ltd.actonservice.com^
|
|
@@ -30248,14 +30304,11 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
30248
30304
|
||bcs.actonservice.com^
|
|
30249
30305
|
||bdo.actonservice.com^
|
|
30250
30306
|
||bdoaustralia.bdo.com.au^
|
|
30251
|
-
||beaconhealthsystem.hrm.healthgrades.com^
|
|
30252
30307
|
||beanworks.actonservice.com^
|
|
30253
30308
|
||beaumont.actonservice.com^
|
|
30254
|
-
||benelux.promo.skf.com^
|
|
30255
30309
|
||bersondeanstevens.actonservice.com^
|
|
30256
30310
|
||bestbuy.actonservice.com^
|
|
30257
30311
|
||bestinfo.bluetrustloans.com^
|
|
30258
|
-
||bg.promo.skf.com^
|
|
30259
30312
|
||bgiamericas.actonservice.com^
|
|
30260
30313
|
||bi.concordesolutions.com^
|
|
30261
30314
|
||bigcustomernetwork.actonservice.com^
|
|
@@ -30267,7 +30320,6 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
30267
30320
|
||biworldwide.actonservice.com^
|
|
30268
30321
|
||biznews.oregon.gov^
|
|
30269
30322
|
||bizz.cochraneco.com^
|
|
30270
|
-
||bjc.hrm.healthgrades.com^
|
|
30271
30323
|
||bke.actonservice.com^
|
|
30272
30324
|
||bkifg.actonservice.com^
|
|
30273
30325
|
||blackbirdventures.actonservice.com^
|
|
@@ -30291,7 +30343,6 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
30291
30343
|
||bolingbrookgolfclub.actonservice.com^
|
|
30292
30344
|
||bowl.actonservice.com^
|
|
30293
30345
|
||br.bio-rad.com^
|
|
30294
|
-
||br.promo.skf.com^
|
|
30295
30346
|
||brainsell.actonservice.com^
|
|
30296
30347
|
||brands.cambrio.com^
|
|
30297
30348
|
||brascomarketing.actonservice.com^
|
|
@@ -30315,13 +30366,11 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
30315
30366
|
||c-c-l.actonservice.com^
|
|
30316
30367
|
||c4cm.actonservice.com^
|
|
30317
30368
|
||c4contexture.actonservice.com^
|
|
30318
|
-
||ca.promo.skf.com^
|
|
30319
30369
|
||ca.ssl.holdmybeerconsulting.com^
|
|
30320
30370
|
||caderonline.bu.edu^
|
|
30321
30371
|
||caf.actonservice.com^
|
|
30322
30372
|
||calgary-content.cresa.com^
|
|
30323
30373
|
||caliberco.actonservice.com^
|
|
30324
|
-
||california.providence.hrm.healthgrades.com^
|
|
30325
30374
|
||caljetelite.actonservice.com^
|
|
30326
30375
|
||calldesignna.actonservice.com^
|
|
30327
30376
|
||callsource.actonservice.com^
|
|
@@ -30341,15 +30390,12 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
30341
30390
|
||cardinalretirement.actonservice.com^
|
|
30342
30391
|
||cargas.actonservice.com^
|
|
30343
30392
|
||cargurus.actonservice.com^
|
|
30344
|
-
||carle.hrm.healthgrades.com^
|
|
30345
30393
|
||carlisleit.actonservice.com^
|
|
30346
30394
|
||carolina.actonservice.com^
|
|
30347
30395
|
||cc.pennstatehealth.org^
|
|
30348
30396
|
||celigo.actonservice.com^
|
|
30349
30397
|
||centermarkplacements.actonservice.com^
|
|
30350
30398
|
||central.actonservice.com^
|
|
30351
|
-
||centrastate.hrm.healthgrades.com^
|
|
30352
|
-
||centura.hrm.healthgrades.com^
|
|
30353
30399
|
||cerionnano.actonservice.com^
|
|
30354
30400
|
||certify.nasm.org^
|
|
30355
30401
|
||cesa6.actonservice.com^
|
|
@@ -30362,14 +30408,12 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
30362
30408
|
||chartec.actonservice.com^
|
|
30363
30409
|
||chevalierusa.actonservice.com^
|
|
30364
30410
|
||chiefexecutive.actonservice.com^
|
|
30365
|
-
||childrens.hrm.healthgrades.com^
|
|
30366
30411
|
||ci42.rgp.com^
|
|
30367
30412
|
||cil.isotope.com^
|
|
30368
30413
|
||cincinnati-content.cresa.com^
|
|
30369
30414
|
||circadence.actonservice.com^
|
|
30370
30415
|
||cisco-eagle.actonservice.com^
|
|
30371
30416
|
||citizensclimate.actonservice.com^
|
|
30372
|
-
||cl.promo.skf.com^
|
|
30373
30417
|
||clariant.actonservice.com^
|
|
30374
30418
|
||claruscommerce.actonservice.com^
|
|
30375
30419
|
||classroominc.actonservice.com^
|
|
@@ -30389,10 +30433,8 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
30389
30433
|
||cloudhosting.actonservice.com^
|
|
30390
30434
|
||cm.prodo.com^
|
|
30391
30435
|
||cmme.actonservice.com^
|
|
30392
|
-
||cn.promo.skf.com^
|
|
30393
30436
|
||cns-service.actonservice.com^
|
|
30394
30437
|
||cnsecurity.actonservice.com^
|
|
30395
|
-
||co.promo.skf.com^
|
|
30396
30438
|
||cobweb.actonservice.com^
|
|
30397
30439
|
||cofactordigital.actonservice.com^
|
|
30398
30440
|
||coffeycomm.actonservice.com^
|
|
@@ -30412,7 +30454,6 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
30412
30454
|
||communication.fits.me^
|
|
30413
30455
|
||communication.jkseva.com^
|
|
30414
30456
|
||communication.johnstongroup.ca^
|
|
30415
|
-
||communication.promo.skf.com^
|
|
30416
30457
|
||communication.teakmedia.com^
|
|
30417
30458
|
||communication.treston.com^
|
|
30418
30459
|
||communications.all-risks.com^
|
|
@@ -30554,9 +30595,7 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
30554
30595
|
||customercare.aircycle.com^
|
|
30555
30596
|
||customerrelations.theinstitutes.org^
|
|
30556
30597
|
||customersucceed.nanophase.com^
|
|
30557
|
-
||cvhp.hrm.healthgrades.com^
|
|
30558
30598
|
||cxm.ingeniux.com^
|
|
30559
|
-
||cz.promo.skf.com^
|
|
30560
30599
|
||czsk.sharpmarketing.eu^
|
|
30561
30600
|
||dacocorp.actonservice.com^
|
|
30562
30601
|
||daegis.actonservice.com^
|
|
@@ -30567,7 +30606,6 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
30567
30606
|
||dbbest.actonservice.com^
|
|
30568
30607
|
||dc.actonservice.com^
|
|
30569
30608
|
||de.bca-news.com^
|
|
30570
|
-
||de.promo.skf.com^
|
|
30571
30609
|
||de.sharpmarketing.eu^
|
|
30572
30610
|
||dealerrelations.cargurus.com^
|
|
30573
30611
|
||dedola.actonservice.com^
|
|
@@ -30586,7 +30624,6 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
30586
30624
|
||digital.setpointis.com^
|
|
30587
30625
|
||digitalmarketing.gogsg.com^
|
|
30588
30626
|
||digitalmarketing.smu.edu.sg^
|
|
30589
|
-
||dignityhealth.hrm.healthgrades.com^
|
|
30590
30627
|
||dimensionfunding.actonservice.com^
|
|
30591
30628
|
||dincloud.actonservice.com^
|
|
30592
30629
|
||dincloudllc.actonservice.com^
|
|
@@ -30620,7 +30657,6 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
30620
30657
|
||e.unchealthcare.org^
|
|
30621
30658
|
||eagle.actonservice.com^
|
|
30622
30659
|
||econnect.actonservice.com^
|
|
30623
|
-
||ecp.bdoaustralia.bdo.com.au^
|
|
30624
30660
|
||ed1.newtekone.com^
|
|
30625
30661
|
||ed4online.actonservice.com^
|
|
30626
30662
|
||edeals.rbp.com^
|
|
@@ -30633,11 +30669,9 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
30633
30669
|
||education.brettdanko.com^
|
|
30634
30670
|
||education.eatoncambridge.com^
|
|
30635
30671
|
||education.graduateprogram.org^
|
|
30636
|
-
||edward.hrm.healthgrades.com^
|
|
30637
30672
|
||eeco-net.actonservice.com^
|
|
30638
30673
|
||efgam.actonservice.com^
|
|
30639
30674
|
||elastoproxy.actonservice.com^
|
|
30640
|
-
||elcaminohospital.hrm.healthgrades.com^
|
|
30641
30675
|
||elconfidencialdigital.actonservice.com^
|
|
30642
30676
|
||electrifai.actonservice.com^
|
|
30643
30677
|
||elgas.actonservice.com^
|
|
@@ -30665,7 +30699,6 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
30665
30699
|
||emarketing.zulkiepartners.com^
|
|
30666
30700
|
||emcalliance.vmware.com^
|
|
30667
30701
|
||emea.kollmorgen.com^
|
|
30668
|
-
||emea.promo.skf.com^
|
|
30669
30702
|
||emisgroupplc.actonservice.com^
|
|
30670
30703
|
||emkt.stefanini.com^
|
|
30671
30704
|
||emplicity.actonservice.com^
|
|
@@ -30706,7 +30739,6 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
30706
30739
|
||eschsupply.actonservice.com^
|
|
30707
30740
|
||eservices.lubetech.com^
|
|
30708
30741
|
||esri.nl.actonservice.com^
|
|
30709
|
-
||essentiahealth.hrm.healthgrades.com^
|
|
30710
30742
|
||estore.biscoind.com^
|
|
30711
30743
|
||eu.sharpmarketing.eu^
|
|
30712
30744
|
||eumarketing.sedgwick.com^
|
|
@@ -30714,7 +30746,6 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
30714
30746
|
||evergage1.actonservice.com^
|
|
30715
30747
|
||eversource.actonservice.com^
|
|
30716
30748
|
||evolent.actonservice.com^
|
|
30717
|
-
||evolution.promo.skf.com^
|
|
30718
30749
|
||evolutionmarketing.actonservice.com^
|
|
30719
30750
|
||exdmarketing.smu.edu.sg^
|
|
30720
30751
|
||execreps.actonsoftware.com^
|
|
@@ -30770,7 +30801,6 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
30770
30801
|
||foxt.actonservice.com^
|
|
30771
30802
|
||foxtinfo.foxt.com^
|
|
30772
30803
|
||fr.lucanet.com^
|
|
30773
|
-
||fr.promo.skf.com^
|
|
30774
30804
|
||fr.sharpmarketing.eu^
|
|
30775
30805
|
||franchise.goodearthcoffeehouse.com^
|
|
30776
30806
|
||franchise.locktonaffinity.net^
|
|
@@ -30799,7 +30829,6 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
30799
30829
|
||gatan.actonservice.com^
|
|
30800
30830
|
||gblock.greenhousedata.com^
|
|
30801
30831
|
||generaleducation.graduateprogram.org^
|
|
30802
|
-
||genesishealth.hrm.healthgrades.com^
|
|
30803
30832
|
||geonetric.actonservice.com^
|
|
30804
30833
|
||get.airecontact.com^
|
|
30805
30834
|
||get.evidence.care^
|
|
@@ -30923,12 +30952,10 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
30923
30952
|
||goldenhelix.actonservice.com^
|
|
30924
30953
|
||goldenpaints.actonservice.com^
|
|
30925
30954
|
||gosenergy.actonservice.com^
|
|
30926
|
-
||goshenhealth.hrm.healthgrades.com^
|
|
30927
30955
|
||goto.newmarklearning.com^
|
|
30928
30956
|
||govirtualoffice.actonservice.com^
|
|
30929
30957
|
||gowestgroup.actonservice.com^
|
|
30930
30958
|
||gowhiteowl.actonservice.com^
|
|
30931
|
-
||gr.promo.skf.com^
|
|
30932
30959
|
||grado.ufv.es^
|
|
30933
30960
|
||grande.actonservice.com^
|
|
30934
30961
|
||grassrootsunwired.actonservice.com^
|
|
@@ -30941,15 +30968,10 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
30941
30968
|
||guardiancu.actonservice.com^
|
|
30942
30969
|
||guidepointglobal.actonservice.com^
|
|
30943
30970
|
||guideposts.actonservice.com^
|
|
30944
|
-
||gundersenhealth.hrm.healthgrades.com^
|
|
30945
|
-
||hallmarkhealth.hrm.healthgrades.com^
|
|
30946
30971
|
||halo.actonservice.com^
|
|
30947
30972
|
||hancockhealth.hancockregional.org^
|
|
30948
30973
|
||hardinet.actonservice.com^
|
|
30949
30974
|
||harlan.actonservice.com^
|
|
30950
|
-
||hcafarwest.hrm.healthgrades.com^
|
|
30951
|
-
||hcagulfcoast.hrm.healthgrades.com^
|
|
30952
|
-
||hcahealthcare.hrm.healthgrades.com^
|
|
30953
30975
|
||hcu.actonservice.com^
|
|
30954
30976
|
||health.brgeneral.org^
|
|
30955
30977
|
||health.hillcrest.com^
|
|
@@ -30965,7 +30987,6 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
30965
30987
|
||hhglobal.actonservice.com^
|
|
30966
30988
|
||hi.bigduck.com^
|
|
30967
30989
|
||hickeysmith.actonservice.com^
|
|
30968
|
-
||hillcrest.hrm.healthgrades.com^
|
|
30969
30990
|
||hines.actonservice.com^
|
|
30970
30991
|
||hitachi-hightech-as.actonservice.com^
|
|
30971
30992
|
||hiway.actonservice.com^
|
|
@@ -30973,20 +30994,16 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
30973
30994
|
||hodgesmace.actonservice.com^
|
|
30974
30995
|
||homecareresources.rosemarksystem.com^
|
|
30975
30996
|
||homehardware.actonservice.com^
|
|
30976
|
-
||honorhealth.hrm.healthgrades.com^
|
|
30977
30997
|
||horacemann.actonservice.com^
|
|
30978
30998
|
||horizononline.actonservice.com^
|
|
30979
|
-
||hospitals.hrm.healthgrades.com^
|
|
30980
30999
|
||hotel-marketing.hrs.com^
|
|
30981
31000
|
||houston-content.cresa.com^
|
|
30982
31001
|
||hpninfo.hoopis.com^
|
|
30983
31002
|
||hq.handiquilter.com^
|
|
30984
|
-
||hr.promo.skf.com^
|
|
30985
31003
|
||hra.nyp.org^
|
|
30986
31004
|
||hrm.healthgrades.com^
|
|
30987
31005
|
||hronboard.actonservice.com^
|
|
30988
31006
|
||hrs.actonservice.com^
|
|
30989
|
-
||hu.promo.skf.com^
|
|
30990
31007
|
||hu.sharpmarketing.eu^
|
|
30991
31008
|
||hub.hubfinancial.com^
|
|
30992
31009
|
||hub.hubinternational.com^
|
|
@@ -30997,24 +31014,19 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
30997
31014
|
||hyperdisk.actonservice.com^
|
|
30998
31015
|
||iatspayments.actonservice.com^
|
|
30999
31016
|
||ibamolecular.actonservice.com^
|
|
31000
|
-
||iberian.promo.skf.com^
|
|
31001
31017
|
||icahealth.actonservice.com^
|
|
31002
31018
|
||icharts.actonservice.com^
|
|
31003
31019
|
||icslearn.actonsoftware.com^
|
|
31004
|
-
||id.promo.skf.com^
|
|
31005
31020
|
||ideadevice.actonservice.com^
|
|
31006
31021
|
||idrivelogistics.actonservice.com^
|
|
31007
31022
|
||ids.actonservice.com^
|
|
31008
31023
|
||ignite.liftigniter.com^
|
|
31009
31024
|
||igpr.actonservice.com^
|
|
31010
31025
|
||ihc.cellmarque.com^
|
|
31011
|
-
||il.promo.skf.com^
|
|
31012
31026
|
||immunocorp.actonservice.com^
|
|
31013
31027
|
||impact-dm.actonservice.com^
|
|
31014
|
-
||in.promo.skf.com^
|
|
31015
31028
|
||incisive.actonservice.com^
|
|
31016
31029
|
||independence.americanportfolios.com^
|
|
31017
|
-
||industry.promo.skf.com^
|
|
31018
31030
|
||inetprocess.actonservice.com^
|
|
31019
31031
|
||info-fsi.stanford.edu^
|
|
31020
31032
|
||info-pacific.marsh.com^
|
|
@@ -31584,7 +31596,6 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
31584
31596
|
||innovation.rlgbuilds.com^
|
|
31585
31597
|
||innovation.thinkcommunica.com^
|
|
31586
31598
|
||innovations.provisur.com^
|
|
31587
|
-
||inova.hrm.healthgrades.com^
|
|
31588
31599
|
||insight.boomer.com^
|
|
31589
31600
|
||insight.redflashgroup.com^
|
|
31590
31601
|
||insight.wittkieffer.com^
|
|
@@ -31625,7 +31636,6 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
31625
31636
|
||isentia.actonservice.com^
|
|
31626
31637
|
||ishainsight.actonservice.com^
|
|
31627
31638
|
||isoplexis.actonservice.com^
|
|
31628
|
-
||it.promo.skf.com^
|
|
31629
31639
|
||it.sharpmarketing.eu^
|
|
31630
31640
|
||iwantglobal.actonservice.com^
|
|
31631
31641
|
||jagransolutions.com.actonservice.com^
|
|
@@ -31639,13 +31649,9 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
31639
31649
|
||join.opencare.com^
|
|
31640
31650
|
||joinsai.securitiesamerica.com^
|
|
31641
31651
|
||joinus.holidayseniorliving.com^
|
|
31642
|
-
||jp.promo.skf.com^
|
|
31643
31652
|
||jumpstartinc.actonservice.com^
|
|
31644
31653
|
||jwpepper.actonsoftware.com^
|
|
31645
|
-
||kaydonus.promo.skf.com^
|
|
31646
31654
|
||kbs-services.actonservice.com^
|
|
31647
|
-
||kc.promo.skf.com^
|
|
31648
|
-
||kennedyhealth.hrm.healthgrades.com^
|
|
31649
31655
|
||kennisdomein.pqr.com^
|
|
31650
31656
|
||kesko.actonservice.com^
|
|
31651
31657
|
||kestlerfinancial.actonservice.com^
|
|
@@ -31668,7 +31674,6 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
31668
31674
|
||kuwaitmarketing.sedgwick.com^
|
|
31669
31675
|
||kws.holdmybeerconsulting.com^
|
|
31670
31676
|
||kyloepartners.actonservice.com^
|
|
31671
|
-
||lam.promo.skf.com^
|
|
31672
31677
|
||lammico.actonservice.com^
|
|
31673
31678
|
||landrykling.actonservice.com^
|
|
31674
31679
|
||landstar.actonservice.com^
|
|
@@ -31710,16 +31715,11 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
31710
31715
|
||look-ahead.nurturemarketing.com^
|
|
31711
31716
|
||lord.actonservice.com^
|
|
31712
31717
|
||loveeveryday.brighterkind.com^
|
|
31713
|
-
||lovelace.hrm.healthgrades.com^
|
|
31714
31718
|
||lowermybills.actonsoftware.com^
|
|
31715
31719
|
||lp.fsresidential.com^
|
|
31716
31720
|
||lp.mnp.ca^
|
|
31717
31721
|
||lp.rallypoint.com^
|
|
31718
31722
|
||ltcnetwork.mhainc.com^
|
|
31719
|
-
||lubrication.promo.skf.com^
|
|
31720
|
-
||lubricationcee-mea.promo.skf.com^
|
|
31721
|
-
||lubricationde.promo.skf.com^
|
|
31722
|
-
||lubricationus.promo.skf.com^
|
|
31723
31723
|
||lucanet.actonservice.com^
|
|
31724
31724
|
||lumenera.actonservice.com^
|
|
31725
31725
|
||lydallpm.actonservice.com^
|
|
@@ -31772,7 +31772,6 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
31772
31772
|
||marcomm.woodward.com^
|
|
31773
31773
|
||marcomms.maistro.com^
|
|
31774
31774
|
||maricich.actonservice.com^
|
|
31775
|
-
||marine.promo.skf.com^
|
|
31776
31775
|
||markentive.actonservice.com^
|
|
31777
31776
|
||marketing-company.getinsured.com^
|
|
31778
31777
|
||marketing-fl.waterstonemortgage.com^
|
|
@@ -33174,7 +33173,6 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
33174
33173
|
||mbns.bruker.com^
|
|
33175
33174
|
||mbopt.bruker.com^
|
|
33176
33175
|
||mbs.modernbuilderssupply.com^
|
|
33177
|
-
||mclaren-porthuron.hrm.healthgrades.com^
|
|
33178
33176
|
||mcw.actonservice.com^
|
|
33179
33177
|
||mdfcrm.actonservice.com^
|
|
33180
33178
|
||meanwellaustralia.actonservice.com^
|
|
@@ -33201,7 +33199,6 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
33201
33199
|
||member.usenix.org^
|
|
33202
33200
|
||members.simplicity.coop^
|
|
33203
33201
|
||membership.mortonarb.org^
|
|
33204
|
-
||memhosp.hrm.healthgrades.com^
|
|
33205
33202
|
||merchant-mail.neosurf.com^
|
|
33206
33203
|
||mesalabs.actonservice.com^
|
|
33207
33204
|
||message.alldata.com^
|
|
@@ -33215,7 +33212,6 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
33215
33212
|
||mg.mistrasgroup.com^
|
|
33216
33213
|
||mhinvest.actonservice.com^
|
|
33217
33214
|
||mhmp.bruker.com^
|
|
33218
|
-
||mhs.hrm.healthgrades.com^
|
|
33219
33215
|
||mhz-design.actonservice.com^
|
|
33220
33216
|
||microfocus.qm-g.com^
|
|
33221
33217
|
||microlise.actonservice.com^
|
|
@@ -33280,12 +33276,10 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
33280
33276
|
||multimedia.netplusentremont.ch^
|
|
33281
33277
|
||mw-ind.actonservice.com^
|
|
33282
33278
|
||mwa.meanwellaustralia.com.au^
|
|
33283
|
-
||mx.promo.skf.com^
|
|
33284
33279
|
||my.bruker.com^
|
|
33285
33280
|
||my.carolina.com^
|
|
33286
33281
|
||my.exotravel.com^
|
|
33287
33282
|
||my.igrafx.com^
|
|
33288
|
-
||my.promo.skf.com^
|
|
33289
33283
|
||mya.actonservice.com^
|
|
33290
33284
|
||mycomm2.hackensackmeridian.org^
|
|
33291
33285
|
||mydario.actonservice.com^
|
|
@@ -33366,7 +33360,6 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
33366
33360
|
||objectpartners.actonservice.com^
|
|
33367
33361
|
||oceanair.actonservice.com^
|
|
33368
33362
|
||oceanautomotive.actonservice.com^
|
|
33369
|
-
||ochsner.hrm.healthgrades.com^
|
|
33370
33363
|
||offers.hddistributors.com^
|
|
33371
33364
|
||offers.jazelauto.com^
|
|
33372
33365
|
||offers.storagepipe.com^
|
|
@@ -33401,7 +33394,6 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
33401
33394
|
||outreach.successforall.org^
|
|
33402
33395
|
||outreach.teex.info^
|
|
33403
33396
|
||outreach.veritivcorp.com^
|
|
33404
|
-
||overlakemedicalcenter.hrm.healthgrades.com^
|
|
33405
33397
|
||pacstainless.actonservice.com^
|
|
33406
33398
|
||page.asraymond.com^
|
|
33407
33399
|
||page.ephesus.cooperlighting.com^
|
|
@@ -33439,12 +33431,10 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
33439
33431
|
||pbc.programbrokerage.com^
|
|
33440
33432
|
||pcci.pccinnovation.org^
|
|
33441
33433
|
||pccipieces.actonservice.com^
|
|
33442
|
-
||pe.promo.skf.com^
|
|
33443
33434
|
||people.mbtionline.com^
|
|
33444
33435
|
||peoplehr.actonservice.com^
|
|
33445
33436
|
||performantcorp.actonservice.com^
|
|
33446
33437
|
||permission.au.actonservice.com^
|
|
33447
|
-
||ph.promo.skf.com^
|
|
33448
33438
|
||phdinc.actonservice.com^
|
|
33449
33439
|
||philadelphia-content.cresa.com^
|
|
33450
33440
|
||phionline.actonservice.com^
|
|
@@ -33454,11 +33444,9 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
33454
33444
|
||phyins.actonservice.com^
|
|
33455
33445
|
||picarro.actonservice.com^
|
|
33456
33446
|
||pimpoint.inriver.com^
|
|
33457
|
-
||pinnacleuniversity.hrm.healthgrades.com^
|
|
33458
33447
|
||pipelinepub.actonservice.com^
|
|
33459
33448
|
||pitcher.actonservice.com^
|
|
33460
33449
|
||pivotpointsecurity.actonservice.com^
|
|
33461
|
-
||pl.promo.skf.com^
|
|
33462
33450
|
||pl.sharpmarketing.eu^
|
|
33463
33451
|
||pla.pearlinsurance.com^
|
|
33464
33452
|
||plans.ceteraretirement.com^
|
|
@@ -33566,18 +33554,14 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
33566
33554
|
||rightanswers.actonservice.com^
|
|
33567
33555
|
||riscitsolutions.actonservice.com^
|
|
33568
33556
|
||rmhoffman.actonservice.com^
|
|
33569
|
-
||ro.promo.skf.com^
|
|
33570
33557
|
||roiscs.actonservice.com^
|
|
33571
33558
|
||rollbar.actonservice.com^
|
|
33572
33559
|
||romotur.actonservice.com^
|
|
33573
33560
|
||root9b.actonservice.com^
|
|
33574
33561
|
||roxtec.actonservice.com^
|
|
33575
|
-
||rs.promo.skf.com^
|
|
33576
|
-
||rsfh.hrm.healthgrades.com^
|
|
33577
33562
|
||rsvp.markettraders.com^
|
|
33578
33563
|
||rtvision.actonservice.com^
|
|
33579
33564
|
||rumsey.actonservice.com^
|
|
33580
|
-
||rush.hrm.healthgrades.com^
|
|
33581
33565
|
||ruw.roanokeunderwriting.com^
|
|
33582
33566
|
||rxaap.actonservice.com^
|
|
33583
33567
|
||rystadenergy.actonservice.com^
|
|
@@ -33602,7 +33586,6 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
33602
33586
|
||se.netpartnering.com^
|
|
33603
33587
|
||seahorseinfo.agilent.com^
|
|
33604
33588
|
||sealingdev.actonservice.com^
|
|
33605
|
-
||seals.promo.skf.com^
|
|
33606
33589
|
||seamarketny.actonservice.com^
|
|
33607
33590
|
||seb.sharpmarketing.eu^
|
|
33608
33591
|
||securityins.actonservice.com^
|
|
@@ -33692,7 +33675,6 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
33692
33675
|
||sffirecu.actonservice.com^
|
|
33693
33676
|
||sfsinfo.sabic.com^
|
|
33694
33677
|
||sg.lucanet.com^
|
|
33695
|
-
||sg.promo.skf.com^
|
|
33696
33678
|
||shelbypublishing.actonservice.com^
|
|
33697
33679
|
||shipsmarter.idrivelogistics.com^
|
|
33698
33680
|
||shop.iwantclips.com^
|
|
@@ -33702,7 +33684,6 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
33702
33684
|
||site.newzstand.com^
|
|
33703
33685
|
||sitel.actonservice.com^
|
|
33704
33686
|
||sjms.actonservice.com^
|
|
33705
|
-
||sk.promo.skf.com^
|
|
33706
33687
|
||skf.actonservice.com^
|
|
33707
33688
|
||skillshouse.actonservice.com^
|
|
33708
33689
|
||slashnext.actonservice.com^
|
|
@@ -33747,14 +33728,12 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
33747
33728
|
||ssfllp.actonservice.com^
|
|
33748
33729
|
||sswhitedental.actonservice.com^
|
|
33749
33730
|
||stahl.actonservice.com^
|
|
33750
|
-
||stamfordhealth.hrm.healthgrades.com^
|
|
33751
33731
|
||stanburns.actonservice.com^
|
|
33752
33732
|
||start.mediware.com^
|
|
33753
33733
|
||start.mybillingtree.com^
|
|
33754
33734
|
||start.ptl.org^
|
|
33755
33735
|
||start.sharpclinical.com^
|
|
33756
33736
|
||start.spark-thinking.com^
|
|
33757
|
-
||stcharleshealthcare.hrm.healthgrades.com^
|
|
33758
33737
|
||steel.newmill.com^
|
|
33759
33738
|
||stentel.actonservice.com^
|
|
33760
33739
|
||stormwind.actonservice.com^
|
|
@@ -33780,7 +33759,6 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
33780
33759
|
||support2.flex.com^
|
|
33781
33760
|
||support3.flex.com^
|
|
33782
33761
|
||svmarketing.destinationtoronto.com^
|
|
33783
|
-
||swedishcovenant.hrm.healthgrades.com^
|
|
33784
33762
|
||swim2000.actonservice.com^
|
|
33785
33763
|
||symbio.actonservice.com^
|
|
33786
33764
|
||synapse-da.actonservice.com^
|
|
@@ -33795,7 +33773,6 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
33795
33773
|
||target.actonservice.com^
|
|
33796
33774
|
||targetrecruitllc.actonservice.com^
|
|
33797
33775
|
||targetstore.actonservice.com^
|
|
33798
|
-
||tas.bdoaustralia.bdo.com.au^
|
|
33799
33776
|
||taylorshellfish.actonservice.com^
|
|
33800
33777
|
||teach.graduateprogram.org^
|
|
33801
33778
|
||team.moxtra.com^
|
|
@@ -33838,7 +33815,6 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
33838
33815
|
||townsquareinteractive.actonservice.com^
|
|
33839
33816
|
||tpe.theparticipanteffect.com^
|
|
33840
33817
|
||tqhosting.actonservice.com^
|
|
33841
|
-
||tr.promo.skf.com^
|
|
33842
33818
|
||track.healthcare-distribution.com^
|
|
33843
33819
|
||tracking.experiencescottsdale.com^
|
|
33844
33820
|
||tradeshows.aem.org^
|
|
@@ -33866,17 +33842,11 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
33866
33842
|
||ttcu-union.actonservice.com^
|
|
33867
33843
|
||ttmc.actonservice.com^
|
|
33868
33844
|
||tvppa.actonservice.com^
|
|
33869
|
-
||tw.promo.skf.com^
|
|
33870
33845
|
||uaemarketing.sedgwick.com^
|
|
33871
33846
|
||ugmarketing.smu.edu.sg^
|
|
33872
|
-
||uhealthsystem.hrm.healthgrades.com^
|
|
33873
|
-
||uhhospitals.hrm.healthgrades.com^
|
|
33874
33847
|
||uk-marketing.roxtec.com^
|
|
33875
|
-
||uk.promo.skf.com^
|
|
33876
33848
|
||uk.sharpmarketing.eu^
|
|
33877
33849
|
||ukmarketing.sedgwick.com^
|
|
33878
|
-
||umassmemorial.hrm.healthgrades.com^
|
|
33879
|
-
||unchealthcare.hrm.healthgrades.com^
|
|
33880
33850
|
||unifilabs.actonservice.com^
|
|
33881
33851
|
||unitedautocredit.actonservice.com^
|
|
33882
33852
|
||unitusccu.actonservice.com^
|
|
@@ -33885,13 +33855,11 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
33885
33855
|
||us-marketing.roxtec.com^
|
|
33886
33856
|
||us.lucanet.com^
|
|
33887
33857
|
||us.onkyo.actonservice.com^
|
|
33888
|
-
||us.promo.skf.com^
|
|
33889
33858
|
||usaprogrip.actonservice.com^
|
|
33890
33859
|
||usb-vna.coppermountaintech.com^
|
|
33891
33860
|
||ussco-dev.actonservice.com^
|
|
33892
33861
|
||utexas.actonservice.com^
|
|
33893
33862
|
||value.kfcu.org^
|
|
33894
|
-
||vehicleaftermarket.euw.promo.skf.com^
|
|
33895
33863
|
||velocitypartners.actonservice.com^
|
|
33896
33864
|
||veoci.actonservice.com^
|
|
33897
33865
|
||vertexcs.actonservice.com^
|
|
@@ -33899,7 +33867,6 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
33899
33867
|
||vhans.siege-corp.com^
|
|
33900
33868
|
||via.ssl.holdmybeerconsulting.com^
|
|
33901
33869
|
||video.funnelbox.com^
|
|
33902
|
-
||vietnam.promo.skf.com^
|
|
33903
33870
|
||vip.gophersport.com^
|
|
33904
33871
|
||visit.monroecollege.edu^
|
|
33905
33872
|
||visitorlando.actonsoftware.com^
|
|
@@ -33910,10 +33877,7 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
33910
33877
|
||vividcortex.actonservice.com^
|
|
33911
33878
|
||voiply.actonservice.com^
|
|
33912
33879
|
||vonazon.actonservice.com^
|
|
33913
|
-
||vsmeue.promo.skf.com^
|
|
33914
|
-
||vsmeuw.promo.skf.com^
|
|
33915
33880
|
||vt.mak.com^
|
|
33916
|
-
||wa.bdoaustralia.bdo.com.au^
|
|
33917
33881
|
||warfieldtech.actonservice.com^
|
|
33918
33882
|
||warrenfcu.actonservice.com^
|
|
33919
33883
|
||washlaundry.actonservice.com^
|
|
@@ -45889,7 +45853,6 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
45889
45853
|
||secure.tube6sour.com^
|
|
45890
45854
|
||secure.tula9mari.com^
|
|
45891
45855
|
||secure.vane3alga.com^
|
|
45892
|
-
||secure.venture-365-inspired.com^
|
|
45893
45856
|
||secure.venture-enterprising.com^
|
|
45894
45857
|
||secure.venture365office.com^
|
|
45895
45858
|
||secure.vice4beek.com^
|
|
@@ -50893,7 +50856,6 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
50893
50856
|
||stg-deeplink.ring.md^
|
|
50894
50857
|
||store.echovisuals.com^
|
|
50895
50858
|
||store.esquirrel.at^
|
|
50896
|
-
||stream.9now.com.au^
|
|
50897
50859
|
||studio.joinsalut.com^
|
|
50898
50860
|
||subito.openapp.link^
|
|
50899
50861
|
||summary.instaread.co^
|
|
@@ -51449,6 +51411,7 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
51449
51411
|
||gamergen.com/ajax/actualites/addVue
|
|
51450
51412
|
||hits.porn.fr^
|
|
51451
51413
|
||hlms.ecologie.gouv.fr^
|
|
51414
|
+
||horairesdouverture24.fr/ar.js
|
|
51452
51415
|
||ianimes.org/img/tracker.gif
|
|
51453
51416
|
||ici.radio-canada.ca/v5/*/trace/
|
|
51454
51417
|
||igen.fr/modules/statistics/statistics.php
|
|
@@ -51481,6 +51444,7 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
51481
51444
|
||ma-petite-recette.fr/visites
|
|
51482
51445
|
||marmiton.org/reloaded/errpix.php
|
|
51483
51446
|
||medoucine.com/tracking/
|
|
51447
|
+
||mesure-pro.engie.fr^
|
|
51484
51448
|
||metrics-broker.prod.p.tf1.fr^
|
|
51485
51449
|
||neko-san.fr/stats
|
|
51486
51450
|
||ocular.dealabs.com^
|
|
@@ -51928,6 +51892,7 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
51928
51892
|
||events.ingatlan.com^
|
|
51929
51893
|
||hirtv.hu/ajaxx/_stat/
|
|
51930
51894
|
||hirtv.hu/nx_general_stat.jpg?
|
|
51895
|
+
||nyitvatartas24.hu/ar.js
|
|
51931
51896
|
||otthonterkep.hu/c.js
|
|
51932
51897
|
||outal.origo.hu^
|
|
51933
51898
|
||rtl.hu/_stat/
|
|
@@ -51937,6 +51902,7 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
51937
51902
|
||bukalapak.com/banner-redirector/impression
|
|
51938
51903
|
||bukalapak.com/track-external-visit
|
|
51939
51904
|
||bukalapak.com/track_external.json
|
|
51905
|
+
||dt-tracker.mamikos.com^
|
|
51940
51906
|
||ktracker.kumparan.com^
|
|
51941
51907
|
||mygostore.com/api/log
|
|
51942
51908
|
||t.bukalapak.com^
|
|
@@ -52041,6 +52007,7 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
52041
52007
|
! Japanese
|
|
52042
52008
|
||abema-tv.com/v1/stats/
|
|
52043
52009
|
||ad-platform.jmty.jp^
|
|
52010
|
+
||altema-log.com^
|
|
52044
52011
|
||amazonaws.com/ai-img/aia.js
|
|
52045
52012
|
||ameba.jp/cookie/
|
|
52046
52013
|
||ameblo.jp/accesslog/
|
|
@@ -52072,6 +52039,7 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
52072
52039
|
||contx.net/collect.js
|
|
52073
52040
|
||count.upc.rakuten.co.jp^
|
|
52074
52041
|
||crank-in.net/assets/common/js/sendpv.js
|
|
52042
|
+
||ctr.po-kaki-to.com^
|
|
52075
52043
|
||d-log.asahi.co.jp^
|
|
52076
52044
|
||d-log.tv-asahi.co.jp^
|
|
52077
52045
|
||d.tv-asahi.co.jp^
|
|
@@ -52085,6 +52053,7 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
52085
52053
|
||eq-beacon.stream.co.jp^
|
|
52086
52054
|
||eq-player-log.cdnext.stream.ne.jp^
|
|
52087
52055
|
||eropuru.com/plugin/tracking/
|
|
52056
|
+
||esports-world.jp/js/banner.event.js
|
|
52088
52057
|
||event.lib.visumo.io/js/hbn_track.js
|
|
52089
52058
|
||fensi.plus^*/tracking/
|
|
52090
52059
|
||fspark-ap.com/ft/analytics_log
|
|
@@ -52167,6 +52136,7 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
52167
52136
|
||tower.jp/bundle/beacon
|
|
52168
52137
|
||track.buyma.com^
|
|
52169
52138
|
||track.prod.smash.pet^
|
|
52139
|
+
||tracker.curama.jp^
|
|
52170
52140
|
||tracking.ai.rakuten.co.jp^
|
|
52171
52141
|
||tracking.game8.jp^
|
|
52172
52142
|
||tracking.gnavi.co.jp^
|
|
@@ -52376,7 +52346,7 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
52376
52346
|
||fb.ru/stat/
|
|
52377
52347
|
||fontanka.ru/api/metrics/
|
|
52378
52348
|
||fotostrana.ru/start/
|
|
52379
|
-
||goya.rutube.ru
|
|
52349
|
+
||goya.rutube.ru^$~image
|
|
52380
52350
|
||hh.ru/analytics^
|
|
52381
52351
|
||hh.ru/stat?
|
|
52382
52352
|
||interfax.ru/cnt/
|
|
@@ -52442,6 +52412,7 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
52442
52412
|
||top.mail.ru/tpc.js
|
|
52443
52413
|
||top.mail.ru/tt?js
|
|
52444
52414
|
||trk.mail.ru^$image,script
|
|
52415
|
+
||umschool.net/_jts/api/s/track
|
|
52445
52416
|
||vedomosti.ru/boom?
|
|
52446
52417
|
||vesti.ru/counter/
|
|
52447
52418
|
||vstat.rtr-vesti.ru^
|
|
@@ -52614,14 +52585,17 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
52614
52585
|
@@||api-analytics.magstimconnect.net^$~third-party
|
|
52615
52586
|
@@||api-js.datadome.co/js/$domain=sso.garena.com
|
|
52616
52587
|
@@||api-mg2.db-ip.com^$xmlhttprequest,domain=journal-news.com
|
|
52588
|
+
@@||api-public.roland.com/geoip$domain=bosstoneexchange.com
|
|
52617
52589
|
@@||api.aliagents.ai/api/v1/activity$~third-party,xmlhttprequest
|
|
52618
52590
|
@@||api.amplitude.com^$xmlhttprequest,domain=insiderintelligence.com
|
|
52591
|
+
@@||api.app.mobilelocker.eu/api/latest/application-environment/ahoy/events$~third-party
|
|
52619
52592
|
@@||api.ipinfodb.com^$xmlhttprequest,domain=management30.com
|
|
52620
52593
|
@@||api.lab.amplitude.com/v1/vardata?$domain=gaiagps.com
|
|
52621
52594
|
@@||api.omappapi.com/v3/geolocate/json$domain=seclore.com
|
|
52622
52595
|
@@||api.perfops.net^$script,xmlhttprequest,domain=cdnperf.com|dnsperf.com
|
|
52623
52596
|
@@||api.touchnote.io^$xmlhttprequest,domain=app.touchnote.com
|
|
52624
52597
|
@@||api.vk.com/method/statEvents.$~third-party
|
|
52598
|
+
@@||api.zeeg.me/api/analytics/events/$~third-party
|
|
52625
52599
|
@@||assets.fyers.in/Lib/analytics/Analytics.js$~third-party
|
|
52626
52600
|
@@||assets.msn.com/staticsb/statics/latest/adboxes/$script,~third-party
|
|
52627
52601
|
@@||att.com/scripts/adobe/prod/$script,~third-party
|
|
@@ -52649,10 +52623,12 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
52649
52623
|
@@||cdn.getblueshift.com/blueshift.js$script,domain=rentcafe.com
|
|
52650
52624
|
@@||cdn.heapanalytics.com^$script,domain=libertymutual.com
|
|
52651
52625
|
@@||cdn.jsdelivr.net^*/fp.min.js$script,domain=cuevana2.io
|
|
52626
|
+
@@||cdn.listrakbi.com^$script,domain=mackenzie-childs.com
|
|
52627
|
+
@@||cdn.matomo.cloud/tekuchi.matomo.cloud/matomo.js$domain=berkeleygroup.digital
|
|
52652
52628
|
@@||cdn.mxpnl.com/libs/$script,domain=get.pumpkin.care
|
|
52653
52629
|
@@||cdn.perfops.net/rom3/rom3.min.js$domain=cdnperf.com
|
|
52654
52630
|
@@||cdn.segment.com/analytics-next/
|
|
52655
|
-
@@||cdn.segment.com/analytics.js/$script,domain=abstractapi.com|app.cryptotrader.tax|driversed.com|fender.com|finerdesk.com|foxbusiness.com|foxnews.com|givingassistant.org|inxeption.io|reuters.com|squaretrade.com
|
|
52631
|
+
@@||cdn.segment.com/analytics.js/$script,domain=abstractapi.com|app.cryptotrader.tax|driversed.com|fender.com|finerdesk.com|foxbusiness.com|foxnews.com|givingassistant.org|inxeption.io|reuters.com|squaretrade.com|swatches.interiordefine.com
|
|
52656
52632
|
@@||cdn.segment.com/next-integrations/integrations/
|
|
52657
52633
|
@@||cdn.segment.com/v1/projects/
|
|
52658
52634
|
@@||cdn.sophi.io/assets/$script,domain=nationalpost.com
|
|
@@ -52693,7 +52669,7 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
52693
52669
|
@@||d347cldnsmtg5x.cloudfront.net/util/1x1.gif$image,domain=aplaceforeverything.co.uk
|
|
52694
52670
|
@@||d41.co/tags/ff-2.min.js$domain=ads.spotify.com
|
|
52695
52671
|
@@||data.adxcel-ec2.com^$image,domain=laguardia.edu
|
|
52696
|
-
@@||datadoghq-browser-agent.com^$script,domain=bbcgoodfood.com|dashboard.getdriven.app|hungryroot.com|usa.experian.com
|
|
52672
|
+
@@||datadoghq-browser-agent.com^$script,domain=bbcgoodfood.com|cdn.spatialbuzz.com|dashboard.getdriven.app|hungryroot.com|usa.experian.com
|
|
52697
52673
|
@@||delta.com/dlhome/ruxitagentjs$~third-party
|
|
52698
52674
|
@@||docs.google.com/*/viewdata$~third-party
|
|
52699
52675
|
@@||driverfix.com^*/index_src.php?tracking=$~third-party
|
|
@@ -52709,10 +52685,13 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
52709
52685
|
@@||ensighten.com^*/serverComponent.php?$script
|
|
52710
52686
|
@@||etsy.com/api/v3/ajax/bespoke/*log_performance_metrics=$~third-party
|
|
52711
52687
|
@@||events.raceresult.com^$~third-party,xmlhttprequest
|
|
52688
|
+
@@||evergage.com/api2/event/$domain=mbusa.com
|
|
52712
52689
|
@@||evil-inc.com/comic/advertising-age/$~third-party,xmlhttprequest
|
|
52713
52690
|
@@||extreme-ip-lookup.com^$script,domain=bulkbarn.ca
|
|
52714
52691
|
@@||ezodn.com/cmp/gvl.json$xmlhttprequest
|
|
52715
|
-
@@||fast.fonts.net/jsapi/core/mt.js$script,domain=bkmedical.com|eclecticbars.co.uk|gables.com|itsolutions-inc.com|senate.gov
|
|
52692
|
+
@@||fast.fonts.net/jsapi/core/mt.js$script,domain=bkmedical.com|eclecticbars.co.uk|gables.com|itsolutions-inc.com|kinsfarmmarket.com|senate.gov
|
|
52693
|
+
@@||fdi.fiduciarydecisions.com/a/lib/gtag/gtag.js$script,~third-party
|
|
52694
|
+
@@||fdi.fiduciarydecisions.com/v/app/components/*/Analytics.js$script,~third-party
|
|
52716
52695
|
@@||fichub.com/plugins/adobe/lib/AppMeasurement.js$domain=natgeotv.com
|
|
52717
52696
|
@@||fichub.com/plugins/adobe/lib/VisitorAPI.js$domain=natgeotv.com
|
|
52718
52697
|
@@||filme.imyfone.com/assets/js/gatrack.js$~third-party
|
|
@@ -52758,6 +52737,7 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
52758
52737
|
@@||kilimall.co.tz/sensorsdata.min.js$~third-party
|
|
52759
52738
|
@@||kilimall.com*/js/sensorsdata.min.js$script,domain=kilimall.co.ke
|
|
52760
52739
|
@@||kohls.com/ecustservice/js/sitecatalyst.js$script,~third-party
|
|
52740
|
+
@@||lab.eu.amplitude.com^$xmlhttprequest,domain=bluelightcard.co.uk
|
|
52761
52741
|
@@||lacoste.com^*/click-analytics.js$~third-party
|
|
52762
52742
|
@@||lamycosphere.com/cdn/shop/*/assets/pixel.gif$image,~third-party
|
|
52763
52743
|
@@||languagecloud.sdl.com/node_modules/fingerprintjs2/dist/fingerprint2.min.js$~third-party
|
|
@@ -52779,7 +52759,7 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
52779
52759
|
@@||m1tm.insideevs.com/gtm.js$~third-party
|
|
52780
52760
|
@@||magento-recs-sdk.adobe.net/v2/index.js$script,domain=superbrightleds.com
|
|
52781
52761
|
@@||mapquestapi.com/logger/$domain=hertz.com
|
|
52782
|
-
@@||maps.arcgis.com/apps
|
|
52762
|
+
@@||maps.arcgis.com/apps/*/AppMeasurement.js$~third-party
|
|
52783
52763
|
@@||maptiles.ping-admin.ru^$image,domain=ping-admin.com
|
|
52784
52764
|
@@||martech.condenastdigital.com/lib/martech.js$script,domain=wired.com
|
|
52785
52765
|
@@||matomo.miraheze.org/matomo.js$script,~third-party
|
|
@@ -52809,7 +52789,6 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
52809
52789
|
@@||next.co.uk/static-content/gtm-sdk/gtm.js$~third-party
|
|
52810
52790
|
@@||nike.com/assets/measure/data-capture/analytics-client.min.js$script,~third-party
|
|
52811
52791
|
@@||nintendolife.com/themes/base/javascript/fingerprint.js$~third-party
|
|
52812
|
-
@@||noaa.maps.arcgis.com/apps/instant/*/AppMeasurement.js$~third-party
|
|
52813
52792
|
@@||nocookie.net^*/tracking-opt-in.min.js$script,domain=fandom.com
|
|
52814
52793
|
@@||noodid.ee/chordQuiz/$~third-party
|
|
52815
52794
|
@@||noxgroup.com/noxinfluencer/sensor_sdk/$script,domain=noxinfluencer.com
|
|
@@ -52851,8 +52830,6 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
52851
52830
|
@@||px-cdn.net/api/v2/collector/ocaptcha$xmlhttprequest
|
|
52852
52831
|
@@||qm.redbullracing.com/gtm.js$~third-party
|
|
52853
52832
|
@@||quantcast.com/wp-content/themes/quantcast/$domain=quantcast.com
|
|
52854
|
-
@@||quickmath.com/js/r/web-vitals.js$script,~third-party
|
|
52855
|
-
@@||rcb-gis.maps.arcgis.com/apps/instant/minimalist/*/AppMeasurement.js$script,~third-party
|
|
52856
52833
|
@@||reactandshare.com^$domain=maanmittauslaitos.fi
|
|
52857
52834
|
@@||realclearpolitics.com/esm/assets/js/admiral.js$~third-party
|
|
52858
52835
|
@@||realclearpolitics.com/esm/assets/js/analytics/chartbeat.js$~third-party
|
|
@@ -52864,6 +52841,7 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
52864
52841
|
@@||rest.edit.site/geoip-service/geoip$domain=systemshouse.com
|
|
52865
52842
|
@@||retailmenot.com/__wsm.gif$ping,~third-party,xmlhttprequest
|
|
52866
52843
|
@@||rfksrv.com/rfk/js/*/init.js$script,domain=riteaid.com|spirithalloween.com
|
|
52844
|
+
@@||riverlink.etcchosted.com/widgets/com/mendix/widget/web/googletag/GoogleTag.js$~third-party
|
|
52867
52845
|
@@||rollbar.com^*/rollbar.min.js$domain=rollingstone.com|variety.com|wwd.com
|
|
52868
52846
|
@@||s-microsoft.com/mscc/statics/$script,domain=microsoft.com
|
|
52869
52847
|
@@||sc.youmaker.com/site/article/count?
|
|
@@ -52940,7 +52918,6 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
52940
52918
|
@@||vidible.tv^*/ComScore.Viewability.js
|
|
52941
52919
|
@@||vivocha.com^*/vivocha.js?$script,domain=kartell.com
|
|
52942
52920
|
@@||web-sdk.urbanairship.com/notify/$script,domain=etoro.com
|
|
52943
|
-
@@||web.dev/patterns/web-vitals-$~third-party
|
|
52944
52921
|
@@||webtrends.com/js/webtrends.min.js$script,domain=tvlicensing.co.uk
|
|
52945
52922
|
@@||weightwatchers.com/optimizelyjs/$script,~third-party
|
|
52946
52923
|
@@||where2getit.com/traderjoes/rest/clicktrack?$domain=traderjoes.com
|
|
@@ -52960,11 +52937,11 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
52960
52937
|
!! amplitude.com/libs
|
|
52961
52938
|
@@||amplitude.com/libs/$script,domain=elconfidencial.com|kink.com|pdfexpert.com|xe.com
|
|
52962
52939
|
!! googletagmanager.com/gtm.js
|
|
52963
|
-
@@||googletagmanager.com/gtm.js$domain=3djuegosguias.com|3djuegospc.com|9to5mac.com|acehardware.com|acornonline.com|ads.spotify.com|aena.es|aeromexico.com|afisha.timepad.ru|aliexpress.com|ampparit.com|animeanime.jp|anond.hatelabo.jp|applesfera.com|aruba.it|arvopaperi.fi|atgtickets.com|atptour.com|aussiebum.com|autobild.de|autorevue.cz|avis.com|axeptio.eu|backcountry.com|baywa-re.com|bbcgoodfood.com|benesse-style-care.co.jp|besplatka.ua|beterbed.nl|betten.de|binglee.com.au|book.impress.co.jp|bsa-whitelabel.com|bunte.de|butcherblockco.com|bybit.com|bybitglobal.com|caminteresse.fr|canadiantire.ca|capital.it|carcareplus.jp|carhartt-wip.com|casa.it|ccleaner.com|cdek.ru|cdon.fi|checkout.ao.com|chipotle.com|chronopost.fr|cinemacafe.net|cityheaven.net|clickup.com|cmoa.jp|como.fi|complex.com|compradiccion.com|computerbild.de|coolermaster.com|cora.fr|costco.co.jp|courses.monoprix.fr|cram.com|crello.com|cyclestyle.net|cyclingnews.com|cypress.io|dazeddigital.com|de.hgtv.com|deejay.it|dengekionline.com|dholic.co.jp|directoalpaladar.com|directv.com|dlsite.com|dmax.de|dmv.ca.gov|doodle.com|dropps.com|e15.cz|easternbank.com|ecovacs.com|edwardjones.com|eki-net.com|elcorteingles.es|elnuevodia.com|enmotive.com|episodi.fi|eprice.it|ergotron.com|espinof.com|euronics.ee|euronics.it|expressvpn.com|famesupport.com|fandom.com|feex.co.il|festoolusa.com|finanzen.at|finanzen.ch|finanzen.net|flytap.com|focus.de|formula1.com|fortress.com.hk|fortune.com|freenet-funk.de|froxy.com|fum.fi|gamebusiness.jp|gamespark.jp|genbeta.com|glamusha.ru|globo.com|gorillamind.com|grandhood.dk|gravitydefyer.com|gumtree.com|harveynorman.co.nz|harveynorman.com.au|hatenacorp.jp|headlightrevolution.com|hepsiburada.com|herculesstands.com|hobbyhall.fi|hobbystock.jp|hostingvergelijker.nl|hotelfountaingate.com.au|idealo.at|idealo.de|iexprofs.nl|iltalehti.fi|independent.co.uk|inferno.fi|inside-games.jp|insiderstore.com.br|iodonna.it|iphoneitalia.com|j-wave.co.jp|jalan.net|jn.pt|join.kazm.com|journaldunet.com|jreastmall.com|junonline.jp|kakuyomu.jp|karriere.at|karriere.heldele.de|kauppalehti.fi|kedronparkhotel.com.au|kfc.co.jp|kinepolis.be|kinepolis.ch|kinepolis.es|kinepolis.fr|kinepolis.lu|kinepolis.nl|komputronik.pl|konami.com|la7.it|larousse.fr|lastampa.it|lasvegasentuidioma.com|lbc.co.uk|lecker.de|level.travel|life.fi|lift.co.za|linternaute.com|lippu.fi|loopearplugs.com|luko.eu|m1.com|m2o.it|magazineluiza.com.br|mainichi.jp|makitani.net|mall.heiwa.jp|mangaseek.net|mcgeeandco.com|mecindo.no|mediamarkt.nl|mediuutiset.fi|mercell.com|meritonsuites.com.au|mikrobitti.fi|mirapodo.de|mobilmania.cz|montcopa.org|mustar.meitetsu.co.jp|mycar-life.com|mysmartprice.com|nanikanokami.github.io|nap-camp.com|netcombo.com.br|newscafe.ne.jp|nflgamepass.com|ngv.vic.gov.au|nielsendodgechryslerjeepram.com|nihontsushin.com|noelleeming.co.nz|nordvpn.com|nourison.com|nove.tv|oakandfort.com|odia.ig.com.br|oetker-shop.de|okwave.jp|olx.ro|onepodcast.it|online-shop.mb.softbank.jp|online.ysroad.co.jp|onlineshop.ocn.ne.jp|papajohns.com|pccomponentes.com|petsathome.com|pgatoursuperstore.com|pioneer.eu|plaion.com|plantsome.ca|pohjanmaanhyvinvointi.fi|poprosa.com|post.ch|posti.fi|primeoak.co.uk|prisjakt.nu|prisonfellowship.org|prizehometickets.com.au|qrcode-monkey.com|radiko.jp|radio-canada.ca|radiobob.de|radiorur.de|rbbtoday.com|reanimal.jp|resemom.jp|response.jp|rocketnews24.com|rtl.de|rumba.fi|rustih.ru|rydercup.com|sanwacompany.co.jp|saraiva.com.br|saturn.at|savethechildren.it|scan.netsecurity.ne.jp|sciencesetavenir.fr|scotsman.com|service.smt.docomo.ne.jp|shop.clifbar.com|smartbox.com|soranews24.com|soundguys.com|soundi.fi|spektrum.de|sport1.de|sportingnews.com|sportiva.shueisha.co.jp|sportmaster.ru|spyder7.com|stage.parco.jp|store-jp.nintendo.com|str.toyokeizai.net|stressless.com|subscribe.greenbuildingadvisor.com|superesportes.com.br|support.bose.com|support.brother.com|support.creative.com|support.knivesandtools.com|swarajyamag.com|swb.de|talent.lowes.com|talouselama.fi|tbsradio.jp|teddyfood.com|tekniikkatalous.fi|telia.no|theretrofitsource.com|tickets.georgiaaquarium.org|tide.com|tilt.fi|tivi.fi|tn.com.ar|tomshw.it|topper.com.br|toyota-forklifts.se|trademe.co.nz|tradera.com|tredz.co.uk|trendencias.com|trendenciashombre.com|trendyol-milla.com|trendyol.com|tribuna.com|truckspring.com|tugatech.com.pt|tumi.com|tv-asahi.co.jp|type.jp|uclabruins.com|unieuro.it|uniqlo.com|upc.pl|upwork.com|uqr.to|uusisuomi.fi|veho.fi|vidaextra.com|video.lacnews24.it|video.repubblica.it|vip.de|virginmedia.com|vitonica.com|viviennewestwood-tokyo.com|vox.de|vtvgo.vn|wamiz.com|watson.ch|watsons.com.tr|workingclassheroes.co.uk|wowma.jp|wpb.shueisha.co.jp|www.gov.pl|xatakamovil.com|xxl.se|ymobile.jp|yotsuba-shop.com|youpouch.com|zakzak.co.jp|zazzle.com|zennioptical.com|zf1.tohoku-epco.co.jp|zinio.com|zive.cz|zozo.jp
|
|
52940
|
+
@@||googletagmanager.com/gtm.js$domain=3djuegosguias.com|3djuegospc.com|9to5mac.com|acehardware.com|acornonline.com|ads.spotify.com|aena.es|aeromexico.com|afisha.timepad.ru|aliexpress.com|almamedia.fi|ampparit.com|animeanime.jp|anond.hatelabo.jp|applesfera.com|aruba.it|arvopaperi.fi|atgtickets.com|atptour.com|aussiebum.com|auth.max.com|autobild.de|autorevue.cz|avis.com|axeptio.eu|backcountry.com|baywa-re.com|bbcgoodfood.com|benesse-style-care.co.jp|besplatka.ua|beterbed.nl|betten.de|binglee.com.au|book.impress.co.jp|bsa-whitelabel.com|bunte.de|butcherblockco.com|bybit.com|bybitglobal.com|caminteresse.fr|canadiantire.ca|capital.it|carcareplus.jp|carhartt-wip.com|casa.it|ccleaner.com|cdek.ru|cdon.fi|checkout.ao.com|chipotle.com|chronopost.fr|cinemacafe.net|cityheaven.net|clickup.com|cmoa.jp|como.fi|complex.com|compradiccion.com|computerbild.de|coolermaster.com|cora.fr|costco.co.jp|courses.monoprix.fr|cram.com|crello.com|cyclestyle.net|cyclingnews.com|cypress.io|dazeddigital.com|de.hgtv.com|deejay.it|dengekionline.com|dholic.co.jp|digitalocean.com|directoalpaladar.com|directv.com|dlsite.com|dmax.de|dmv.ca.gov|doodle.com|dropps.com|e15.cz|easternbank.com|ecovacs.com|edwardjones.com|eki-net.com|elcorteingles.es|elnuevodia.com|enmotive.com|episodi.fi|eprice.it|ergotron.com|espinof.com|euronics.ee|euronics.it|expressvpn.com|famesupport.com|fandom.com|feex.co.il|festoolusa.com|finanzen.at|finanzen.ch|finanzen.net|flets.com|flytap.com|focus.de|formula1.com|fortress.com.hk|fortune.com|freenet-funk.de|froxy.com|fum.fi|gamebusiness.jp|gamespark.jp|genbeta.com|glamusha.ru|globo.com|gorillamind.com|grandhood.dk|gravitydefyer.com|gumtree.com|harveynorman.co.nz|harveynorman.com.au|hatenacorp.jp|headlightrevolution.com|hepsiburada.com|herculesstands.com|hobbyhall.fi|hobbystock.jp|hostingvergelijker.nl|hotelfountaingate.com.au|idealo.at|idealo.de|iexprofs.nl|iltalehti.fi|independent.co.uk|inferno.fi|inside-games.jp|insiderstore.com.br|iodonna.it|iphoneitalia.com|j-wave.co.jp|jalan.net|jn.pt|join.kazm.com|journaldunet.com|jreastmall.com|junonline.jp|kakuyomu.jp|karriere.at|karriere.heldele.de|kauppalehti.fi|kedronparkhotel.com.au|kfc.co.jp|kinepolis.be|kinepolis.ch|kinepolis.es|kinepolis.fr|kinepolis.lu|kinepolis.nl|komputronik.pl|konami.com|la7.it|larousse.fr|lastampa.it|lasvegasentuidioma.com|lbc.co.uk|lecker.de|level.travel|life.fi|lift.co.za|linternaute.com|lippu.fi|loopearplugs.com|luko.eu|m1.com|m2o.it|magazineluiza.com.br|mainichi.jp|makitani.net|mall.heiwa.jp|mangaseek.net|mcgeeandco.com|mecindo.no|mediamarkt.nl|mediuutiset.fi|mercell.com|meritonsuites.com.au|midilibre.fr|mikrobitti.fi|mirapodo.de|mobilmania.cz|montcopa.org|mustar.meitetsu.co.jp|mycar-life.com|mysmartprice.com|nanikanokami.github.io|nap-camp.com|netcombo.com.br|newscafe.ne.jp|nflgamepass.com|ngv.vic.gov.au|nielsendodgechryslerjeepram.com|nihontsushin.com|noelleeming.co.nz|nordvpn.com|nourison.com|nove.tv|o2.co.uk|oakandfort.com|odia.ig.com.br|oetker-shop.de|okwave.jp|olx.ro|onepodcast.it|online-shop.mb.softbank.jp|online.ysroad.co.jp|onlineshop.ocn.ne.jp|papajohns.com|pccomponentes.com|petsathome.com|pgatoursuperstore.com|pioneer.eu|plaion.com|plantsome.ca|pohjanmaanhyvinvointi.fi|poprosa.com|porsche.com|portofoonwinkel.nl|post.ch|posti.fi|primeoak.co.uk|prisjakt.nu|prisonfellowship.org|prizehometickets.com.au|qrcode-monkey.com|radiko.jp|radio-canada.ca|radiobob.de|radiorur.de|rbbtoday.com|reanimal.jp|resemom.jp|response.jp|rocketnews24.com|rtl.de|rumba.fi|rustih.ru|rydercup.com|sanwacompany.co.jp|saraiva.com.br|saturn.at|savethechildren.it|scan.netsecurity.ne.jp|sciencesetavenir.fr|scotsman.com|service.smt.docomo.ne.jp|servicing.loandepot.com|shop.clifbar.com|smartbox.com|soranews24.com|soundguys.com|soundi.fi|spektrum.de|sport1.de|sportingnews.com|sportiva.shueisha.co.jp|sportmaster.ru|spyder7.com|stage.parco.jp|store-jp.nintendo.com|str.toyokeizai.net|stressless.com|subscribe.greenbuildingadvisor.com|sunnybankhotel.com.au|superesportes.com.br|support.bose.com|support.brother.com|support.creative.com|support.knivesandtools.com|swarajyamag.com|swb.de|talent.lowes.com|talouselama.fi|tbsradio.jp|teddyfood.com|tekniikkatalous.fi|telia.no|thecw.com|theretrofitsource.com|ticketmaster.com|tickets.georgiaaquarium.org|tide.com|tilt.fi|tivi.fi|tn.com.ar|tomshw.it|topper.com.br|toyota-forklifts.se|trademe.co.nz|tradera.com|tredz.co.uk|trendencias.com|trendenciashombre.com|trendyol-milla.com|trendyol.com|tribuna.com|truckspring.com|tugatech.com.pt|tumi.com|tv-asahi.co.jp|type.jp|uclabruins.com|unieuro.it|uniqlo.com|upc.pl|upwork.com|uqr.to|uusisuomi.fi|veho.fi|vidaextra.com|video.lacnews24.it|video.repubblica.it|vip.de|virginmedia.com|vitonica.com|viviennewestwood-tokyo.com|vox.de|vtvgo.vn|wamiz.com|watson.ch|watsons.com.tr|workingclassheroes.co.uk|wowma.jp|wpb.shueisha.co.jp|www.gov.pl|xatakamovil.com|xxl.se|ymobile.jp|yotsuba-shop.com|youpouch.com|zakzak.co.jp|zazzle.com|zennioptical.com|zf1.tohoku-epco.co.jp|zinio.com|zive.cz|zozo.jp
|
|
52964
52941
|
!! google-analytics.com/analytics.js
|
|
52965
52942
|
@@||google-analytics.com/analytics.js$domain=beinsports.com|brooklinen.com|carnesvizzera.ch|cmoa.jp|enmotive.com|healthrangerstore.com|hobbyhall.fi|infoconso-multimedia.fr|jackbox.tv|k2radio.com|koel.com|kowb1290.com|ligtv.com.tr|meritonsuites.com.au|nabortu.ru|news.gamme.com.tw|novatv.bg|papajohns.com|poiskstroek.ru|rzd.ru|saturn.at|schweizerfleisch.ch|skaties.lv|stressless.com|teddyfood.com|tracking.narvar.com|tradera.com|tribuna.com|truwin.com|tuasaude.com|unicef.de|viandesuisse.ch|vox.de|westernunion.com|worldsbiggestpacman.com|xxl.se
|
|
52966
52943
|
!! googletagmanager.com/gtag/js
|
|
52967
|
-
@@||googletagmanager.com/gtag/js$domain=17track.net|9to5mac.com|academy.com|acornonline.com|aena.es|afisha.timepad.ru|aliexpress.com|carhartt-wip.com|cbslocal.com|checkout.ao.com|cmoa.jp|cram.com|devclass.com|dholic.co.jp|ejgiftcards.com|enmotive.com|euronics.ee|factory.pixiv.net|fanpage.it|game.anymanager.io|globo.com|herculesstands.com|honeystinger.com|hostingvergelijker.nl|huion.com|inforesist.org|kawasaki.com|kinepolis.be|kinepolis.ch|kinepolis.es|kinepolis.fr|kinepolis.lu|kinepolis.nl|liene-life.com|livongo.com|m.putlocker.how|mall.heiwa.jp|mediaite.com|mirrativ.com|modehasen.de|montcopa.org|nihontsushin.com|oko.sh|panflix.com.br|papajohns.com|radiosarajevo.ba|rintraccialamiaspedizione.it|schwab.com|seatmaps.com|showroom-live.com|skylar.com|square-enix.com|starblast.io|supplementmart.com.au|timparty.tim.it|toptal.com|truckspring.com|virginmedia.com|virginplus.ca|winefolly.com|winhappy.com|xl-bygg.no|zf1.tohoku-epco.co.jp
|
|
52944
|
+
@@||googletagmanager.com/gtag/js$domain=17track.net|9to5mac.com|academy.com|acornonline.com|aena.es|afisha.timepad.ru|aliexpress.com|carhartt-wip.com|cbslocal.com|checkout.ao.com|cmoa.jp|cram.com|devclass.com|dholic.co.jp|ejgiftcards.com|enmotive.com|euronics.ee|factory.pixiv.net|fanpage.it|game.anymanager.io|globo.com|herculesstands.com|honeystinger.com|hostingvergelijker.nl|huion.com|inforesist.org|kawasaki.com|kinepolis.be|kinepolis.ch|kinepolis.es|kinepolis.fr|kinepolis.lu|kinepolis.nl|liene-life.com|livongo.com|m.putlocker.how|mall.heiwa.jp|mediaite.com|mirrativ.com|modehasen.de|montcopa.org|nihontsushin.com|o2.co.uk|oko.sh|panflix.com.br|papajohns.com|radiosarajevo.ba|rintraccialamiaspedizione.it|schwab.com|seatmaps.com|showroom-live.com|skylar.com|square-enix.com|starblast.io|supplementmart.com.au|ticketmaster.com|timparty.tim.it|toptal.com|truckspring.com|virginmedia.com|virginplus.ca|winefolly.com|winhappy.com|xl-bygg.no|zf1.tohoku-epco.co.jp
|
|
52968
52945
|
!! googleoptimize.com/optimize.js
|
|
52969
52946
|
@@||googleoptimize.com/optimize.js$domain=binglee.com.au|grasshopper.com|in.bookmyshow.com|inquirer.com|investing.com|lacomer.com.mx|lodgecastiron.com|tentree.ca|virginmedia.com
|
|
52970
52947
|
!! google-analytics.com/mp/collect?
|
|
@@ -52986,7 +52963,7 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
52986
52963
|
!! adobedtm.com^*_source.min.js
|
|
52987
52964
|
@@||adobedtm.com^*_source.min.js$domain=ally.com|americanexpress.com|as.com|backcountry.com|crave.ca|disneyplus.disney.co.jp|hilton.com|hl.co.uk|homedepot.ca|kroger.com|mora.jp|nbarizona.com|pnc.com|tatacliq.com|telus.com
|
|
52988
52965
|
!! adobedtm.com^*-source.min.js
|
|
52989
|
-
@@||adobedtm.com^*-source.min.js$script,domain=53.com|aarp.org|ally.com|americanexpress.com|as.com|atresplayer.com|automobiles.honda.com|backcountry.com|bose.ae|bose.at|bose.ca|bose.ch|bose.cl|bose.co|bose.co.jp|bose.co.nz|bose.co.uk|bose.com|bose.com.au|bose.de|bose.dk|bose.es|bose.fi|bose.fr|bose.hk|bose.hu|bose.ie|bose.it|bose.lu|bose.mx|bose.nl|bose.no|bose.pe|bose.pl|bose.se|boseapac.com|bosebelgium.be|boselatam.com|bt.com|cadenaser.com|churchofjesuschrist.org|cibc.com|crave.ca|currys.co.uk|deutsche-bank.de|dollargeneral.com|etihad.com|fedex.com|guitarcenter.com|healthsafe-id.com|helvetia.com|hgtv.com|hilton.com|homedepot.ca|ihg.com|imsa.com|ing.com.au|ingrammicro.com|kroger.com|lenovo.com|manager-magazin.de|marriott.com|mtvuutiset.fi|mybell.bell.ca|natwest.com|nbarizona.com|news.sky.com|personal.natwest.com|plasticsnews.com|pnc.com|poweredbycovermore.com|ralphlauren.com|samsung.com|sephora.com|ssrn.com|tatacliq.com|telegraph.co.uk|telus.com|verizon.com|virginplus.ca|walgreens.com|xfinity.com
|
|
52966
|
+
@@||adobedtm.com^*-source.min.js$script,domain=53.com|aarp.org|ally.com|americanexpress.com|as.com|atresplayer.com|automobiles.honda.com|backcountry.com|bose.ae|bose.at|bose.ca|bose.ch|bose.cl|bose.co|bose.co.jp|bose.co.nz|bose.co.uk|bose.com|bose.com.au|bose.de|bose.dk|bose.es|bose.fi|bose.fr|bose.hk|bose.hu|bose.ie|bose.it|bose.lu|bose.mx|bose.nl|bose.no|bose.pe|bose.pl|bose.se|boseapac.com|bosebelgium.be|boselatam.com|bt.com|cadenaser.com|churchofjesuschrist.org|cibc.com|crave.ca|currys.co.uk|deutsche-bank.de|dollargeneral.com|etihad.com|fedex.com|guitarcenter.com|healthsafe-id.com|healthy.kaiserpermanente.org|helvetia.com|hgtv.com|hilton.com|homedepot.ca|ihg.com|imsa.com|ing.com.au|ingrammicro.com|kroger.com|lenovo.com|manager-magazin.de|marriott.com|mtvuutiset.fi|mybell.bell.ca|natwest.com|nbarizona.com|news.sky.com|personal.natwest.com|plasticsnews.com|pnc.com|poweredbycovermore.com|ralphlauren.com|samsung.com|sephora.com|snsbank.nl|ssrn.com|tatacliq.com|telegraph.co.uk|telus.com|verizon.com|virginplus.ca|walgreens.com|xfinity.com
|
|
52990
52967
|
!! adobedtm.com^*/mbox-contents-
|
|
52991
52968
|
@@||adobedtm.com^*/mbox-contents-$script,domain=absa.co.za|ally.com|americanexpress.com|as.com|backcountry.com|ceair.com|conad.it|costco.com|dhl.de|fcbarcelona.cat|fcbarcelona.cn|fcbarcelona.com|fcbarcelona.es|fcbarcelona.fr|fcbarcelona.jp|firststatesuper.com.au|hgtv.com|lenovo.com|lowes.com|nfl.com|oprah.com|pnc.com|shoppersdrugmart.ca|sony.jp|tatacliq.com|usanetwork.com|vanityfair.com|wired.com
|
|
52992
52969
|
!! adobedtm.com/extensions/
|
|
@@ -53027,7 +53004,7 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
53027
53004
|
!! omtrdc.net
|
|
53028
53005
|
@@||omtrdc.net^*/mbox/json?$xmlhttprequest,domain=absa.co.za|att.com|pnc.com|vodafone.it
|
|
53029
53006
|
!! tags.tiqcdn.com
|
|
53030
|
-
@@||tags.tiqcdn.com/utag/*/utag.sync.js$domain=bankofamerica.com|hsbc.co.uk|samsung.com|sony.jp|vmware.com
|
|
53007
|
+
@@||tags.tiqcdn.com/utag/*/utag.sync.js$domain=bankofamerica.com|hsbc.co.uk|samsung.com|sony.jp|visible.com|vmware.com
|
|
53031
53008
|
! statcounter.com charts https://github.com/uBlockOrigin/uAssets/issues/11321
|
|
53032
53009
|
@@||gs.statcounter.com/chart.php$script,third-party
|
|
53033
53010
|
@@||statcounter.com/js//fusioncharts.charts.js
|
|
@@ -53121,6 +53098,7 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
53121
53098
|
@@||mabanque.fortuneo.fr/js/front/fingerprint2.js$script,domain=mabanque.fortuneo.fr
|
|
53122
53099
|
@@||pmdstatic.net/advertising-$script,xmlhttprequest,domain=programme-tv.net
|
|
53123
53100
|
@@||service-public.fr^*/assets/js/eulerian/eulerian.js$~third-party
|
|
53101
|
+
@@||tag.aticdn.net/piano-analytics.js$script,domain=toureiffel.paris
|
|
53124
53102
|
@@||tra.scds.pmdstatic.net/sourcepoint/$domain=businessinsider.fr|caminteresse.fr|capital.fr|voici.fr
|
|
53125
53103
|
@@||trustcommander.net/iab-tcfapi/tcfapi.js$script,domain=tf1info.fr
|
|
53126
53104
|
!---------- Arabic ----------
|
|
@@ -53194,8 +53172,6 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
53194
53172
|
@@||repubblica.it/pw/pw.js?deskurl=$domain=gelocal.it|ilsecoloxix.it|lastampa.it
|
|
53195
53173
|
@@||sgtm.farmasave.it^$script,~third-party
|
|
53196
53174
|
@@||speedcurve.com/js/lux.js$script,domain=tv8.it
|
|
53197
|
-
@@||sport.virgilio.it/js/web-vitals-evnt.25/web-vitals.attribution.js$script,domain=sport.virgilio.it
|
|
53198
|
-
@@||tecnologia.libero.it/js/dist.1/web-vitals.attribution.js$script,domain=tecnologia.libero.it
|
|
53199
53175
|
@@||thron.com/shared/plugins/tracking/current/tracking-library-min.js$domain=dainese.com
|
|
53200
53176
|
@@||timvision.it/libs/fingerprint/fingerprint.js
|
|
53201
53177
|
@@||track.adform.net/serving/scripts/trackpoint$script,domain=sky.it
|
|
@@ -53208,11 +53184,13 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
53208
53184
|
@@||b-cloud.templatebank.com/js/gtag.js$~third-party
|
|
53209
53185
|
@@||bdash-cloud.com/recommend-script/$script,domain=junonline.jp
|
|
53210
53186
|
@@||bdash-cloud.com/tracking-script/*/tracking.js$domain=junonline.jp
|
|
53187
|
+
@@||c-web.cedyna.co.jp/customer/img/spacer.gif?$~third-party
|
|
53211
53188
|
@@||carsensor.net/usedcar/modules/clicklog_top_lp_revo.php$xmlhttprequest
|
|
53212
53189
|
@@||cdn.kaizenplatform.net^$script,domain=navi.onamae.com
|
|
53213
53190
|
@@||cdn.treasuredata.com/sdk/$script,domain=retty.me
|
|
53214
53191
|
@@||clarity.ms/tag/$script,domain=phileweb.com
|
|
53215
53192
|
@@||cmn.gyro-n.com/js/gyr.min.js$domain=benesse-style-care.co.jp
|
|
53193
|
+
@@||cpt.geniee.jp/hb/*/wrapper.min.js$domain=hoyme.jp
|
|
53216
53194
|
@@||delivery.satr.jp^$script,domain=mieru-ca.com
|
|
53217
53195
|
@@||deteql.net/recommend/provision?$xmlhttprequest,domain=t-fashion.jp
|
|
53218
53196
|
@@||disneyplus.disney.co.jp/view/vendor/analytics/$~third-party
|
|
@@ -53241,6 +53219,7 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
53241
53219
|
@@||linksynergy.com/minified_logic.js$xmlhttprequest
|
|
53242
53220
|
@@||log000.goo.ne.jp/gcgw.js$domain=nttxstore.jp
|
|
53243
53221
|
@@||logly.co.jp/recommend/$image,domain=benesse.ne.jp|sponichi.co.jp
|
|
53222
|
+
@@||moneypartners.co.jp/web/*/fingerprint.js$~third-party
|
|
53244
53223
|
@@||nakanohito.jp^*/bi.js$domain=kenko-tokina.co.jp|myna.go.jp
|
|
53245
53224
|
@@||nittsu.com/Tracking/Scripts/Tracking/track.js
|
|
53246
53225
|
@@||play.dlsite.com/csr/viewer/lib/newrelic.js
|
|
@@ -53256,6 +53235,7 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
53256
53235
|
@@||snva.jp/javascripts/reco/$script,domain=store.charle.co.jp
|
|
53257
53236
|
@@||suumo.jp/sp/js/beacon.js$script,~third-party
|
|
53258
53237
|
@@||tm.r-ad.ne.jp/128/ra346756.js$script,domain=hpdsp.net
|
|
53238
|
+
@@||toweroffantasy-global.com/events/accounttransfer/public/js/fingerprint.js$~third-party
|
|
53259
53239
|
@@||townwork.net/js/AppMeasurement.js$~third-party
|
|
53260
53240
|
@@||treasuredata.com^$script,domain=skincare-univ.com
|
|
53261
53241
|
@@||twitter.com/oct.js$domain=jp.square-enix.com
|
|
@@ -53289,7 +53269,6 @@ mustar.meitetsu.co.jp##body[style="opacity: 0;"]:style(opacity: 1 !important;)
|
|
|
53289
53269
|
@@||sascdn.com/tag/$script,domain=filmweb.pl
|
|
53290
53270
|
@@||smog.moja-ostroleka.pl/mapa/sensorsdata.json$~third-party
|
|
53291
53271
|
@@||staty.portalradiowy.pl/wstats/$script,third-party
|
|
53292
|
-
@@||unpkg.com/web-vitals/dist/web-vitals.base.iife.js$script,domain=wpolityce.pl
|
|
53293
53272
|
!---------- Portuguese ----------
|
|
53294
53273
|
@@||auth2.picpay.com^*/event-tracking.js$script,~third-party
|
|
53295
53274
|
@@||d.tailtarget.com/profiles.js$domain=superesportes.com.br
|