@browserless.io/browserless 2.33.0 → 2.34.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 +13 -1
- package/README.md +1 -1
- package/build/config.d.ts +1 -1
- package/build/config.js +1 -1
- package/build/http.d.ts +10 -0
- package/build/http.js +5 -0
- package/build/limiter.spec.js +1 -1
- package/build/routes/chrome/http/content.post.body.json +18 -109
- package/build/routes/chrome/http/pdf.post.body.json +18 -109
- package/build/routes/chrome/http/scrape.post.body.json +18 -109
- package/build/routes/chrome/http/screenshot.post.body.json +18 -109
- package/build/routes/chrome/tests/content.spec.js +12 -12
- package/build/routes/chrome/tests/page-websocket.spec.js +3 -3
- package/build/routes/chrome/tests/pdf.spec.js +13 -13
- package/build/routes/chrome/tests/performance.spec.js +4 -4
- package/build/routes/chrome/tests/scrape.spec.js +13 -13
- package/build/routes/chrome/tests/screenshot.spec.js +14 -14
- package/build/routes/chromium/http/content.post.body.json +18 -109
- package/build/routes/chromium/http/pdf.post.body.json +18 -109
- package/build/routes/chromium/http/scrape.post.body.json +18 -109
- package/build/routes/chromium/http/screenshot.post.body.json +18 -109
- package/build/routes/chromium/tests/content.spec.js +13 -13
- package/build/routes/chromium/tests/page-websocket.spec.js +3 -3
- package/build/routes/chromium/tests/pdf.spec.js +13 -13
- package/build/routes/chromium/tests/performance.spec.js +4 -4
- package/build/routes/chromium/tests/scrape.spec.js +13 -13
- package/build/routes/chromium/tests/screenshot.spec.js +14 -14
- package/build/routes/edge/http/content.post.body.json +18 -109
- package/build/routes/edge/http/pdf.post.body.json +18 -109
- package/build/routes/edge/http/scrape.post.body.json +18 -109
- package/build/routes/edge/http/screenshot.post.body.json +18 -109
- package/build/routes/edge/tests/content.spec.js +12 -12
- package/build/routes/edge/tests/page-websocket.spec.js +3 -3
- package/build/routes/edge/tests/pdf.spec.js +13 -13
- package/build/routes/edge/tests/performance.spec.js +4 -4
- package/build/routes/edge/tests/scrape.spec.js +13 -13
- package/build/routes/edge/tests/screenshot.spec.js +14 -14
- package/build/routes/management/http/kill.get.d.ts +1 -1
- package/build/routes/management/http/kill.get.query.json +0 -3
- package/build/routes/management/http/pressure.get.d.ts +1 -1
- package/build/routes/management/http/pressure.get.js +12 -4
- package/build/routes/management/http/sessions.get.d.ts +1 -1
- package/build/routes/management/http/sessions.get.query.json +0 -3
- package/build/routes/management/tests/management.spec.js +13 -13
- package/build/server.js +12 -4
- package/build/shared/content.http.js +9 -2
- package/build/shared/pdf.http.js +9 -2
- package/build/shared/scrape.http.js +9 -2
- package/build/shared/screenshot.http.js +9 -2
- package/build/shim.d.ts +5 -0
- package/build/shim.js +13 -0
- package/build/shim.spec.js +28 -1
- package/build/types.d.ts +21 -1
- package/build/types.js +14 -0
- package/build/utils.d.ts +1 -0
- package/build/utils.js +4 -3
- package/extensions/ublocklite/_locales/ar/messages.json +8 -8
- package/extensions/ublocklite/_locales/be/messages.json +8 -8
- package/extensions/ublocklite/_locales/fi/messages.json +18 -18
- package/extensions/ublocklite/_locales/hi/messages.json +21 -21
- package/extensions/ublocklite/_locales/hu/messages.json +8 -8
- package/extensions/ublocklite/_locales/id/messages.json +15 -15
- package/extensions/ublocklite/_locales/ja/messages.json +23 -23
- package/extensions/ublocklite/_locales/nl/messages.json +1 -1
- package/extensions/ublocklite/_locales/pt_BR/messages.json +15 -15
- package/extensions/ublocklite/_locales/pt_PT/messages.json +18 -18
- package/extensions/ublocklite/_locales/ru/messages.json +1 -1
- package/extensions/ublocklite/_locales/th/messages.json +30 -30
- package/extensions/ublocklite/_locales/tr/messages.json +1 -1
- package/extensions/ublocklite/_locales/uk/messages.json +10 -10
- package/extensions/ublocklite/_locales/vi/messages.json +8 -8
- package/extensions/ublocklite/css/dashboard.css +9 -4
- package/extensions/ublocklite/css/picker-ui.css +1 -1
- package/extensions/ublocklite/css/report.css +0 -8
- package/extensions/ublocklite/css/settings.css +17 -13
- package/extensions/ublocklite/dashboard.html +16 -12
- package/extensions/ublocklite/js/background.js +75 -19
- package/extensions/ublocklite/js/config.js +2 -1
- package/extensions/ublocklite/js/dashboard.js +9 -5
- package/extensions/ublocklite/js/debug.js +69 -6
- package/extensions/ublocklite/js/develop.js +1 -1
- package/extensions/ublocklite/js/ext-compat.js +9 -2
- package/extensions/ublocklite/js/ext.js +6 -0
- package/extensions/ublocklite/js/fetch.js +3 -1
- package/extensions/ublocklite/js/filter-lists.js +17 -9
- package/extensions/ublocklite/js/filter-manager.js +80 -28
- package/extensions/ublocklite/js/jsonpath.js +65 -26
- package/extensions/ublocklite/js/mode-manager.js +5 -1
- package/extensions/ublocklite/js/picker-ui.js +32 -41
- package/extensions/ublocklite/js/popup.js +11 -11
- package/extensions/ublocklite/js/redirect-resources.js +1 -0
- package/extensions/ublocklite/js/report.js +4 -2
- package/extensions/ublocklite/js/ro-dnr-editor.js +6 -1
- package/extensions/ublocklite/js/ruleset-manager.js +38 -13
- package/extensions/ublocklite/js/scripting/css-generic.js +0 -1
- package/extensions/ublocklite/js/scripting/css-procedural-api.js +821 -0
- package/extensions/ublocklite/js/scripting/css-procedural.js +62 -718
- package/extensions/ublocklite/{rulesets/scripting/declarative/ubol-tests.js → js/scripting/css-user-terminate.js} +16 -13
- package/extensions/ublocklite/js/scripting/css-user.js +12 -1
- package/extensions/ublocklite/js/scripting/picker.js +46 -13
- package/extensions/ublocklite/js/scripting/tool-overlay.js +14 -8
- package/extensions/ublocklite/js/scripting/unpicker.js +5 -9
- package/extensions/ublocklite/js/scripting/zapper.js +1 -1
- package/extensions/ublocklite/js/scripting-manager.js +4 -75
- package/extensions/ublocklite/js/settings.js +3 -5
- package/extensions/ublocklite/js/static-filtering-parser.js +3 -3
- package/extensions/ublocklite/js/tool-overlay-ui.js +20 -24
- package/extensions/ublocklite/js/troubleshooting.js +11 -19
- package/extensions/ublocklite/js/ubo-parser.js +1 -1
- package/extensions/ublocklite/js/unpicker-ui.js +16 -9
- package/extensions/ublocklite/js/zapper-ui.js +3 -2
- package/extensions/ublocklite/manifest.json +12 -2
- package/extensions/ublocklite/picker-ui.html +1 -1
- package/extensions/ublocklite/report.html +0 -1
- package/extensions/ublocklite/rulesets/generic-details.json +28 -16
- package/extensions/ublocklite/rulesets/main/adguard-mobile.json +5 -2
- package/extensions/ublocklite/rulesets/main/annoyances-cookies.json +27 -15
- package/extensions/ublocklite/rulesets/main/annoyances-notifications.json +276 -0
- package/extensions/ublocklite/rulesets/main/annoyances-others.json +4 -3
- package/extensions/ublocklite/rulesets/main/annoyances-overlays.json +4 -4
- package/extensions/ublocklite/rulesets/main/annoyances-widgets.json +3 -2
- package/extensions/ublocklite/rulesets/main/bgr-0.json +54 -68
- package/extensions/ublocklite/rulesets/main/block-lan.json +3 -2
- package/extensions/ublocklite/rulesets/main/chn-0.json +28 -21
- package/extensions/ublocklite/rulesets/main/deu-0.json +7 -6
- package/extensions/ublocklite/rulesets/main/dpollock-0.json +8 -41
- package/extensions/ublocklite/rulesets/main/easylist.json +68 -42
- package/extensions/ublocklite/rulesets/main/easyprivacy.json +89 -12
- package/extensions/ublocklite/rulesets/main/fra-0.json +19 -19
- package/extensions/ublocklite/rulesets/main/hrv-0.json +5 -5
- package/extensions/ublocklite/rulesets/main/hun-0.json +5 -3
- package/extensions/ublocklite/rulesets/main/idn-0.json +13 -2
- package/extensions/ublocklite/rulesets/main/ind-0.json +34 -26
- package/extensions/ublocklite/rulesets/main/irn-0.json +676 -635
- package/extensions/ublocklite/rulesets/main/isr-0.json +1 -0
- package/extensions/ublocklite/rulesets/main/jpn-1.json +55 -31
- package/extensions/ublocklite/rulesets/main/kor-1.json +9 -4
- package/extensions/ublocklite/rulesets/main/mkd-0.json +1 -1
- package/extensions/ublocklite/rulesets/main/nld-0.json +2 -1
- package/extensions/ublocklite/rulesets/main/nor-0.json +35 -13
- package/extensions/ublocklite/rulesets/main/pgl.json +36 -15
- package/extensions/ublocklite/rulesets/main/pol-0.json +3 -2
- package/extensions/ublocklite/rulesets/main/rus-0.json +37 -37
- package/extensions/ublocklite/rulesets/main/rus-1.json +7 -3
- package/extensions/ublocklite/rulesets/main/spa-1.json +15 -33
- package/extensions/ublocklite/rulesets/main/stevenblack-hosts.json +15675 -15915
- package/extensions/ublocklite/rulesets/main/swe-1.json +46 -34
- package/extensions/ublocklite/rulesets/main/tur-0.json +56 -32
- package/extensions/ublocklite/rulesets/main/ublock-badware.json +87 -89
- package/extensions/ublocklite/rulesets/main/ublock-experimental.json +3 -0
- package/extensions/ublocklite/rulesets/main/ublock-filters.json +139 -69
- package/extensions/ublocklite/rulesets/main/ukr-0.json +5 -7
- package/extensions/ublocklite/rulesets/main/urlhaus-full.json +546 -1235
- package/extensions/ublocklite/rulesets/main/vie-1.json +55 -57
- package/extensions/ublocklite/rulesets/modify-headers/chn-0.json +4 -2
- package/extensions/ublocklite/rulesets/modify-headers/fra-0.json +2 -1
- package/extensions/ublocklite/rulesets/modify-headers/irn-0.json +14 -14
- package/extensions/ublocklite/rulesets/modify-headers/ublock-filters.json +4 -8
- package/extensions/ublocklite/rulesets/modify-headers/vie-1.json +1 -1
- package/extensions/ublocklite/rulesets/redirect/annoyances-overlays.json +1 -1
- package/extensions/ublocklite/rulesets/redirect/easyprivacy.json +35 -0
- package/extensions/ublocklite/rulesets/redirect/irn-0.json +23 -23
- package/extensions/ublocklite/rulesets/redirect/kor-1.json +1 -1
- package/extensions/ublocklite/rulesets/redirect/rus-0.json +2 -1
- package/extensions/ublocklite/rulesets/redirect/spa-1.json +1 -2
- package/extensions/ublocklite/rulesets/redirect/tur-0.json +2 -3
- package/extensions/ublocklite/rulesets/redirect/ublock-badware.json +18 -0
- package/extensions/ublocklite/rulesets/redirect/ublock-filters.json +20 -15
- package/extensions/ublocklite/rulesets/redirect/vie-1.json +5 -22
- package/extensions/ublocklite/rulesets/regex/chn-0.json +1 -1
- package/extensions/ublocklite/rulesets/regex/ita-0.json +1 -0
- package/extensions/ublocklite/rulesets/regex/jpn-1.json +1 -1
- package/extensions/ublocklite/rulesets/regex/tur-0.json +4 -1
- package/extensions/ublocklite/rulesets/regex/ublock-badware.json +3 -8
- package/extensions/ublocklite/rulesets/regex/ublock-filters.json +14 -9
- package/extensions/ublocklite/rulesets/regex/ukr-0.json +3 -5
- package/extensions/ublocklite/rulesets/removeparam/adguard-spyware-url.json +26 -11
- package/extensions/ublocklite/rulesets/removeparam/irn-0.json +16 -15
- package/extensions/ublocklite/rulesets/removeparam/rus-1.json +3 -2
- package/extensions/ublocklite/rulesets/removeparam/ublock-filters.json +6 -5
- package/extensions/ublocklite/rulesets/ruleset-details.json +332 -324
- package/extensions/ublocklite/rulesets/scripting/generic/annoyances-cookies.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/generic/annoyances-notifications.js +87 -0
- package/extensions/ublocklite/rulesets/scripting/generic/annoyances-social.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/generic/bgr-0.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/generic/chn-0.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/generic/deu-0.js +1 -1
- package/extensions/ublocklite/rulesets/scripting/generic/easylist.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/generic/est-0.js +1 -1
- package/extensions/ublocklite/rulesets/scripting/generic/fra-0.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/generic/hrv-0.js +1 -1
- package/extensions/ublocklite/rulesets/scripting/generic/idn-0.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/generic/ind-0.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/generic/irn-0.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/generic/jpn-1.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/generic/kor-1.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/generic/nor-0.js +1 -1
- package/extensions/ublocklite/rulesets/scripting/generic/pol-0.js +1 -1
- package/extensions/ublocklite/rulesets/scripting/generic/rou-1.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/generic/rus-0.js +1 -1
- package/extensions/ublocklite/rulesets/scripting/generic/swe-1.js +1 -1
- package/extensions/ublocklite/rulesets/scripting/generic/tur-0.js +1 -1
- package/extensions/ublocklite/rulesets/scripting/generic/ublock-filters.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/generic/ukr-0.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/generic/vie-1.js +1 -1
- package/extensions/ublocklite/rulesets/scripting/{declarative/isr-0.js → generichigh/annoyances-notifications.css} +15 -21
- package/extensions/ublocklite/rulesets/scripting/generichigh/chn-0.css +14 -0
- package/extensions/ublocklite/rulesets/scripting/generichigh/easylist.css +3 -0
- package/extensions/ublocklite/rulesets/scripting/generichigh/est-0.css +1 -0
- package/extensions/ublocklite/rulesets/scripting/generichigh/idn-0.css +34 -0
- package/extensions/ublocklite/rulesets/scripting/generichigh/irn-0.css +27 -0
- package/extensions/ublocklite/rulesets/scripting/generichigh/nor-0.css +17 -0
- package/extensions/ublocklite/rulesets/scripting/generichigh/pol-0.css +8 -0
- package/extensions/ublocklite/rulesets/scripting/generichigh/rou-1.css +1 -0
- package/extensions/ublocklite/rulesets/scripting/generichigh/rus-0.css +107 -0
- package/extensions/ublocklite/rulesets/scripting/generichigh/rus-1.css +3 -0
- package/extensions/ublocklite/rulesets/scripting/generichigh/swe-1.css +1 -0
- package/extensions/ublocklite/rulesets/scripting/generichigh/tur-0.css +1 -0
- package/extensions/ublocklite/rulesets/scripting/generichigh/ublock-filters.css +6 -2
- package/extensions/ublocklite/rulesets/scripting/generichigh/vie-1.css +1 -0
- package/extensions/ublocklite/rulesets/scripting/procedural/adguard-mobile.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/procedural/alb-0.js +4 -4
- package/extensions/ublocklite/rulesets/scripting/procedural/annoyances-cookies.js +4 -4
- package/extensions/ublocklite/rulesets/scripting/procedural/annoyances-notifications.js +42 -0
- package/extensions/ublocklite/rulesets/scripting/procedural/annoyances-others.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/procedural/annoyances-overlays.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/procedural/annoyances-social.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/procedural/chn-0.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/procedural/cze-0.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/procedural/deu-0.js +1 -1
- package/extensions/ublocklite/rulesets/scripting/procedural/easylist.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/{declarative → procedural}/easyprivacy.js +5 -5
- package/extensions/ublocklite/rulesets/scripting/procedural/est-0.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/procedural/fin-0.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/procedural/fra-0.js +4 -4
- package/extensions/ublocklite/rulesets/scripting/procedural/grc-0.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/procedural/hrv-0.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/procedural/hun-0.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/procedural/idn-0.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/procedural/ind-0.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/procedural/irn-0.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/procedural/isl-0.js +1 -1
- package/extensions/ublocklite/rulesets/scripting/procedural/isr-0.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/procedural/ita-0.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/procedural/jpn-1.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/procedural/kor-1.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/procedural/ltu-0.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/procedural/lva-0.js +1 -1
- package/extensions/ublocklite/rulesets/scripting/{declarative → procedural}/mkd-0.js +4 -4
- package/extensions/ublocklite/rulesets/scripting/procedural/nld-0.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/procedural/nor-0.js +4 -4
- package/extensions/ublocklite/rulesets/scripting/procedural/pol-0.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/procedural/rou-1.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/procedural/rus-0.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/procedural/rus-1.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/procedural/spa-0.js +1 -1
- package/extensions/ublocklite/rulesets/scripting/procedural/spa-1.js +4 -4
- package/extensions/ublocklite/rulesets/scripting/procedural/svn-0.js +1 -1
- package/extensions/ublocklite/rulesets/scripting/procedural/swe-1.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/procedural/tha-0.js +1 -1
- package/extensions/ublocklite/rulesets/scripting/procedural/tur-0.js +4 -4
- package/extensions/ublocklite/rulesets/scripting/procedural/ublock-badware.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/procedural/ublock-filters.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/procedural/ubol-tests.js +1 -1
- package/extensions/ublocklite/rulesets/scripting/procedural/ukr-0.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/procedural/vie-1.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/scriptlet/adguard-mobile.abort-current-script.js +6 -5
- package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-cookies.abort-current-script.js +4 -3
- package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-cookies.set-constant.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-cookies.set-cookie-reload.js +446 -0
- package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-cookies.set-cookie.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-cookies.set-local-storage-item.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-cookies.set-session-storage-item.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-cookies.trusted-click-element.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-cookies.trusted-set-cookie.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-cookies.trusted-set-local-storage-item.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-notifications.abort-current-script.js +452 -0
- package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-notifications.abort-on-property-write.js +347 -0
- package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-notifications.addEventListener-defuser.js +498 -0
- package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-notifications.remove-attr.js +405 -0
- package/extensions/ublocklite/rulesets/scripting/scriptlet/{tur-0.set-attr.js → annoyances-notifications.remove-class.js} +90 -119
- package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-notifications.set-constant.js +541 -0
- package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-notifications.set-cookie.js +442 -0
- package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-notifications.set-local-storage-item.js +399 -0
- package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-notifications.set-session-storage-item.js +399 -0
- package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-overlays.abort-current-script.js +5 -4
- package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-overlays.abort-on-property-read.js +1 -1
- package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-overlays.addEventListener-defuser.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-overlays.prevent-setTimeout.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-overlays.prevent-window-open.js +1 -1
- package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-overlays.remove-node-text.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-overlays.set-constant.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-overlays.set-cookie.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/chn-0.abort-current-script.js +6 -5
- package/extensions/ublocklite/rulesets/scripting/scriptlet/chn-0.addEventListener-defuser.js +1 -1
- package/extensions/ublocklite/rulesets/scripting/scriptlet/chn-0.adjust-setTimeout.js +1 -1
- package/extensions/ublocklite/rulesets/scripting/scriptlet/chn-0.json-prune.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/scriptlet/chn-0.prevent-fetch.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/chn-0.prevent-setTimeout.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/chn-0.set-constant.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/cze-0.abort-current-script.js +4 -3
- package/extensions/ublocklite/rulesets/scripting/scriptlet/easyprivacy.abort-current-script.js +5 -4
- package/extensions/ublocklite/rulesets/scripting/scriptlet/easyprivacy.set-constant.js +1 -1
- package/extensions/ublocklite/rulesets/scripting/scriptlet/easyprivacy.set-local-storage-item.js +1 -1
- package/extensions/ublocklite/rulesets/scripting/scriptlet/fin-0.abort-current-script.js +4 -3
- package/extensions/ublocklite/rulesets/scripting/scriptlet/fra-0.abort-current-script.js +4 -3
- package/extensions/ublocklite/rulesets/scripting/scriptlet/fra-0.prevent-requestAnimationFrame.js +407 -0
- package/extensions/ublocklite/rulesets/scripting/scriptlet/fra-0.prevent-setTimeout.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/fra-0.prevent-window-open.js +1 -1
- package/extensions/ublocklite/rulesets/scripting/scriptlet/fra-0.remove-node-text.js +449 -0
- package/extensions/ublocklite/rulesets/scripting/scriptlet/hun-0.abort-current-script.js +6 -5
- package/extensions/ublocklite/rulesets/scripting/scriptlet/hun-0.set-local-storage-item.js +399 -0
- package/extensions/ublocklite/rulesets/scripting/scriptlet/idn-0.abort-current-script.js +7 -6
- package/extensions/ublocklite/rulesets/scripting/scriptlet/idn-0.abort-on-property-read.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/scriptlet/idn-0.addEventListener-defuser.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/irn-0.abort-current-script.js +4 -3
- package/extensions/ublocklite/rulesets/scripting/scriptlet/irn-0.set-local-storage-item.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/irn-0.set-session-storage-item.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/isr-0.abort-current-script.js +4 -3
- package/extensions/ublocklite/rulesets/scripting/scriptlet/jpn-1.abort-current-script.js +6 -5
- package/extensions/ublocklite/rulesets/scripting/scriptlet/jpn-1.abort-on-property-write.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/jpn-1.addEventListener-defuser.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/jpn-1.adjust-setTimeout.js +1 -1
- package/extensions/ublocklite/rulesets/scripting/scriptlet/jpn-1.href-sanitizer.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/jpn-1.remove-attr.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/jpn-1.remove-node-text.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/jpn-1.set-constant.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/kor-1.abort-current-script.js +4 -3
- package/extensions/ublocklite/rulesets/scripting/scriptlet/kor-1.set-constant.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/kor-1.spoof-css.js +422 -0
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ltu-0.abort-current-script.js +4 -3
- package/extensions/ublocklite/rulesets/scripting/scriptlet/nld-0.abort-current-script.js +4 -3
- package/extensions/ublocklite/rulesets/scripting/scriptlet/nld-0.prevent-setTimeout.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/nld-0.prevent-xhr.js +584 -0
- package/extensions/ublocklite/rulesets/scripting/scriptlet/nor-0.abort-current-script.js +4 -3
- package/extensions/ublocklite/rulesets/scripting/scriptlet/pol-0.abort-current-script.js +4 -3
- package/extensions/ublocklite/rulesets/scripting/scriptlet/rou-1.abort-current-script.js +4 -3
- package/extensions/ublocklite/rulesets/scripting/scriptlet/rou-1.prevent-setInterval.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/rou-1.prevent-setTimeout.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/rou-1.prevent-window-open.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/rus-0.abort-current-script.js +5 -4
- package/extensions/ublocklite/rulesets/scripting/scriptlet/rus-0.abort-on-property-read.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/rus-0.addEventListener-defuser.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/scriptlet/rus-0.adjust-setInterval.js +1 -1
- package/extensions/ublocklite/rulesets/scripting/scriptlet/rus-0.href-sanitizer.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/rus-0.json-prune-fetch-response.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/rus-0.prevent-fetch.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/scriptlet/rus-0.remove-node-text.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/rus-0.set-constant.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/scriptlet/rus-0.set-cookie.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/rus-1.prevent-xhr.js +1 -1
- package/extensions/ublocklite/rulesets/scripting/scriptlet/rus-1.set-constant.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/scriptlet/spa-1.abort-current-script.js +6 -5
- package/extensions/ublocklite/rulesets/scripting/scriptlet/spa-1.abort-on-property-read.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/spa-1.abort-on-property-write.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/spa-1.addEventListener-defuser.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/scriptlet/spa-1.adjust-setTimeout.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/spa-1.noeval-if.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/scriptlet/spa-1.prevent-fetch.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/spa-1.prevent-setTimeout.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/spa-1.prevent-window-open.js +1 -1
- package/extensions/ublocklite/rulesets/scripting/scriptlet/spa-1.remove-attr.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/spa-1.set-constant.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/spa-1.set-local-storage-item.js +1 -1
- package/extensions/ublocklite/rulesets/scripting/scriptlet/swe-1.abort-current-script.js +5 -4
- package/extensions/ublocklite/rulesets/scripting/scriptlet/swe-1.noeval-if.js +1 -1
- package/extensions/ublocklite/rulesets/scripting/scriptlet/swe-1.prevent-xhr.js +1 -1
- package/extensions/ublocklite/rulesets/scripting/scriptlet/swe-1.set-constant.js +1 -1
- package/extensions/ublocklite/rulesets/scripting/scriptlet/tur-0.abort-current-script.js +4 -3
- package/extensions/ublocklite/rulesets/scripting/scriptlet/tur-0.abort-on-property-read.js +1 -1
- package/extensions/ublocklite/rulesets/scripting/scriptlet/tur-0.abort-on-property-write.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/tur-0.adjust-setInterval.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/tur-0.adjust-setTimeout.js +332 -0
- package/extensions/ublocklite/rulesets/scripting/scriptlet/tur-0.m3u-prune.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/tur-0.prevent-window-open.js +1 -1
- package/extensions/ublocklite/rulesets/scripting/scriptlet/tur-0.remove-attr.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/tur-0.set-constant.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/tur-0.set-local-storage-item.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-badware.abort-current-script.js +4 -3
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.abort-current-script.js +7 -6
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.abort-on-property-read.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.abort-on-property-write.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.abort-on-stack-trace.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.addEventListener-defuser.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.adjust-setInterval.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.adjust-setTimeout.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.close-window.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.href-sanitizer.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.json-edit.js +69 -29
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.json-prune-fetch-response.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.json-prune.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.jsonl-edit-xhr-response.js +70 -30
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.noeval-if.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.nowebrtc.js +1 -1
- package/extensions/ublocklite/rulesets/scripting/scriptlet/{irn-0.close-window.js → ublock-filters.prevent-canvas.js} +14 -21
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.prevent-fetch.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.prevent-requestAnimationFrame.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.prevent-setInterval.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.prevent-setTimeout.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.prevent-window-open.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.prevent-xhr.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.remove-attr.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.remove-cookie.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.remove-node-text.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.set-constant.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.set-cookie.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.set-local-storage-item.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.set-session-storage-item.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.trusted-click-element.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.trusted-create-html.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.trusted-json-edit-fetch-response.js +927 -0
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.trusted-override-element-method.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/scriptlet/{hun-0.prevent-fetch.js → ublock-filters.trusted-prevent-fetch.js} +7 -7
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.trusted-replace-argument.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.trusted-replace-fetch-response.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.trusted-replace-node-text.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.trusted-replace-outbound-text.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.trusted-set-attr.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.trusted-set-constant.js +4 -4
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.trusted-set-cookie.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.trusted-set-local-storage-item.js +1 -1
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.trusted-suppress-native-method.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ubol-tests.jsonl-edit-fetch-response.js +68 -28
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ubol-tests.jsonl-edit-xhr-response.js +68 -28
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ukr-0.abort-current-script.js +4 -3
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ukr-0.abort-on-property-read.js +1 -1
- package/extensions/ublocklite/rulesets/scripting/scriptlet/vie-1.abort-current-script.js +6 -5
- package/extensions/ublocklite/rulesets/scripting/scriptlet/vie-1.abort-on-property-read.js +2 -2
- package/extensions/ublocklite/rulesets/scripting/scriptlet/vie-1.set-constant.js +1 -1
- package/extensions/ublocklite/rulesets/scripting/specific/adguard-mobile.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/specific/annoyances-cookies.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/specific/annoyances-notifications.js +42 -0
- package/extensions/ublocklite/rulesets/scripting/specific/annoyances-others.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/specific/annoyances-overlays.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/specific/annoyances-social.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/specific/bgr-0.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/specific/chn-0.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/specific/cze-0.js +1 -1
- package/extensions/ublocklite/rulesets/scripting/specific/deu-0.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/specific/easylist.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/specific/fin-0.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/specific/fra-0.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/specific/hrv-0.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/specific/hun-0.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/specific/idn-0.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/specific/ind-0.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/specific/irn-0.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/specific/isr-0.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/specific/ita-0.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/specific/jpn-1.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/specific/kor-1.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/specific/nld-0.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/specific/nor-0.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/specific/pol-0.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/specific/rou-1.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/specific/rus-0.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/specific/rus-1.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/specific/spa-1.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/specific/swe-1.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/specific/tur-0.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/specific/ublock-filters.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/specific/ukr-0.js +3 -3
- package/extensions/ublocklite/rulesets/scripting/specific/vie-1.js +3 -3
- package/extensions/ublocklite/rulesets/scriptlet-details.json +408 -341
- package/extensions/ublocklite/rulesets/strictblock/adguard-mobile.json +13 -1
- package/extensions/ublocklite/rulesets/strictblock/annoyances-cookies.json +0 -1
- package/extensions/ublocklite/rulesets/strictblock/annoyances-notifications.json +41 -0
- package/extensions/ublocklite/rulesets/strictblock/bgr-0.json +1 -2
- package/extensions/ublocklite/rulesets/strictblock/chn-0.json +278 -1
- package/extensions/ublocklite/rulesets/strictblock/dpollock-0.json +8 -41
- package/extensions/ublocklite/rulesets/strictblock/easylist.json +13 -14
- package/extensions/ublocklite/rulesets/strictblock/easyprivacy.json +74 -3
- package/extensions/ublocklite/rulesets/strictblock/fra-0.json +500 -41
- package/extensions/ublocklite/rulesets/strictblock/hun-0.json +2 -0
- package/extensions/ublocklite/rulesets/strictblock/irn-0.json +6 -2
- package/extensions/ublocklite/rulesets/strictblock/jpn-1.json +182 -171
- package/extensions/ublocklite/rulesets/strictblock/kor-1.json +5 -0
- package/extensions/ublocklite/rulesets/strictblock/mkd-0.json +1 -0
- package/extensions/ublocklite/rulesets/strictblock/nor-0.json +6 -4
- package/extensions/ublocklite/rulesets/strictblock/pgl.json +36 -15
- package/extensions/ublocklite/rulesets/strictblock/pol-0.json +1 -0
- package/extensions/ublocklite/rulesets/strictblock/rus-1.json +1 -0
- package/extensions/ublocklite/rulesets/strictblock/spa-1.json +1 -0
- package/extensions/ublocklite/rulesets/strictblock/stevenblack-hosts.json +15675 -15915
- package/extensions/ublocklite/rulesets/strictblock/swe-1.json +6 -55
- package/extensions/ublocklite/rulesets/strictblock/tur-0.json +0 -1
- package/extensions/ublocklite/rulesets/strictblock/ublock-badware.json +677 -670
- package/extensions/ublocklite/rulesets/strictblock/ublock-filters.json +1 -1
- package/extensions/ublocklite/rulesets/strictblock/ukr-0.json +1 -4
- package/extensions/ublocklite/rulesets/strictblock/urlhaus-full.json +546 -1235
- package/extensions/ublocklite/rulesets/strictblock/vie-1.json +2 -2
- package/extensions/ublocklite/rulesets/urlskip/ublock-filters.json +97 -14
- package/extensions/ublocklite/ublock.zip +0 -0
- package/extensions/ublocklite/web_accessible_resources/fingerprint2.js +1 -1
- package/package.json +12 -12
- package/src/config.ts +1 -1
- package/src/http.ts +5 -0
- package/src/limiter.spec.ts +1 -1
- package/src/routes/chrome/tests/content.spec.ts +12 -12
- package/src/routes/chrome/tests/page-websocket.spec.ts +3 -3
- package/src/routes/chrome/tests/pdf.spec.ts +13 -13
- package/src/routes/chrome/tests/performance.spec.ts +4 -4
- package/src/routes/chrome/tests/scrape.spec.ts +13 -13
- package/src/routes/chrome/tests/screenshot.spec.ts +14 -14
- package/src/routes/chromium/tests/content.spec.ts +13 -13
- package/src/routes/chromium/tests/page-websocket.spec.ts +3 -3
- package/src/routes/chromium/tests/pdf.spec.ts +13 -13
- package/src/routes/chromium/tests/performance.spec.ts +4 -4
- package/src/routes/chromium/tests/scrape.spec.ts +13 -13
- package/src/routes/chromium/tests/screenshot.spec.ts +14 -14
- package/src/routes/edge/tests/content.spec.ts +12 -12
- package/src/routes/edge/tests/page-websocket.spec.ts +3 -3
- package/src/routes/edge/tests/pdf.spec.ts +13 -13
- package/src/routes/edge/tests/performance.spec.ts +4 -4
- package/src/routes/edge/tests/scrape.spec.ts +13 -13
- package/src/routes/edge/tests/screenshot.spec.ts +14 -14
- package/src/routes/management/http/kill.get.ts +1 -1
- package/src/routes/management/http/pressure.get.ts +15 -3
- package/src/routes/management/http/sessions.get.ts +1 -1
- package/src/routes/management/tests/management.spec.ts +13 -13
- package/src/server.ts +17 -3
- package/src/shared/content.http.ts +9 -1
- package/src/shared/pdf.http.ts +9 -1
- package/src/shared/scrape.http.ts +9 -1
- package/src/shared/screenshot.http.ts +9 -1
- package/src/shim.spec.ts +40 -1
- package/src/shim.ts +17 -0
- package/src/types.ts +32 -1
- package/src/utils.ts +5 -3
- package/static/docs/swagger.json +455 -150
- package/static/docs/swagger.min.json +454 -149
- package/static/function/client.js +46 -8
- package/static/function/index.html +46 -8
- package/extensions/ublocklite/js/scripting/css-declarative.js +0 -116
- package/extensions/ublocklite/rulesets/scripting/declarative/adguard-mobile.js +0 -42
- package/extensions/ublocklite/rulesets/scripting/declarative/alb-0.js +0 -42
- package/extensions/ublocklite/rulesets/scripting/declarative/annoyances-cookies.js +0 -42
- package/extensions/ublocklite/rulesets/scripting/declarative/annoyances-others.js +0 -42
- package/extensions/ublocklite/rulesets/scripting/declarative/annoyances-overlays.js +0 -42
- package/extensions/ublocklite/rulesets/scripting/declarative/annoyances-social.js +0 -42
- package/extensions/ublocklite/rulesets/scripting/declarative/chn-0.js +0 -42
- package/extensions/ublocklite/rulesets/scripting/declarative/cze-0.js +0 -42
- package/extensions/ublocklite/rulesets/scripting/declarative/easylist.js +0 -42
- package/extensions/ublocklite/rulesets/scripting/declarative/est-0.js +0 -42
- package/extensions/ublocklite/rulesets/scripting/declarative/fin-0.js +0 -42
- package/extensions/ublocklite/rulesets/scripting/declarative/fra-0.js +0 -42
- package/extensions/ublocklite/rulesets/scripting/declarative/grc-0.js +0 -42
- package/extensions/ublocklite/rulesets/scripting/declarative/hrv-0.js +0 -42
- package/extensions/ublocklite/rulesets/scripting/declarative/hun-0.js +0 -42
- package/extensions/ublocklite/rulesets/scripting/declarative/idn-0.js +0 -42
- package/extensions/ublocklite/rulesets/scripting/declarative/irn-0.js +0 -42
- package/extensions/ublocklite/rulesets/scripting/declarative/jpn-1.js +0 -42
- package/extensions/ublocklite/rulesets/scripting/declarative/kor-1.js +0 -42
- package/extensions/ublocklite/rulesets/scripting/declarative/ltu-0.js +0 -42
- package/extensions/ublocklite/rulesets/scripting/declarative/nld-0.js +0 -42
- package/extensions/ublocklite/rulesets/scripting/declarative/nor-0.js +0 -42
- package/extensions/ublocklite/rulesets/scripting/declarative/pol-0.js +0 -42
- package/extensions/ublocklite/rulesets/scripting/declarative/rou-1.js +0 -42
- package/extensions/ublocklite/rulesets/scripting/declarative/rus-0.js +0 -42
- package/extensions/ublocklite/rulesets/scripting/declarative/rus-1.js +0 -42
- package/extensions/ublocklite/rulesets/scripting/declarative/spa-1.js +0 -42
- package/extensions/ublocklite/rulesets/scripting/declarative/swe-1.js +0 -42
- package/extensions/ublocklite/rulesets/scripting/declarative/tur-0.js +0 -42
- package/extensions/ublocklite/rulesets/scripting/declarative/ublock-badware.js +0 -42
- package/extensions/ublocklite/rulesets/scripting/declarative/ublock-filters.js +0 -42
- package/extensions/ublocklite/rulesets/scripting/declarative/ukr-0.js +0 -42
- package/extensions/ublocklite/rulesets/scripting/declarative/vie-1.js +0 -42
- package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.overlay-buster.js +0 -165
|
@@ -1,637 +1,678 @@
|
|
|
1
1
|
[
|
|
2
|
-
{"action":{"type":"block"},"condition":{"requestDomains":["159.100.22.89","24d.ir","a.reymit.ir","ad.technews-iran.com","adengine.telewebion.com","adexo.ir","adexofiles.ir","adivery.com","adnegah.net","adpulse.ir","adro.co","adro.ir","adrooz.com","ads.asset.aparat.com","ads.karzar.net","ads.safarme.ir","adsima.net","adskav.com","adtodate.ir","adtrace.io","adtrace.ir","adtrace.world","adverge.ir","advn.ir","adwised.com","adwisedfs.com","affili.ir","affiliate.malltina.com","affilio.ir","aitrades.com","amarfa.ir","amaroid.net","analyt.ir","analytic.magland.ir","analytics.asiatech.ir","analytics.eirib.ir","analytics.football360.ir","analytics.hostiran.net","analytics.irancell.ir","analytics.jeldnews.com","analytics.nastooh.ir","analytics.plaza.ir","analytics.telewebion.com","analytics.zoomit.ir","androidupdate.download","anetwork.ir","api.karpishe.com","apm.bama.ir","apptracking.irancell.ir","arongroups.co","artanlife.club","aryacoin.io","aryana.io","aryastake.io","axotrade.com","ayyaar.ir","backlink.ir","backority.ir","bahatoken.site","behinava.com","behtarinseo.ir","bemchain.io","binoads.ir","bitad.ir","bixb.exchange","bixbcoin.com","bl9.ir","bnbmatrix.io","boorantech.com","bridge.link","cashback.takhfifan.com","cayot.ir","ccnnetwork.co","chabok.io","chancx.io","chavosh.org","click.digiato.com","clickaval.com","clickyab.com","coinwallet.biz","congoro.com","congoro.ir","counter.mahanmusic.net","counter.toolsir.com","cryptoland.com","daartads.com","dagcoin.org","daneshin.ir","davedbux.ir","deema.agency","deemaagency.ir","deemanetwork.com","defigroups.com","denutility.com","dezhino.com","dsp.aparat.com","emway.ir","error-tracking.arvancloud.com","errortracking.snapp.site","ewpb.site","excoino.com","facepop.org","falixa.com","farakav.com","farsbux.ir","fastclick.ir","frzss.com","geoip.imber.live","gpm.ltd","guhtoken.org","hadeseh.simra.cloud","hantana.org","hoho.mobi","hutvtpbhvmae.com","intrack.ir","ipsite.ir","ir.mihanstore.net","irancloudmining.com","irancoinmine.com","izonekala.com","jetbux.ir","kajads.com","kaprila.com","kingmoney.io","landyab.com","laqira.io","laxsson.com","leumia.io","linkfars.com","lnremmfpc.com","logapi.karbord.io","magnetadservices.com","mat-pnu.ir","mediaad.org","mediawach.com","merita.ir","metrix.behtarino.com","metrix.ir","minepi.com","mitrarank.ir","mogo-crypto.net","mtabdil.com","mttcoin.com","my-pu.sh","najva.com","netbina.com","new-sentry.digikala.com","
|
|
3
|
-
{"action":{"type":"block"},"condition":{"
|
|
4
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
5
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
6
|
-
{"action":{"type":"block"},"condition":{"
|
|
7
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
8
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
9
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
10
|
-
{"action":{"type":"block"},"condition":{"
|
|
11
|
-
{"action":{"type":"block"},"condition":{"
|
|
12
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
13
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
14
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
15
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
16
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
17
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
18
|
-
{"action":{"type":"block"},"condition":{"
|
|
19
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
20
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
21
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
22
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
23
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
24
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
25
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
26
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
27
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
28
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
29
|
-
{"action":{"type":"
|
|
30
|
-
{"action":{"type":"
|
|
31
|
-
{"action":{"type":"
|
|
32
|
-
{"action":{"type":"
|
|
33
|
-
{"action":{"type":"
|
|
34
|
-
{"action":{"type":"
|
|
35
|
-
{"action":{"type":"
|
|
36
|
-
{"action":{"type":"
|
|
37
|
-
{"action":{"type":"
|
|
38
|
-
{"action":{"type":"
|
|
39
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
40
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
41
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
42
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
43
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
44
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
45
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
46
|
-
{"action":{"type":"block"},"condition":{"
|
|
47
|
-
{"action":{"type":"block"},"condition":{"
|
|
48
|
-
{"action":{"type":"block"},"condition":{"
|
|
49
|
-
{"action":{"type":"block"},"condition":{"
|
|
50
|
-
{"action":{"type":"block"},"condition":{"
|
|
51
|
-
{"action":{"type":"block"},"condition":{"
|
|
52
|
-
{"action":{"type":"block"},"condition":{"
|
|
53
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"
|
|
54
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
55
|
-
{"action":{"type":"block"},"condition":{"
|
|
56
|
-
{"action":{"type":"block"},"condition":{"
|
|
57
|
-
{"action":{"type":"block"},"condition":{"
|
|
58
|
-
{"action":{"type":"block"},"condition":{"
|
|
59
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
60
|
-
{"action":{"type":"
|
|
61
|
-
{"action":{"type":"
|
|
62
|
-
{"action":{"type":"
|
|
63
|
-
{"action":{"type":"
|
|
64
|
-
{"action":{"type":"
|
|
65
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
66
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
67
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
68
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
69
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
70
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
71
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
72
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
73
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
74
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"
|
|
75
|
-
{"action":{"type":"block"},"condition":{"
|
|
76
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
77
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
78
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
79
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
80
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
81
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
82
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
83
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
84
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
85
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
86
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
87
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
88
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
89
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
90
|
-
{"action":{"type":"block"},"condition":{"initiatorDomains":["
|
|
91
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
92
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
93
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
94
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
95
|
-
{"action":{"type":"block"},"condition":{"
|
|
96
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
97
|
-
{"action":{"type":"
|
|
98
|
-
{"action":{"type":"
|
|
99
|
-
{"action":{"type":"
|
|
100
|
-
{"action":{"type":"
|
|
101
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
102
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
103
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
104
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
105
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
106
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
107
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
108
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
109
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
110
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
111
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
112
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
113
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
114
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
115
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
116
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
117
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
118
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
119
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
120
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
121
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
122
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
123
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
124
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
125
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
126
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
127
|
-
{"action":{"type":"block"},"condition":{"
|
|
128
|
-
{"action":{"type":"block"},"condition":{"
|
|
129
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
130
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
131
|
-
{"action":{"type":"block"},"condition":{"
|
|
132
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
133
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
134
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
135
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
136
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
137
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
138
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
139
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
140
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
141
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
142
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
143
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
144
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
145
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
146
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
147
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
148
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
149
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
150
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
151
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
152
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
153
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
154
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
155
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
156
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
157
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
158
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
159
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
160
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
161
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
162
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
163
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
164
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
165
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
166
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
167
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
168
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
169
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
170
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
171
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
172
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
173
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
174
|
-
{"action":{"type":"block"},"condition":{"
|
|
175
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
176
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
177
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
178
|
-
{"action":{"type":"block"},"condition":{"
|
|
179
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
180
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
181
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
182
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
183
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
184
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
185
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
186
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
187
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
188
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
189
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
190
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
191
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
192
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
193
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
194
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
195
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
196
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
197
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
198
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
199
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
200
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
201
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
202
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
203
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
204
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
205
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
206
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
207
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
208
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
209
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
210
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
211
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
212
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
213
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
214
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
215
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
216
|
-
{"action":{"type":"block"},"condition":{"
|
|
217
|
-
{"action":{"type":"block"},"condition":{"
|
|
218
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
219
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
220
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
221
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
222
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
223
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
224
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
225
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
226
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
227
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
228
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
229
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
230
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
231
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
232
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
233
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
234
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
235
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
236
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
237
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
238
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
239
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
240
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
241
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
242
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
243
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
244
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
245
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
246
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
247
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
248
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
249
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
250
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
251
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
252
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
253
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
254
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
255
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
256
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
257
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
258
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
259
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
260
|
-
{"action":{"type":"block"},"condition":{"
|
|
261
|
-
{"action":{"type":"block"},"condition":{"urlFilter":"||
|
|
262
|
-
{"action":{"type":"block"},"condition":{"
|
|
263
|
-
{"action":{"type":"block"},"condition":{"
|
|
264
|
-
{"action":{"type":"block"},"condition":{"
|
|
265
|
-
{"action":{"type":"block"},"condition":{"
|
|
266
|
-
{"action":{"type":"block"},"condition":{"
|
|
267
|
-
{"action":{"type":"block"},"condition":{"
|
|
268
|
-
{"action":{"type":"block"},"condition":{"
|
|
269
|
-
{"action":{"type":"block"},"condition":{"
|
|
270
|
-
{"action":{"type":"block"},"condition":{"
|
|
271
|
-
{"action":{"type":"block"},"condition":{"
|
|
272
|
-
{"action":{"type":"block"},"condition":{"
|
|
273
|
-
{"action":{"type":"block"},"condition":{"
|
|
274
|
-
{"action":{"type":"block"},"condition":{"
|
|
275
|
-
{"action":{"type":"block"},"condition":{"
|
|
276
|
-
{"action":{"type":"block"},"condition":{"
|
|
277
|
-
{"action":{"type":"block"},"condition":{"
|
|
278
|
-
{"action":{"type":"block"},"condition":{"
|
|
279
|
-
{"action":{"type":"block"},"condition":{"
|
|
280
|
-
{"action":{"type":"block"},"condition":{"
|
|
281
|
-
{"action":{"type":"block"},"condition":{"
|
|
282
|
-
{"action":{"type":"block"},"condition":{"
|
|
283
|
-
{"action":{"type":"block"},"condition":{"
|
|
284
|
-
{"action":{"type":"block"},"condition":{"
|
|
285
|
-
{"action":{"type":"block"},"condition":{"
|
|
286
|
-
{"action":{"type":"block"},"condition":{"
|
|
287
|
-
{"action":{"type":"block"},"condition":{"
|
|
288
|
-
{"action":{"type":"block"},"condition":{"
|
|
289
|
-
{"action":{"type":"block"},"condition":{"
|
|
290
|
-
{"action":{"type":"block"},"condition":{"
|
|
291
|
-
{"action":{"type":"block"},"condition":{"
|
|
292
|
-
{"action":{"type":"block"},"condition":{"
|
|
293
|
-
{"action":{"type":"block"},"condition":{"
|
|
294
|
-
{"action":{"type":"block"},"condition":{"
|
|
295
|
-
{"action":{"type":"block"},"condition":{"
|
|
296
|
-
{"action":{"type":"block"},"condition":{"
|
|
297
|
-
{"action":{"type":"block"},"condition":{"
|
|
298
|
-
{"action":{"type":"block"},"condition":{"
|
|
299
|
-
{"action":{"type":"block"},"condition":{"
|
|
300
|
-
{"action":{"type":"block"},"condition":{"
|
|
301
|
-
{"action":{"type":"block"},"condition":{"
|
|
302
|
-
{"action":{"type":"block"},"condition":{"
|
|
303
|
-
{"action":{"type":"block"},"condition":{"
|
|
304
|
-
{"action":{"type":"block"},"condition":{"
|
|
305
|
-
{"action":{"type":"block"},"condition":{"
|
|
306
|
-
{"action":{"type":"block"},"condition":{"
|
|
307
|
-
{"action":{"type":"block"},"condition":{"
|
|
308
|
-
{"action":{"type":"block"},"condition":{"
|
|
309
|
-
{"action":{"type":"block"},"condition":{"
|
|
310
|
-
{"action":{"type":"block"},"condition":{"
|
|
311
|
-
{"action":{"type":"block"},"condition":{"
|
|
312
|
-
{"action":{"type":"block"},"condition":{"
|
|
313
|
-
{"action":{"type":"block"},"condition":{"
|
|
314
|
-
{"action":{"type":"block"},"condition":{"
|
|
315
|
-
{"action":{"type":"block"},"condition":{"
|
|
316
|
-
{"action":{"type":"block"},"condition":{"
|
|
317
|
-
{"action":{"type":"block"},"condition":{"
|
|
318
|
-
{"action":{"type":"block"},"condition":{"
|
|
319
|
-
{"action":{"type":"block"},"condition":{"
|
|
320
|
-
{"action":{"type":"block"},"condition":{"
|
|
321
|
-
{"action":{"type":"block"},"condition":{"
|
|
322
|
-
{"action":{"type":"block"},"condition":{"
|
|
323
|
-
{"action":{"type":"block"},"condition":{"
|
|
324
|
-
{"action":{"type":"block"},"condition":{"
|
|
325
|
-
{"action":{"type":"block"},"condition":{"
|
|
326
|
-
{"action":{"type":"block"},"condition":{"
|
|
327
|
-
{"action":{"type":"block"},"condition":{"
|
|
328
|
-
{"action":{"type":"block"},"condition":{"
|
|
329
|
-
{"action":{"type":"block"},"condition":{"
|
|
330
|
-
{"action":{"type":"block"},"condition":{"
|
|
331
|
-
{"action":{"type":"block"},"condition":{"
|
|
332
|
-
{"action":{"type":"block"},"condition":{"
|
|
333
|
-
{"action":{"type":"block"},"condition":{"
|
|
334
|
-
{"action":{"type":"block"},"condition":{"
|
|
335
|
-
{"action":{"type":"block"},"condition":{"
|
|
336
|
-
{"action":{"type":"block"},"condition":{"
|
|
337
|
-
{"action":{"type":"block"},"condition":{"
|
|
338
|
-
{"action":{"type":"block"},"condition":{"
|
|
339
|
-
{"action":{"type":"block"},"condition":{"
|
|
340
|
-
{"action":{"type":"block"},"condition":{"
|
|
341
|
-
{"action":{"type":"block"},"condition":{"
|
|
342
|
-
{"action":{"type":"block"},"condition":{"
|
|
343
|
-
{"action":{"type":"block"},"condition":{"
|
|
344
|
-
{"action":{"type":"block"},"condition":{"
|
|
345
|
-
{"action":{"type":"block"},"condition":{"
|
|
346
|
-
{"action":{"type":"block"},"condition":{"
|
|
347
|
-
{"action":{"type":"block"},"condition":{"
|
|
348
|
-
{"action":{"type":"block"},"condition":{"
|
|
349
|
-
{"action":{"type":"block"},"condition":{"
|
|
350
|
-
{"action":{"type":"block"},"condition":{"
|
|
351
|
-
{"action":{"type":"block"},"condition":{"
|
|
352
|
-
{"action":{"type":"block"},"condition":{"
|
|
353
|
-
{"action":{"type":"block"},"condition":{"
|
|
354
|
-
{"action":{"type":"block"},"condition":{"
|
|
355
|
-
{"action":{"type":"block"},"condition":{"
|
|
356
|
-
{"action":{"type":"block"},"condition":{"
|
|
357
|
-
{"action":{"type":"block"},"condition":{"
|
|
358
|
-
{"action":{"type":"block"},"condition":{"
|
|
359
|
-
{"action":{"type":"block"},"condition":{"
|
|
360
|
-
{"action":{"type":"block"},"condition":{"
|
|
361
|
-
{"action":{"type":"block"},"condition":{"
|
|
362
|
-
{"action":{"type":"block"},"condition":{"
|
|
363
|
-
{"action":{"type":"block"},"condition":{"
|
|
364
|
-
{"action":{"type":"block"},"condition":{"
|
|
365
|
-
{"action":{"type":"block"},"condition":{"
|
|
366
|
-
{"action":{"type":"block"},"condition":{"
|
|
367
|
-
{"action":{"type":"block"},"condition":{"
|
|
368
|
-
{"action":{"type":"block"},"condition":{"
|
|
369
|
-
{"action":{"type":"block"},"condition":{"
|
|
370
|
-
{"action":{"type":"block"},"condition":{"
|
|
371
|
-
{"action":{"type":"block"},"condition":{"
|
|
372
|
-
{"action":{"type":"block"},"condition":{"
|
|
373
|
-
{"action":{"type":"block"},"condition":{"
|
|
374
|
-
{"action":{"type":"block"},"condition":{"
|
|
375
|
-
{"action":{"type":"block"},"condition":{"
|
|
376
|
-
{"action":{"type":"block"},"condition":{"
|
|
377
|
-
{"action":{"type":"block"},"condition":{"
|
|
378
|
-
{"action":{"type":"block"},"condition":{"
|
|
379
|
-
{"action":{"type":"block"},"condition":{"
|
|
380
|
-
{"action":{"type":"block"},"condition":{"
|
|
381
|
-
{"action":{"type":"block"},"condition":{"
|
|
382
|
-
{"action":{"type":"block"},"condition":{"
|
|
383
|
-
{"action":{"type":"block"},"condition":{"
|
|
384
|
-
{"action":{"type":"block"},"condition":{"
|
|
385
|
-
{"action":{"type":"block"},"condition":{"
|
|
386
|
-
{"action":{"type":"block"},"condition":{"
|
|
387
|
-
{"action":{"type":"block"},"condition":{"
|
|
388
|
-
{"action":{"type":"block"},"condition":{"
|
|
389
|
-
{"action":{"type":"block"},"condition":{"
|
|
390
|
-
{"action":{"type":"block"},"condition":{"
|
|
391
|
-
{"action":{"type":"block"},"condition":{"
|
|
392
|
-
{"action":{"type":"block"},"condition":{"
|
|
393
|
-
{"action":{"type":"block"},"condition":{"
|
|
394
|
-
{"action":{"type":"block"},"condition":{"
|
|
395
|
-
{"action":{"type":"block"},"condition":{"
|
|
396
|
-
{"action":{"type":"block"},"condition":{"
|
|
397
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","
|
|
398
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","
|
|
399
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
400
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||
|
|
401
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||
|
|
402
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"
|
|
403
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||
|
|
404
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||
|
|
405
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
406
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
407
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
408
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
409
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
410
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
411
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
412
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
413
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
414
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
415
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
416
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
417
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
418
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
419
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
420
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
421
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
422
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
423
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
424
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
425
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
426
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
427
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
428
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
429
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
430
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
431
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
432
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
433
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
434
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
435
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
436
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
437
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
438
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
439
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
440
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
441
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
442
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
443
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
444
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
445
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
446
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
447
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
448
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
449
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","
|
|
450
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","
|
|
451
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","
|
|
452
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","
|
|
453
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","
|
|
454
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
455
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
456
|
-
{"action":{"type":"block"},"condition":{"
|
|
457
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||
|
|
458
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
459
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
460
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
461
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","
|
|
462
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
463
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
464
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
465
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
466
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","
|
|
467
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","
|
|
468
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
469
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
470
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
471
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
472
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
473
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
474
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","
|
|
475
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","
|
|
476
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","
|
|
477
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","
|
|
478
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
479
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","
|
|
480
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
481
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
482
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","
|
|
483
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","
|
|
484
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
485
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
486
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
487
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
488
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","
|
|
489
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
490
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
491
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
492
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","
|
|
493
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","
|
|
494
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","
|
|
495
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
496
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","
|
|
497
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
498
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
499
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","
|
|
500
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","
|
|
501
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","
|
|
502
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
503
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
504
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","
|
|
505
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
506
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
507
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
508
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
509
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
510
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
511
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
512
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
513
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
514
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","
|
|
515
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["
|
|
516
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
517
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
518
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
519
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
520
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
521
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
522
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
523
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
524
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
525
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
526
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
527
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
528
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
529
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
530
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
531
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
532
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
533
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
534
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
535
|
-
{"action":{"type":"block"},"condition":{"
|
|
536
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
537
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
538
|
-
{"action":{"type":"block"},"condition":{"
|
|
539
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
540
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
541
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
542
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
543
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
544
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
545
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
546
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
547
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
548
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
549
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
550
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
551
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
552
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
553
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
554
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
555
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
556
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","
|
|
557
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
558
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
559
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
560
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","requestMethods":["post"],"resourceTypes":["xmlhttprequest"],"urlFilter":"||
|
|
561
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
562
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
563
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
564
|
-
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||
|
|
565
|
-
{"action":{"type":"
|
|
566
|
-
{"action":{"type":"
|
|
567
|
-
{"action":{"type":"
|
|
568
|
-
{"action":{"type":"
|
|
569
|
-
{"action":{"type":"
|
|
570
|
-
{"action":{"type":"
|
|
571
|
-
{"action":{"type":"
|
|
572
|
-
{"action":{"type":"
|
|
573
|
-
{"action":{"type":"
|
|
574
|
-
{"action":{"type":"
|
|
575
|
-
{"action":{"type":"
|
|
576
|
-
{"action":{"type":"
|
|
577
|
-
{"action":{"type":"
|
|
578
|
-
{"action":{"type":"
|
|
579
|
-
{"action":{"type":"
|
|
580
|
-
{"action":{"type":"
|
|
581
|
-
{"action":{"type":"
|
|
582
|
-
{"action":{"type":"
|
|
583
|
-
{"action":{"type":"
|
|
584
|
-
{"action":{"type":"
|
|
585
|
-
{"action":{"type":"
|
|
586
|
-
{"action":{"type":"
|
|
587
|
-
{"action":{"type":"
|
|
588
|
-
{"action":{"type":"
|
|
589
|
-
{"action":{"type":"
|
|
590
|
-
{"action":{"type":"
|
|
591
|
-
{"action":{"type":"
|
|
592
|
-
{"action":{"type":"
|
|
593
|
-
{"action":{"type":"
|
|
594
|
-
{"action":{"type":"
|
|
595
|
-
{"action":{"type":"
|
|
596
|
-
{"action":{"type":"
|
|
597
|
-
{"action":{"type":"
|
|
598
|
-
{"action":{"type":"
|
|
599
|
-
{"action":{"type":"
|
|
600
|
-
{"action":{"type":"
|
|
601
|
-
{"action":{"type":"
|
|
602
|
-
{"action":{"type":"
|
|
603
|
-
{"action":{"type":"
|
|
604
|
-
{"action":{"type":"
|
|
605
|
-
{"action":{"type":"
|
|
606
|
-
{"action":{"type":"
|
|
607
|
-
{"action":{"type":"
|
|
608
|
-
{"action":{"type":"
|
|
609
|
-
{"action":{"type":"
|
|
610
|
-
{"action":{"type":"
|
|
611
|
-
{"action":{"type":"
|
|
612
|
-
{"action":{"type":"
|
|
613
|
-
{"action":{"type":"
|
|
614
|
-
{"action":{"type":"
|
|
615
|
-
{"action":{"type":"
|
|
616
|
-
{"action":{"type":"
|
|
617
|
-
{"action":{"type":"
|
|
618
|
-
{"action":{"type":"
|
|
619
|
-
{"action":{"type":"
|
|
620
|
-
{"action":{"type":"
|
|
621
|
-
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","resourceTypes":["
|
|
622
|
-
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","resourceTypes":["
|
|
623
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
624
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
625
|
-
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","resourceTypes":["
|
|
626
|
-
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||api.yeklinks.ir/api/
|
|
627
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
628
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
629
|
-
{"action":{"type":"block"},"condition":{"
|
|
630
|
-
{"action":{"type":"block"},"condition":{"domainType":"
|
|
631
|
-
{"action":{"type":"
|
|
632
|
-
{"action":{"type":"
|
|
633
|
-
{"action":{"type":"
|
|
634
|
-
{"action":{"type":"
|
|
635
|
-
{"action":{"type":"
|
|
636
|
-
{"action":{"type":"
|
|
2
|
+
{"action":{"type":"block"},"condition":{"requestDomains":["159.100.22.89","24d.ir","a.reymit.ir","ad.technews-iran.com","adengine.telewebion.com","adexo.ir","adexofiles.ir","adivery.com","adnegah.net","adpulse.ir","adro.co","adro.ir","adrooz.com","ads.asset.aparat.com","ads.karzar.net","ads.safarme.ir","adsc.beytoote.com","adsima.net","adskav.com","adtodate.ir","adtrace.io","adtrace.ir","adtrace.world","adverge.ir","advn.ir","adwised.com","adwisedfs.com","affili.ir","affiliate.malltina.com","affilio.ir","aitrades.com","amarfa.ir","amaroid.net","analyt.ir","analytic.magland.ir","analytics.asiatech.ir","analytics.eirib.ir","analytics.football360.ir","analytics.hostiran.net","analytics.irancell.ir","analytics.jeldnews.com","analytics.nastooh.ir","analytics.plaza.ir","analytics.telewebion.com","analytics.zoomit.ir","androidupdate.download","anetwork.ir","api.karpishe.com","apm.bama.ir","apptracking.irancell.ir","arongroups.co","artanlife.club","aryacoin.io","aryana.io","aryastake.io","axotrade.com","ayyaar.ir","backlink.ir","backority.ir","bahatoken.site","behinava.com","behtarinseo.ir","bemchain.io","binoads.ir","bitad.ir","bixb.exchange","bixbcoin.com","bl9.ir","bnbmatrix.io","boorantech.com","bridge.link","cashback.takhfifan.com","cayot.ir","ccnnetwork.co","chabok.io","chancx.io","chavosh.org","click.digiato.com","clickaval.com","clickyab.com","coinwallet.biz","congoro.com","congoro.ir","counter.mahanmusic.net","counter.toolsir.com","cryptoland.com","daartads.com","dagcoin.org","daneshin.ir","davedbux.ir","deema.agency","deemaagency.ir","deemanetwork.com","defigroups.com","denutility.com","dezhino.com","dsp.aparat.com","emway.ir","error-tracking.arvancloud.com","errortracking.snapp.site","ewpb.site","excoino.com","facepop.org","falixa.com","farakav.com","farsbux.ir","fastclick.ir","frzss.com","geoip.imber.live","gpm.ltd","guhtoken.org","hadeseh.simra.cloud","hadeseh.telewebion.com","hantana.org","hoho.mobi","hutvtpbhvmae.com","intrack.ir","ipsite.ir","ir.mihanstore.net","irancloudmining.com","irancoinmine.com","izonekala.com","jetbux.ir","kajads.com","kaprila.com","kingmoney.io","landyab.com","laqira.io","laxsson.com","leumia.io","linkfars.com","lnremmfpc.com","logapi.karbord.io","magnetadservices.com","mat-pnu.ir","mediaad.org","mediawach.com","merita.ir","metrix.behtarino.com","metrix.ir","minepi.com","mitrarank.ir","mogo-crypto.net","mtabdil.com","mttcoin.com","my-pu.sh","najva.com","netbina.com","new-sentry.digikala.com","newswidget.net","nokontoken.com","notifhub.com","offers.sapra.ir","on-click.ir","onclick.ir","orbitnetwork.net","oscaranimation.in","p30rank.ir","pantatec.ae","partclick.ir","pegah.tech","pelikan-network.ir","perlika.com","persia.exchange","persianrank.ir","phoenixad.io","phonroid.com","pooye-ads.com","popgozar.com","popina.ir","popland.info","popupdl.ir","popupme.net","popupplus.ir","promizer.com","propertiq.io","publica.ir","pushe.co","pushq.ir","puuush.me","quahl.com","radar.bayan.ir","rankirani.ir","rssbank.ir","sabaidea.cloud","sabavision.com","sanjagh.com","sanjagh.net","scripts-ads.s3.ir-thr-at1.arvanstorage.com","sendword.ir","sentry.alaatv.com","sentry.alibaba.ir","sentry.cafebazaar.org","sentry.divar.cloud","sentry.hamravesh.com","sentry.malltina.com","sentry.mci.dev","sentry.mielse.com","sentry.namava.ir","sentry.querastaff.ir","sentry.theforge.ir","sentry.yektanet.tech","shamining.com","smartgalaxy.finance","soodland.com","spellads.com","spellpop.ir","statistics.iriborg.ir","statsfa.com","synchrobit.io","system-notify.app","tabligheirani.ir","talapop.ir","tapsell.ir","tastenfts.com","tavoos.net","tbli.ir","te1.ir","tinancefa.org","toppopup.com","track.mailerlite.com","tracker.digikala.com","tradergpt.ai","treenvest.com","triboon.net","unique.finance","unitedsolarinfinity.com","userfriendly.ir","usermap.net","utbyte.io","utop.ir","utopclick.com","vatanclick.ir","vidomusic.org","waykingroup.com","web.webpushs.com","wideads.com","wintap.io","xjs.lol","xmlx.lol","yekbux.com","yektabanner.com","yektanet.com","yelloadwise.ir","ylad.ir","yoozbit.com","zarad.net","zarpop.com","zarpop.ir"]},"id":1,"priority":10},
|
|
3
|
+
{"action":{"type":"block"},"condition":{"initiatorDomains":["dlfox.com"],"requestDomains":["cdkeyshare.ir","isarclinic.com"],"resourceTypes":["image"]},"id":2,"priority":10},
|
|
4
|
+
{"action":{"type":"block"},"condition":{"initiatorDomains":["footballitarin.com"],"urlFilter":"||blogger.googleusercontent.com/img^"},"id":3,"priority":10},
|
|
5
|
+
{"action":{"type":"block"},"condition":{"excludedResourceTypes":["main_frame","script"],"initiatorDomains":["ir"],"urlFilter":"||accounts.google.com/gsi^"},"id":4,"priority":10},
|
|
6
|
+
{"action":{"type":"block"},"condition":{"initiatorDomains":["footballitarin.com"],"urlFilter":"||inmobi.com^"},"id":5,"priority":10},
|
|
7
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||abadis.ir/libs/async/ads.min.js^"},"id":6,"priority":10},
|
|
8
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||dlfox.com/wp-content/uploads/*.gif^"},"id":7,"priority":10},
|
|
9
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||download.ir/wp-content/uploads/*.gif^"},"id":8,"priority":10},
|
|
10
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||mali3.com/wp-content/uploads/*.gif^"},"id":9,"priority":10},
|
|
11
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||api.divar.ir/v8/ad-auction^"},"id":10,"priority":10},
|
|
12
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||a-banners.divarcdn.com/ssp/ads^"},"id":11,"priority":10},
|
|
13
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||virgool.io/api2/app/posts/*/ad^"},"id":12,"priority":10},
|
|
14
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||storage.beytoote.com/images/adsbeytoote^"},"id":13,"priority":10},
|
|
15
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||static.tgju.org/advertisement^"},"id":14,"priority":10},
|
|
16
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||cdn.tabnak.ir/files/fa/adv^"},"id":15,"priority":10},
|
|
17
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||footballitarin.com/agahi^"},"id":16,"priority":10},
|
|
18
|
+
{"action":{"type":"block"},"condition":{"requestDomains":["159.100.22.89","aitrades.com","androidupdate.download","arongroups.co","artanlife.club","aryacoin.io","aryana.io","aryastake.io","axotrade.com","bahatoken.site","bemchain.io","bixb.exchange","bixbcoin.com","bnbmatrix.io","bridge.link","ccnnetwork.co","chancx.io","coinwallet.biz","cryptoland.com","dagcoin.org","defigroups.com","emway.ir","ewpb.site","excoino.com","falixa.com","frzss.com","gpm.ltd","guhtoken.org","hoho.mobi","irancloudmining.com","irancoinmine.com","izonekala.com","kingmoney.io","laqira.io","laxsson.com","leumia.io","mat-pnu.ir","minepi.com","mogo-crypto.net","mtabdil.com","mttcoin.com","nokontoken.com","orbitnetwork.net","persia.exchange","propertiq.io","quahl.com","shamining.com","smartgalaxy.finance","soodland.com","synchrobit.io","tastenfts.com","tinancefa.org","tradergpt.ai","treenvest.com","unique.finance","unitedsolarinfinity.com","utbyte.io","waykingroup.com","wintap.io","yoozbit.com"],"resourceTypes":["main_frame"]},"id":17,"priority":10},
|
|
19
|
+
{"action":{"type":"block"},"condition":{"requestMethods":["post"],"urlFilter":"||trustseal.e-rasaneh.ir/trustseal^"},"id":18,"priority":10},
|
|
20
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||aparat.com/external/romeo^"},"id":19,"priority":10},
|
|
21
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||aparat.com/gogol^"},"id":20,"priority":10},
|
|
22
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||data.telewebion.com/broker/api/v1/message/page-view^"},"id":21,"priority":10},
|
|
23
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||api.divar.ir/v8/actionlog^"},"id":22,"priority":10},
|
|
24
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||api.divar.ir/v1/client-exporter/send-report^"},"id":23,"priority":10},
|
|
25
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||candidatelogapi.jobvision.ir/api/v1/jobpostactionlog/addtoqueue^"},"id":24,"priority":10},
|
|
26
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||stc.ninisite.com/s/atv^"},"id":25,"priority":10},
|
|
27
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||zarebin.ir/platform/api/supervisor/v1/events/^"},"id":26,"priority":10},
|
|
28
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["script"],"urlFilter":"||blogfa.com/a^"},"id":27,"priority":10},
|
|
29
|
+
{"action":{"type":"allow"},"condition":{"urlFilter":"||player.tavoos.net/jwplayer.core.controls.html5.js"},"id":28,"priority":30},
|
|
30
|
+
{"action":{"type":"allow"},"condition":{"resourceTypes":["stylesheet"],"urlFilter":"||player.tavoos.net/tavoos-player.css^"},"id":29,"priority":30},
|
|
31
|
+
{"action":{"type":"allow"},"condition":{"resourceTypes":["font","image"],"urlFilter":"||cdn.tavoos.net/assets^"},"id":30,"priority":30},
|
|
32
|
+
{"action":{"type":"allow"},"condition":{"resourceTypes":["image"],"urlFilter":"||tavoos.net/tavoos_contents^"},"id":31,"priority":30},
|
|
33
|
+
{"action":{"type":"allow"},"condition":{"resourceTypes":["font","image"],"urlFilter":"||player.tavoos.net/assets^"},"id":32,"priority":30},
|
|
34
|
+
{"action":{"type":"allow"},"condition":{"resourceTypes":["script"],"urlFilter":"||player.tavoos.net/jwplayer.js^"},"id":33,"priority":30},
|
|
35
|
+
{"action":{"type":"allow"},"condition":{"resourceTypes":["script"],"urlFilter":"||cdn.tavoos.net/services/smoothie/loader-mobile.js^"},"id":34,"priority":30},
|
|
36
|
+
{"action":{"type":"allow"},"condition":{"resourceTypes":["script"],"urlFilter":"||cdn.tavoos.net/services/sticky/loader.min.js^"},"id":35,"priority":30},
|
|
37
|
+
{"action":{"type":"allow"},"condition":{"resourceTypes":["script"],"urlFilter":"||player.tavoos.net/jwplayer.core.controls.js^"},"id":36,"priority":30},
|
|
38
|
+
{"action":{"type":"allow"},"condition":{"resourceTypes":["script"],"urlFilter":"||player.tavoos.net/provider.hlsjs.js^"},"id":37,"priority":30},
|
|
39
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||par30games.net/wp-content/uploads/*.gif^"},"id":38,"priority":10},
|
|
40
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||static.shahrekhabar.com/banner/*.gif^"},"id":39,"priority":10},
|
|
41
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||mobile.ir/static/b^"},"id":40,"priority":10},
|
|
42
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||yasdl.com/wp-content/uploads/*.gif^"},"id":41,"priority":10},
|
|
43
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||cdn.hostdl.com/assets/downloadha.gif^"},"id":42,"priority":10},
|
|
44
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||zoomg.ir/editorial/api/articles/*/visit^"},"id":43,"priority":10},
|
|
45
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||accounts.pod.ir/js/fingerprint2.min.js^"},"id":44,"priority":10},
|
|
46
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","excludedInitiatorDomains":["ifixit.ir"],"initiatorDomains":["androidtime.com","asbe-bokhar.com","avalnews.com","avapedia.com","baarzesh.net","bazdeh.org","bazicenter.com","binaopt.com","charbzaban.com","chetor.com","dlfox.com","elmefarda.com","farachart.com","farsiro.com","filmin.info","fontchi.com","gamefa.com","ghatar.com","graphiran.com","honarfardi.com","ir","itresan.com","kaliboys.com","kamapress.com","konkur.info","learnparsi.com","movienama.com","namnak.com","netpaak.com","p30konkor.com","p30world.com","par30games.net","parsfootball.com","rozmusic.com","sakhtafzar.com","shahrebours.com","shanbemag.com","takskin.com","tasvirezendegi.com","techrato.com","techtik.com","tejaratnews.com"],"resourceTypes":["image"],"urlFilter":"/wp-content/uploads/*.gif^"},"id":45,"priority":10},
|
|
47
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","requestDomains":["aasaam.com","akhbarrasmi.com","e-earn.ir","hamravesh.com","hamserver.ir","icanhazip.com","instant.page","linksaz.net","linkyar.com","my-pishvaz.com","peyvandha.ir","rasaaa.com","rokhdad.news","sendpulse.com","service.mytosheh.com","shahrekhabar.com","sibautomation.com","statcounter.com","titr.online","uptrendsdata.com","useinsider.com","webgozar.com","webgozar.ir","webpu.sh","widget.fafait.net"]},"id":46,"priority":10},
|
|
48
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","requestDomains":["actionlog.divar.ir","ads.alaatv.com","analytics.fam.ir","counter.musicsweb.ir","counter.musictag.ir","countly.virgool.io","kar-sentry.karnameh.com","posthog.basalam.com","sentry.alaatv.com","sentry.basalam.com","sentry.filmnet.ir","sentry.virgool.io","stc.ninisite.com","tracker.jabama.com"]},"id":47,"priority":10},
|
|
49
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","initiatorDomains":["ana.press","asriran.com","barghnews.com","borna.news","eghtesadonline.com","ir","nabzebourse.com","niniban.com","parsine.com","seratnews.com","vananews.com"],"resourceTypes":["image"],"urlFilter":"/files/fa/adv^"},"id":48,"priority":10},
|
|
50
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","initiatorDomains":["asrkhabar.com","bultannews.com","ir","iraneconomist.com","khordad.news","roozno.com","yektapress.com"],"resourceTypes":["image"],"urlFilter":"/files/adv^"},"id":49,"priority":10},
|
|
51
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","initiatorDomains":["dlfox.com","javan-musics.com","konkur.in","varandaz.com"],"resourceTypes":["image"],"urlFilter":".gif^"},"id":50,"priority":10},
|
|
52
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","requestDomains":["jaarchee.ir","rentinal.info","sahandpress.ir","spotyfile.com"],"resourceTypes":["script"]},"id":51,"priority":10},
|
|
53
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","initiatorDomains":["bazimag.com","ir","jahannews.com"],"resourceTypes":["image"],"urlFilter":"/images/advertise^"},"id":52,"priority":10},
|
|
54
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","initiatorDomains":["donya-e-eqtesad.com","fararu.com","sharghdaily.com"],"resourceTypes":["image"],"urlFilter":"||cdn.*/servev2^"},"id":53,"priority":10},
|
|
55
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","initiatorDomains":["kojaro.com","zoomg.ir","zoomit.ir"],"resourceTypes":["xmlhttprequest"],"urlFilter":"/ads^"},"id":54,"priority":10},
|
|
56
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","initiatorDomains":["scienceforfree.blog.ir"],"requestDomains":["numberland.ir","parsvds.com"],"resourceTypes":["image"]},"id":55,"priority":10},
|
|
57
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","initiatorDomains":["najiremix.ir","nex11music.ir","show-music.ir"],"resourceTypes":["script"]},"id":56,"priority":10},
|
|
58
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","initiatorDomains":["zoomg.ir","zoomit.ir"],"resourceTypes":["xmlhttprequest"],"urlFilter":"/editorial/api/articles/*/visit^"},"id":57,"priority":10},
|
|
59
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","initiatorDomains":["zoomg.ir","zoomit.ir"],"resourceTypes":["xmlhttprequest"],"urlFilter":"||theforge.ir/intake/v2/rum/events^"},"id":58,"priority":10},
|
|
60
|
+
{"action":{"type":"allow"},"condition":{"domainType":"thirdParty","initiatorDomains":["fararu.com","gostaresh.news"],"resourceTypes":["stylesheet"],"urlFilter":"||yektanet.com/static/video-js.min.css^"},"id":59,"priority":30},
|
|
61
|
+
{"action":{"type":"allow"},"condition":{"domainType":"thirdParty","initiatorDomains":["fararu.com","gostaresh.news"],"resourceTypes":["script"],"urlFilter":"||yektanet.com/static/video.min.js^"},"id":60,"priority":30},
|
|
62
|
+
{"action":{"type":"allow"},"condition":{"domainType":"thirdParty","initiatorDomains":["fararu.com","gostaresh.news"],"resourceTypes":["script"],"urlFilter":"||yektanet.com/static/vast-client.js^"},"id":61,"priority":30},
|
|
63
|
+
{"action":{"type":"allow"},"condition":{"domainType":"thirdParty","initiatorDomains":["fararu.com","gostaresh.news"],"resourceTypes":["script"],"urlFilter":"||yektanet.com/static/silvermine-videojs-quality-selector.min.js^"},"id":62,"priority":30},
|
|
64
|
+
{"action":{"type":"allow"},"condition":{"domainType":"thirdParty","initiatorDomains":["fararu.com","gostaresh.news"],"resourceTypes":["font"],"urlFilter":"||cdn.yektanet.com/fonts/"},"id":63,"priority":30},
|
|
65
|
+
{"action":{"type":"block"},"condition":{"initiatorDomains":["airport.ir"],"urlFilter":"||192.168.10.113^"},"id":64,"priority":10},
|
|
66
|
+
{"action":{"type":"block"},"condition":{"initiatorDomains":["eghtesadepooya.ir"],"urlFilter":"||okcs.com^"},"id":65,"priority":10},
|
|
67
|
+
{"action":{"type":"block"},"condition":{"initiatorDomains":["20file.org"],"urlFilter":"||cdn.jsdelivr.net^"},"id":66,"priority":10},
|
|
68
|
+
{"action":{"type":"block"},"condition":{"initiatorDomains":["jahaneghtesad.com"],"urlFilter":"||dummyimage.com^"},"id":67,"priority":10},
|
|
69
|
+
{"action":{"type":"block"},"condition":{"initiatorDomains":["nex1music.ir"],"urlFilter":"||via.placeholder.com^"},"id":68,"priority":10},
|
|
70
|
+
{"action":{"type":"block"},"condition":{"initiatorDomains":["androidsharp.com"],"resourceTypes":["image"],"urlFilter":"||iranroid.com^"},"id":69,"priority":10},
|
|
71
|
+
{"action":{"type":"block"},"condition":{"initiatorDomains":["p30afzar.com"],"resourceTypes":["image"],"urlFilter":"||androidsharp.com^"},"id":70,"priority":10},
|
|
72
|
+
{"action":{"type":"block"},"condition":{"initiatorDomains":["rouzegar.com"],"resourceTypes":["image"],"urlFilter":"||irancarpet.net^"},"id":71,"priority":10},
|
|
73
|
+
{"action":{"type":"block"},"condition":{"initiatorDomains":["sakhtafzarmag.com"],"resourceTypes":["image"],"urlFilter":"||dinu.ir^"},"id":72,"priority":10},
|
|
74
|
+
{"action":{"type":"block"},"condition":{"initiatorDomains":["skinak.ir"],"resourceTypes":["image"],"urlFilter":".gif^"},"id":73,"priority":10},
|
|
75
|
+
{"action":{"type":"block"},"condition":{"initiatorDomains":["yun.ir"],"resourceTypes":["sub_frame"]},"id":74,"priority":10},
|
|
76
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","initiatorDomains":["my.irancell.ir"],"resourceTypes":["image"],"urlFilter":"||cdn-ngmy.irancell.ir/assets/images/ads^"},"id":75,"priority":10},
|
|
77
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","initiatorDomains":["appreview.ir"],"urlFilter":"||farazsms.com^"},"id":76,"priority":10},
|
|
78
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","initiatorDomains":["bale.ai"],"urlFilter":"||sentry.bale.sh^"},"id":77,"priority":10},
|
|
79
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","initiatorDomains":["dolatebahar.ir"],"urlFilter":"||sai.co.ir^"},"id":78,"priority":10},
|
|
80
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","initiatorDomains":["divar.ir"],"urlFilter":"||sentry.divar.cloud^"},"id":79,"priority":10},
|
|
81
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","initiatorDomains":["download.ir"],"urlFilter":"||vidiran.com^"},"id":80,"priority":10},
|
|
82
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","initiatorDomains":["fastmobile.ir"],"urlFilter":"||filmtarin.com^"},"id":81,"priority":10},
|
|
83
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","initiatorDomains":["fidibo.com"],"urlFilter":"||sentry.fidibo.net^"},"id":82,"priority":10},
|
|
84
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","initiatorDomains":["footballi.net"],"urlFilter":"||sentry.footballiapp.com^"},"id":83,"priority":10},
|
|
85
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","initiatorDomains":["musicdel.ir"],"urlFilter":"||danialtaherifar.ir^"},"id":84,"priority":10},
|
|
86
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","initiatorDomains":["nabakhabar.ir"],"urlFilter":"||dl.3danews.ir/wp-content/uploads/*.gif^"},"id":85,"priority":10},
|
|
87
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","initiatorDomains":["snappfood.ir"],"urlFilter":"||ingest-data-afra.snappfood.dev^"},"id":86,"priority":10},
|
|
88
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","initiatorDomains":["bartarinha.ir"],"resourceTypes":["image"],"urlFilter":"||novin.com^"},"id":87,"priority":10},
|
|
89
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","initiatorDomains":["car.ir"],"resourceTypes":["image"],"urlFilter":"||car.last-cdn.com/uploads/files/*.gif^"},"id":88,"priority":10},
|
|
90
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","initiatorDomains":["dailymobile.ir"],"resourceTypes":["image"],"urlFilter":"||parsaspace.com^"},"id":89,"priority":10},
|
|
91
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","initiatorDomains":["divar.ir"],"resourceTypes":["image"],"urlFilter":"||divarcdn.com/ssp/ads^"},"id":90,"priority":10},
|
|
92
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","initiatorDomains":["gamemods.ir"],"resourceTypes":["image"],"urlFilter":"||mihanwebhost.com^"},"id":91,"priority":10},
|
|
93
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","initiatorDomains":["ninisite.com"],"resourceTypes":["image"],"urlFilter":"||ninifile.com/statics/tabl^"},"id":92,"priority":10},
|
|
94
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","initiatorDomains":["zendegionline.ir"],"resourceTypes":["image"],"urlFilter":"||cdnfa.com/*.gif^"},"id":93,"priority":10},
|
|
95
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","initiatorDomains":["kojaro.com"],"resourceTypes":["sub_frame"]},"id":94,"priority":10},
|
|
96
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","initiatorDomains":["music-irani.com"],"resourceTypes":["media"],"urlFilter":"||skmusic.ir^"},"id":95,"priority":10},
|
|
97
|
+
{"action":{"type":"allow"},"condition":{"domainType":"firstParty","initiatorDomains":["payju.ir"],"resourceTypes":["image"],"urlFilter":"/advertise/"},"id":96,"priority":30},
|
|
98
|
+
{"action":{"type":"allow"},"condition":{"domainType":"thirdParty","initiatorDomains":["gostaresh.news"],"resourceTypes":["script"],"urlFilter":"||video.cdn.yektanet.com/video-"},"id":97,"priority":30},
|
|
99
|
+
{"action":{"type":"allow"},"condition":{"domainType":"thirdParty","initiatorDomains":["gostaresh.news"],"resourceTypes":["script"],"urlFilter":"||native-ad-placement-cdn.yektanet.com/static/video_scripts//video-"},"id":98,"priority":30},
|
|
100
|
+
{"action":{"type":"allow"},"condition":{"domainType":"thirdParty","initiatorDomains":["fararu.com"],"resourceTypes":["script"],"urlFilter":"||native-ad-placement-cdn.yektanet.com/static/video_scripts/video-"},"id":99,"priority":30},
|
|
101
|
+
{"action":{"type":"block"},"condition":{"initiatorDomains":["wisgoon.com"],"resourceTypes":["sub_frame"],"urlFilter":"||imasdk.googleapis.com/js/core/bridge*.html"},"id":100,"priority":40},
|
|
102
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||k2cod.com/ip/show-ip"},"id":101,"priority":10},
|
|
103
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||k2cod.com/statistics/"},"id":102,"priority":10},
|
|
104
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||10.10.34."},"id":103,"priority":10},
|
|
105
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||rizy.ir/js/ads.js"},"id":104,"priority":10},
|
|
106
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||slideskin.ir/ads/pop.php^"},"id":105,"priority":10},
|
|
107
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||seyedrezabazyar.com/codetools/files/close-right-click.js"},"id":106,"priority":10},
|
|
108
|
+
{"action":{"type":"block"},"condition":{"excludedInitiatorDomains":["anaj.ir","salamatnews.com"],"urlFilter":"||trustseal.e-rasaneh.ir^"},"id":107,"priority":10},
|
|
109
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||arzcenter.com/static/plugin/gtag.js^"},"id":108,"priority":10},
|
|
110
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||arga-mag.com/file/img/*.gif"},"id":109,"priority":10},
|
|
111
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||arga-mag.com/wp-content/plugins/meks-easy-ads-widget^"},"id":110,"priority":10},
|
|
112
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||alef.ir/files/advertise^"},"id":111,"priority":10},
|
|
113
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||alef.ir/assets/*/jquery.visit.js^"},"id":112,"priority":10},
|
|
114
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||alef.ir/news/visit.html^"},"id":113,"priority":10},
|
|
115
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||blog.akhbarrasmi.com/wp-content/plugins/*/analytics/"},"id":114,"priority":10},
|
|
116
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||androidgozar.com/abli^"},"id":115,"priority":10},
|
|
117
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||aftabir.com/uploads/banners^"},"id":116,"priority":10},
|
|
118
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||aftabyazdonline.ir/templates/aftabeyazd/images/ads"},"id":117,"priority":10},
|
|
119
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||ads.akairan.com"},"id":118,"priority":10},
|
|
120
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||ads.akaup.com"},"id":119,"priority":10},
|
|
121
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||abipic.com/ads/"},"id":120,"priority":10},
|
|
122
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||static.accpress.com/baner/"},"id":121,"priority":10},
|
|
123
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||afkarnews.com/statics/"},"id":122,"priority":10},
|
|
124
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||static.bourse24.ir/images/ads^"},"id":123,"priority":10},
|
|
125
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||behrah.com/tabligh.js"},"id":124,"priority":10},
|
|
126
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||b2n.ir/static/banners/advt.png"},"id":125,"priority":10},
|
|
127
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||b2n.ir/adv"},"id":126,"priority":10},
|
|
128
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||byst.ir/themesstore/ads"},"id":127,"priority":10},
|
|
129
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||byst.ir/visit/view"},"id":128,"priority":10},
|
|
130
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||boursenews.ir/fa/generate/userid"},"id":129,"priority":10},
|
|
131
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||barato.ir/wp-content/*/ad/"},"id":130,"priority":10},
|
|
132
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||barsadic.com/scripts/myjavascript.js"},"id":131,"priority":10},
|
|
133
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||barsadic.com/gif/*.gif"},"id":132,"priority":10},
|
|
134
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||b-amooz.com/wp-content/plugins/sticky-ad"},"id":133,"priority":10},
|
|
135
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||banki.ir/images/banners/"},"id":134,"priority":10},
|
|
136
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||bankemardom.ir/files/ads"},"id":135,"priority":10},
|
|
137
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||backtory.com/bucket/deepchart/deepchartanalytics.js"},"id":136,"priority":10},
|
|
138
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||beautyhome.ir/wp-content/plugins/meks-easy-ads"},"id":137,"priority":10},
|
|
139
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||beautyhome.ir/wp-content/plugins/ads"},"id":138,"priority":10},
|
|
140
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||beautyhome.ir/wp-content/plugins/sticky-ad"},"id":139,"priority":10},
|
|
141
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||pic.beautyhome.ir/*.gif"},"id":140,"priority":10},
|
|
142
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||beytoote.com/ads/socket.io.js"},"id":141,"priority":10},
|
|
143
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||beytoote.com/html_ads/"},"id":142,"priority":10},
|
|
144
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||storage.beytoote.com/images/adsbeytoote/"},"id":143,"priority":10},
|
|
145
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||ads.beytoote.com"},"id":144,"priority":10},
|
|
146
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||boyernews.com/wp-content/plugins/fadvertisement^"},"id":145,"priority":10},
|
|
147
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||chaapaar.ir/ads^"},"id":146,"priority":10},
|
|
148
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||coffeeapps.ir/cof-p.php^"},"id":147,"priority":10},
|
|
149
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||coffeeapps.ir/wp-content/plugins/wp-content-copy-protector^"},"id":148,"priority":10},
|
|
150
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||cooldl.net/raul/zula"},"id":149,"priority":10},
|
|
151
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||citna.ir/?q=simpleads"},"id":150,"priority":10},
|
|
152
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||citna.ir/sites/default/files/googleanalytics/analytics"},"id":151,"priority":10},
|
|
153
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||citna.ir/sites/default/files/images/ad"},"id":152,"priority":10},
|
|
154
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||cannews.aero/images/banner"},"id":153,"priority":10},
|
|
155
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||campec.ir/code/popup"},"id":154,"priority":10},
|
|
156
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||click.ir/wp-content/plugins/mmt-ads/"},"id":155,"priority":10},
|
|
157
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||caffecinema.com/media/banners/"},"id":156,"priority":10},
|
|
158
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||ta.dideo.ir/ad^"},"id":157,"priority":10},
|
|
159
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||1da.ir/img/*.gif"},"id":158,"priority":10},
|
|
160
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||1ea.ir/img/rep/ads"},"id":159,"priority":10},
|
|
161
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||download1music.ir/wp-content/themes/d1m/ads.jpg"},"id":160,"priority":10},
|
|
162
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||tadv.didestan.net"},"id":161,"priority":10},
|
|
163
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||didestan.com/*/script/vast"},"id":162,"priority":10},
|
|
164
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||didestan.com/stats"},"id":163,"priority":10},
|
|
165
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||didestan.com/vast.js"},"id":164,"priority":10},
|
|
166
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||didestan.com/video/vastlink.js"},"id":165,"priority":10},
|
|
167
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||dustaan.com/files/*/smio-push-notification"},"id":166,"priority":10},
|
|
168
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||dustaan.com/files/*/tracking"},"id":167,"priority":10},
|
|
169
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||downloadkral.com/wp-content/cache/min/0/wp-content/plugins/wp-postviews"},"id":168,"priority":10},
|
|
170
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||dlbook.net/wp-content/uploads/*/adv"},"id":169,"priority":10},
|
|
171
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||dande6.com/wp-content/themes/dande6/css/videojs.ads"},"id":170,"priority":10},
|
|
172
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||doctorwp.com/wp-content/plugins/better-ads"},"id":171,"priority":10},
|
|
173
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||donya-e-eqtesad.com/servev*/*.gif"},"id":172,"priority":10},
|
|
174
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||downloadsoftware.ir/images/ads^"},"id":173,"priority":10},
|
|
175
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||dunro.com/dist/najva-messaging-sw.js"},"id":174,"priority":10},
|
|
176
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||analytics.dunro.com"},"id":175,"priority":10},
|
|
177
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||api.dunro.com/api/*/geoip"},"id":176,"priority":10},
|
|
178
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||downloadly.ir/wp-content/plugins/blackswanlab-click-counter^"},"id":177,"priority":10},
|
|
179
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||ads.dabi.ir"},"id":178,"priority":10},
|
|
180
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||dabi.ir/images/page-ads"},"id":179,"priority":10},
|
|
181
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||dabi.ir/upload/staticbanners"},"id":180,"priority":10},
|
|
182
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||dabi.ir/upload/boors3pic/empty-"},"id":181,"priority":10},
|
|
183
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||dabi.ir/banner/banner"},"id":182,"priority":10},
|
|
184
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||digiato.com/wp-content/plugins/duracelltomi-google-tag-manager/js/analytics-talk-content-tracking.js"},"id":183,"priority":10},
|
|
185
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||digistyle.com/tracker^"},"id":184,"priority":10},
|
|
186
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||etma.ir/fa/logsitevisit^"},"id":185,"priority":10},
|
|
187
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||ecoiran.com/servev*/*.gif"},"id":186,"priority":10},
|
|
188
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||ezp30.com/wp-content/themes/ezp30/pjs"},"id":187,"priority":10},
|
|
189
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||farspatogh.ir/media/ads/"},"id":188,"priority":10},
|
|
190
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||forum.moshaver.co/images/ads/"},"id":189,"priority":10},
|
|
191
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||emalls.ir/js/yektanet.js"},"id":190,"priority":10},
|
|
192
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||emalls.ir/files/da/"},"id":191,"priority":10},
|
|
193
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||esetupdate.ir/adv/"},"id":192,"priority":10},
|
|
194
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||20file.org/script/p2.js^"},"id":193,"priority":10},
|
|
195
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||football360.ir/api/advertisements^"},"id":194,"priority":10},
|
|
196
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||freedownload.ir/images/customer/"},"id":195,"priority":10},
|
|
197
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||filcin.com/site/show-adv"},"id":196,"priority":10},
|
|
198
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||faaltarin.com/adv-load.asp"},"id":197,"priority":10},
|
|
199
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||farnet.io/wp-content/plugins/better-post-views^"},"id":198,"priority":10},
|
|
200
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||analysis.faradars.org"},"id":199,"priority":10},
|
|
201
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||core.gapfilm.ir/api/*/banner/getbanner?bannerid="},"id":200,"priority":10},
|
|
202
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||gostaresh.news/statics^"},"id":201,"priority":10},
|
|
203
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||ghatreh.com/ads^"},"id":202,"priority":10},
|
|
204
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||ghatreh.com/skins/default/js/najva.js^"},"id":203,"priority":10},
|
|
205
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||ghatreh.com/skins/default/najva.css^"},"id":204,"priority":10},
|
|
206
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||gadgetnews.net/wp-content/uploads/*.gif"},"id":205,"priority":10},
|
|
207
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||honarehzendegi.com/cdn-cgi/challenge-platform^"},"id":206,"priority":10},
|
|
208
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||hadana.ir/wp-content/plugins/better-ads"},"id":207,"priority":10},
|
|
209
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||hamgardy.com/uploads/advertisment/"},"id":208,"priority":10},
|
|
210
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||hiads.hidoctor.ir/"},"id":209,"priority":10},
|
|
211
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||hidoctor.ir/hiads"},"id":210,"priority":10},
|
|
212
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||hamshahrionline.ir/rest/visit^"},"id":211,"priority":10},
|
|
213
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||ifilo.net/onclick^"},"id":212,"priority":10},
|
|
214
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||imna.ir/rest/visit^"},"id":213,"priority":10},
|
|
215
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||i-video.ir/ipop.js"},"id":214,"priority":10},
|
|
216
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||i-video.ir/ipop.php"},"id":215,"priority":10},
|
|
217
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||ipinz.ir/wp-content/plugins/google-analytics"},"id":216,"priority":10},
|
|
218
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||iranart.news/statics"},"id":217,"priority":10},
|
|
219
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||icivil.ir/omran/wp-content/cache/min/*/omran/wp-content/plugins/adrotate"},"id":218,"priority":10},
|
|
220
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||icivil.ir/omran/wp-content/cache/busting/*/omran/wp-content/plugins/google-analytics"},"id":219,"priority":10},
|
|
221
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||iraniandog.com/iss"},"id":220,"priority":10},
|
|
222
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||irna.ir/rest/visit"},"id":221,"priority":10},
|
|
223
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||irlanguage.com/themes/mashhadteam-default/script/ga.js"},"id":222,"priority":10},
|
|
224
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||jahaneghtesad.com/wp-content/plugins/top-10^"},"id":223,"priority":10},
|
|
225
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||jahaneghtesad.com/wp-content/uploads/matomo^"},"id":224,"priority":10},
|
|
226
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||mhvllvgrefplg.com/v.js"},"id":225,"priority":10},
|
|
227
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||ucxfdvhuqwpig.com/vvja.js"},"id":226,"priority":10},
|
|
228
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||javanmobile.com/wp-content/cache/min/*/wp-content/plugins/adrotate"},"id":227,"priority":10},
|
|
229
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||khodropluss.ir/wp-json/wp-statistics^"},"id":228,"priority":10},
|
|
230
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||khanefootball.com/aec.min.js^"},"id":229,"priority":10},
|
|
231
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||khoshamoz.ir/img/ads^"},"id":230,"priority":10},
|
|
232
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||khaandaniha.ir/upload/public/advertisement^"},"id":231,"priority":10},
|
|
233
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||khabareazad.com/aec.min.js^"},"id":232,"priority":10},
|
|
234
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||cdn.khodrobank.com/images/banners/"},"id":233,"priority":10},
|
|
235
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||s1.khf.nz/sites/default/files/upload_banner/ads"},"id":234,"priority":10},
|
|
236
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||s1.khf.nz/sites/default/files/ads/"},"id":235,"priority":10},
|
|
237
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||karpishe.com/api/collect/job-click^"},"id":236,"priority":10},
|
|
238
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||karpishe.com/api/actionlog^"},"id":237,"priority":10},
|
|
239
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||karpishe.com/api/shared/log^"},"id":238,"priority":10},
|
|
240
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||khabarpu.com/js/getscript.js^"},"id":239,"priority":10},
|
|
241
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||lamtakam.com/img/ad"},"id":240,"priority":10},
|
|
242
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||lahzeakhar.com/showads"},"id":241,"priority":10},
|
|
243
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||magland.ir/banner_images^"},"id":242,"priority":10},
|
|
244
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||moviemag.ir/media/com_rstbox/js/engagebox.js^"},"id":243,"priority":10},
|
|
245
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||moviemag.ir/media/com_rstbox/css/engagebox.css^"},"id":244,"priority":10},
|
|
246
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||mipersia.com/wp-content/cache/caos-analytics"},"id":245,"priority":10},
|
|
247
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||meghdadit.com/api/subscriber/is-firsttime-user"},"id":246,"priority":10},
|
|
248
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||montiego.ir/dl/popmon.js"},"id":247,"priority":10},
|
|
249
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||marzfun.com/wp-content/plugins/google-analytics"},"id":248,"priority":10},
|
|
250
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||my-film.pw/wp-content/uploads/*/ad"},"id":249,"priority":10},
|
|
251
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||mer30download.com/wp-content/uploads/*/ad"},"id":250,"priority":10},
|
|
252
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||mashreghnews.ir/rest/visit"},"id":251,"priority":10},
|
|
253
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||mashreghnews.ir/d/*/*.gif"},"id":252,"priority":10},
|
|
254
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||mihanscript.net/wp-json/wp-statistics/"},"id":253,"priority":10},
|
|
255
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||mihandownload.com/sw.js"},"id":254,"priority":10},
|
|
256
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||mehrnews.com/rest/visit"},"id":255,"priority":10},
|
|
257
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||netbarg.com/matomo.js"},"id":256,"priority":10},
|
|
258
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||namasha.com/visit?id="},"id":257,"priority":10},
|
|
259
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||static.namasha.com/content/player*/vast.js"},"id":258,"priority":10},
|
|
260
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||nex1.ir/p.js"},"id":259,"priority":10},
|
|
261
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||nex1.ir/p.php"},"id":260,"priority":10},
|
|
262
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||navatv.com/wp-admin/admin-ajax.php?action=adwised"},"id":261,"priority":10},
|
|
263
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||navatv.com/?wordfence"},"id":262,"priority":10},
|
|
264
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||niksalehi.com/newspaper/wp-content/themes/new_niksalehi/counter_view.php"},"id":263,"priority":10},
|
|
265
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||nex1music.ir/bnr/"},"id":264,"priority":10},
|
|
266
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||namakstan.net/wp-content/cache/busting/1/gtm-"},"id":265,"priority":10},
|
|
267
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||55online.news/aec.min.js^"},"id":266,"priority":10},
|
|
268
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||55online.news/rss-files.php^"},"id":267,"priority":10},
|
|
269
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||parsaspace.com/content/new/js/analytics.js^"},"id":268,"priority":10},
|
|
270
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||pichak.net/nohe/amar.js"},"id":269,"priority":10},
|
|
271
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||pichak.net/ads/"},"id":270,"priority":10},
|
|
272
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||parsiblog.com/adv/"},"id":271,"priority":10},
|
|
273
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||imencms.com/mobile/ptadv.jpg"},"id":272,"priority":10},
|
|
274
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||persiangfx.com/tab/banner/"},"id":273,"priority":10},
|
|
275
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||p30afzar.com/myjs/a.js"},"id":274,"priority":10},
|
|
276
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||film.persianv.com/frontend/js/ads/"},"id":275,"priority":10},
|
|
277
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||pishkhan.com/pishkhaanads/"},"id":276,"priority":10},
|
|
278
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||paperhub.ir/images/*.gif"},"id":277,"priority":10},
|
|
279
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||rayamag.com/piwik^"},"id":278,"priority":10},
|
|
280
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||rahnamato.ir/common/visitcount^"},"id":279,"priority":10},
|
|
281
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||rizy.ir/img/*.gif"},"id":280,"priority":10},
|
|
282
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||rozup.ir/theme/*/img/txtad.png"},"id":281,"priority":10},
|
|
283
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||rooziato.com/wp-content/plugins/duracelltomi-google-tag-manager/js/analytics-talk-content-tracking"},"id":282,"priority":10},
|
|
284
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||rondbaz.com/js/analytics.js"},"id":283,"priority":10},
|
|
285
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||rajanews.com/sites/default/files/superadmin/*.gif"},"id":284,"priority":10},
|
|
286
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||sid.ir/adv^"},"id":285,"priority":10},
|
|
287
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||salameno.com/rest/visit^"},"id":286,"priority":10},
|
|
288
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||media.salameno.com/d/*.gif"},"id":287,"priority":10},
|
|
289
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||shmi.ir/wp-content/uploads/*gif"},"id":288,"priority":10},
|
|
290
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||setare.com/files/*.gif"},"id":289,"priority":10},
|
|
291
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||setare.com/wp-content/tags/yn_bnr"},"id":290,"priority":10},
|
|
292
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||shomavaeghtesad.com/rss-rasa.php^"},"id":291,"priority":10},
|
|
293
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||serveriran.net/wp-content/plugins/wccp-pro"},"id":292,"priority":10},
|
|
294
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||stnews.ir/ads/"},"id":293,"priority":10},
|
|
295
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||shirazsong.in/wp-content/plugins/google-analytics"},"id":294,"priority":10},
|
|
296
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||samatak.com/ads"},"id":295,"priority":10},
|
|
297
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||shop-theme.ir/code/popup"},"id":296,"priority":10},
|
|
298
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||sourceiran.com/wp-content/plugins/layered-popups/js/ads"},"id":297,"priority":10},
|
|
299
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||sakhtafzarmag.com/wp-content/uploads/ads^"},"id":298,"priority":10},
|
|
300
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||seemorgh.com/images/*/ads/"},"id":299,"priority":10},
|
|
301
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||softsaaz.ir/wp-content/plugins/affiliate-wp/assets/js/tracking.min.js"},"id":300,"priority":10},
|
|
302
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||simcart.com/upload/banner"},"id":301,"priority":10},
|
|
303
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||shahrsakhtafzar.com/fa/images/banners/"},"id":302,"priority":10},
|
|
304
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||sena.ir/rest/visit"},"id":303,"priority":10},
|
|
305
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||sakhtafzar.com/wp-json/wpstatistics/"},"id":304,"priority":10},
|
|
306
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||1000site.ir/asset/media/banner"},"id":305,"priority":10},
|
|
307
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||titrebartar.com/images/banners/*.gif"},"id":306,"priority":10},
|
|
308
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||technews-iran.com/wp-content/cache/min/*/amp-ad-"},"id":307,"priority":10},
|
|
309
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||takmili.com/wp-content/plugins/wccp-pro"},"id":308,"priority":10},
|
|
310
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||takmili.com/wp-content/plugins/google-analytics"},"id":309,"priority":10},
|
|
311
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||titr.online/api/stats"},"id":310,"priority":10},
|
|
312
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||topseda.ir/wp-content/plugins/google-analytics"},"id":311,"priority":10},
|
|
313
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||tafrihi.com/wp-content/plugins/simple-ads"},"id":312,"priority":10},
|
|
314
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||takro.net/cdn-cgi/zaraz/"},"id":313,"priority":10},
|
|
315
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||takro.net/cdn-cgi/apps/head"},"id":314,"priority":10},
|
|
316
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||toranji.ir/wp-content/uploads/*/*.gif"},"id":315,"priority":10},
|
|
317
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||toranji.ir/najva-messaging-sw.js^"},"id":316,"priority":10},
|
|
318
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||st-n.ads1-adnow.com/js/a.js"},"id":317,"priority":10},
|
|
319
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||tiwall.com/api/adver/"},"id":318,"priority":10},
|
|
320
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||tebyan.net/base/userlog^"},"id":319,"priority":10},
|
|
321
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||tebyan.net/home/userlog^"},"id":320,"priority":10},
|
|
322
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||tebyan.net/home/visit^"},"id":321,"priority":10},
|
|
323
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||tebyan.net/film/counter^"},"id":322,"priority":10},
|
|
324
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||film.tebyan.net/files/jwplayer//vast.js"},"id":323,"priority":10},
|
|
325
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||newsmedia.tasnimnews.com/tasnim/uploaded/ads/"},"id":324,"priority":10},
|
|
326
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||uptvs.com/wp-contents/plugins/viewstats"},"id":325,"priority":10},
|
|
327
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||uupload.ir/img/*.gif"},"id":326,"priority":10},
|
|
328
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||unp.ir/downloads/*/*.gif"},"id":327,"priority":10},
|
|
329
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||vipofilm.com/wp-content/plugins/adwised/assets/adwisedpop.js^"},"id":328,"priority":10},
|
|
330
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||vipofilm.com/wp-admin/admin-ajax.php?action=adwised"},"id":329,"priority":10},
|
|
331
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||up.varoone.ir/view/*/adv"},"id":330,"priority":10},
|
|
332
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||up.varoone.ir/view/*/*.gif"},"id":331,"priority":10},
|
|
333
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||video-learn.ir/code/popup^"},"id":332,"priority":10},
|
|
334
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||vigiato.net/wp-content/plugins/duracelltomi-google-tag-manager^"},"id":333,"priority":10},
|
|
335
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||wcity4.site/wp-json/wp-statistics^"},"id":334,"priority":10},
|
|
336
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||webii.ir/images/banner^"},"id":335,"priority":10},
|
|
337
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||webii.ir/images/loading.svg"},"id":336,"priority":10},
|
|
338
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||wikihoax.org/wp-content/plugins/eazy-ad-unblocker^"},"id":337,"priority":10},
|
|
339
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||wikihoax.org/wp-content/cache/busting/1/wp-content/plugins/eazy-ad-unblocker^"},"id":338,"priority":10},
|
|
340
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||wikihoax.org/wp-content/uploads/*/ads"},"id":339,"priority":10},
|
|
341
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||yektablog.net/js/adjs.php"},"id":340,"priority":10},
|
|
342
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||yun.ir/advertisement^"},"id":341,"priority":10},
|
|
343
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||t.me/bitbod_trading_club^"},"id":342,"priority":10},
|
|
344
|
+
{"action":{"type":"block"},"condition":{"excludedInitiatorDomains":["m.rubika.ir","web.rubika.ir"],"urlFilter":"||rubika.ir^"},"id":343,"priority":10},
|
|
345
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||takvim.tj/animation/adv_top_slide^"},"id":344,"priority":10},
|
|
346
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||biz-cdn.varzesh3.com/banners^"},"id":345,"priority":10},
|
|
347
|
+
{"action":{"type":"block"},"condition":{"urlFilter":"||biz.varzesh3.com/vast^"},"id":346,"priority":10},
|
|
348
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["script","stylesheet","xmlhttprequest"],"urlFilter":"||kilipo.com/themes/vidplay/player/plugins/ads^"},"id":347,"priority":10},
|
|
349
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["script","stylesheet","xmlhttprequest"],"urlFilter":"||kilipo.com/themes/vidplay/player/plugins/vast^"},"id":348,"priority":10},
|
|
350
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["script","stylesheet"],"urlFilter":"||aparat.com/static/vendor/dox"},"id":349,"priority":10},
|
|
351
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["image","script","stylesheet","xmlhttprequest"],"urlFilter":"||jafekri.com/wp-content/plugins/wccp-pro^"},"id":350,"priority":10},
|
|
352
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["stylesheet"],"urlFilter":"||cdni.jabeh.com/videojs.ads.min.css^"},"id":351,"priority":10},
|
|
353
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["stylesheet"],"urlFilter":"||tamasha.com/dist/*/contrib/player/css/videojs.ima.min.css^"},"id":352,"priority":10},
|
|
354
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["stylesheet"],"urlFilter":"||tamasha.com/dist/*/contrib/player/css/videojs-contrib.min.css^"},"id":353,"priority":10},
|
|
355
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["image"],"urlFilter":"||afkarnews.com/servev2/"},"id":354,"priority":10},
|
|
356
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["image"],"urlFilter":"||dabi.ir/int//"},"id":355,"priority":10},
|
|
357
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["image","xmlhttprequest"],"urlFilter":"||downloadha.com/pic/top-posts-ads.png^"},"id":356,"priority":10},
|
|
358
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["image"],"urlFilter":"||api.enama.ir/webfiles/_adsbanner^"},"id":357,"priority":10},
|
|
359
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["image"],"urlFilter":"||namayesh.com/assets/ads^"},"id":358,"priority":10},
|
|
360
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["image"],"urlFilter":"||p30afzar.com/ext_files/"},"id":359,"priority":10},
|
|
361
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["image"],"urlFilter":"||oila.tj/storage/banners^"},"id":360,"priority":10},
|
|
362
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["script"],"urlFilter":"||abzarfa.com/services/minicounter^"},"id":361,"priority":10},
|
|
363
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["script"],"urlFilter":"||abzarfa.com/services/onlineusres^"},"id":362,"priority":10},
|
|
364
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["script"],"urlFilter":"||abzarfa.com/tools/ip^"},"id":363,"priority":10},
|
|
365
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["script"],"urlFilter":"||kilipo.com/themes/vidplay/js/fingerprintjs2^"},"id":364,"priority":10},
|
|
366
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["script"],"urlFilter":"||rozblog.com/code/popup^"},"id":365,"priority":10},
|
|
367
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["script"],"urlFilter":"||tamasha.com/dist/*/js/ads_tracker.min.js^"},"id":366,"priority":10},
|
|
368
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["script"],"urlFilter":"||tamasha.com/dist/*/js/tracker.min.js^"},"id":367,"priority":10},
|
|
369
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["script"],"urlFilter":"||bazdeh.org/wp-content/plugins/better-post-views^"},"id":368,"priority":10},
|
|
370
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["script"],"urlFilter":"||elmevarzesh.com/loader.js^"},"id":369,"priority":10},
|
|
371
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["script"],"urlFilter":"||api.enama.ir/demo//vast.js^"},"id":370,"priority":10},
|
|
372
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["script","xmlhttprequest"],"urlFilter":"||filmsky.ir/wp-content/plugins/layered-popups^"},"id":371,"priority":10},
|
|
373
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["script"],"urlFilter":"||tarfandha.org/pop/popmain.js^"},"id":372,"priority":10},
|
|
374
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["script"],"urlFilter":"||cdni.jabeh.com/videojs.ads.min.js^"},"id":373,"priority":10},
|
|
375
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["script"],"urlFilter":"||cdni.jabeh.com/videojs.ima.min.js^"},"id":374,"priority":10},
|
|
376
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["script"],"urlFilter":"||sobhtazeh.news/player/vast.js^"},"id":375,"priority":10},
|
|
377
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["script"],"urlFilter":"||sobhtazeh.news/player/vastlink.js^"},"id":376,"priority":10},
|
|
378
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["script"],"urlFilter":"||tamasha.com/dist/*/contrib/player/js/ima3.min.js^"},"id":377,"priority":10},
|
|
379
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["script"],"urlFilter":"||tamasha.com/dist/*/contrib/player/js/videojs.ima.min.js^"},"id":378,"priority":10},
|
|
380
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["script"],"urlFilter":"||tamasha.com/dist/*/contrib/player/js/videojs-contrib.min.js^"},"id":379,"priority":10},
|
|
381
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["script"],"urlFilter":"||tabanmusic.com/p-pop^"},"id":380,"priority":10},
|
|
382
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["script"],"urlFilter":"||soft98.ir^"},"id":381,"priority":10},
|
|
383
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["xmlhttprequest"],"urlFilter":"||aparatsport.com/sport_ads.xml^"},"id":382,"priority":10},
|
|
384
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["xmlhttprequest"],"urlFilter":"||aparatsport.com/external/romeo^"},"id":383,"priority":10},
|
|
385
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["xmlhttprequest"],"urlFilter":"||api.enama.ir/ads^"},"id":384,"priority":10},
|
|
386
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["xmlhttprequest"],"urlFilter":"||api.enama.ir/object/adsview^"},"id":385,"priority":10},
|
|
387
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["xmlhttprequest"],"urlFilter":"||api-w.enama.ir//object/visited^"},"id":386,"priority":10},
|
|
388
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["xmlhttprequest"],"urlFilter":"||jabeh.com/analytics^"},"id":387,"priority":10},
|
|
389
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["xmlhttprequest"],"urlFilter":"||namayesh.com/configuration/v1/video/*/lazyads^"},"id":388,"priority":10},
|
|
390
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["xmlhttprequest"],"urlFilter":"||namayesh.com/configuration/v1/video/*/log^"},"id":389,"priority":10},
|
|
391
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["xmlhttprequest"],"urlFilter":"||sobhtazeh.news/rss-file.php^"},"id":390,"priority":10},
|
|
392
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["xmlhttprequest"],"urlFilter":"||tamasha.com/visid^"},"id":391,"priority":10},
|
|
393
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["sub_frame"],"urlFilter":"||rozblog.com/theme/ads/banner.html^"},"id":392,"priority":10},
|
|
394
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["sub_frame"],"urlFilter":"||oila.tj/storage/iframe^"},"id":393,"priority":10},
|
|
395
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["main_frame"],"urlFilter":"||c.filimium.com/meta/affiliate"},"id":394,"priority":10},
|
|
396
|
+
{"action":{"type":"block"},"condition":{"resourceTypes":["main_frame"],"urlFilter":"||github.com/rcycc/-"},"id":395,"priority":10},
|
|
397
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","urlFilter":"||noorlib.ir/sentry^"},"id":396,"priority":10},
|
|
398
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","requestMethods":["post"],"urlFilter":"||zarebin.ir/platform/api/supervisor/v1/events^"},"id":397,"priority":10},
|
|
399
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["stylesheet"],"urlFilter":"||ejiga.com/content/player/css/rmp-vast.css^"},"id":398,"priority":10},
|
|
400
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||niloblog.com/js/web.gif^"},"id":399,"priority":10},
|
|
401
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||cdn.alanchand.com/ads^"},"id":400,"priority":10},
|
|
402
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||autosafkar.com/app/uploads/*.gif^"},"id":401,"priority":10},
|
|
403
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||appahang5.com/cdn/ads^"},"id":402,"priority":10},
|
|
404
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||aboutall.ir/administrator/files/baner^"},"id":403,"priority":10},
|
|
405
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||img.cdn.asandl.com/panel^"},"id":404,"priority":10},
|
|
406
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||static.cdn.asset.aparat.com/agf-file^"},"id":405,"priority":10},
|
|
407
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||1abzar.com/files/ads.gif^"},"id":406,"priority":10},
|
|
408
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||1abzar.com/ads^"},"id":407,"priority":10},
|
|
409
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||bazimag.com/images/*.gif^"},"id":408,"priority":10},
|
|
410
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||bartarinha.ir/servev2/*.gif^"},"id":409,"priority":10},
|
|
411
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||chemgroup.net/files/assets/img/*.gif^"},"id":410,"priority":10},
|
|
412
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||dana.ir/dana/static/ads^"},"id":411,"priority":10},
|
|
413
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||cdn.dolatebahar.ir/upload/ads^"},"id":412,"priority":10},
|
|
414
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||darooyab.ir/content/advertisementimages^"},"id":413,"priority":10},
|
|
415
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||themez.top/*.gif^"},"id":414,"priority":10},
|
|
416
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||dlfox.com/wp-content/uploads/2015/10/dlfox300.png^"},"id":415,"priority":10},
|
|
417
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||digiboy.ir/wp-content/img/header^"},"id":416,"priority":10},
|
|
418
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||digiboy.ir/wp-content/img/sidebar^"},"id":417,"priority":10},
|
|
419
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||digiboy.ir/wp-content/img/sponsors^"},"id":418,"priority":10},
|
|
420
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||downloadha.com/pic/*.gif^"},"id":419,"priority":10},
|
|
421
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||gooya.com/ad/banners^"},"id":420,"priority":10},
|
|
422
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||news.gooya.com/*.gif^"},"id":421,"priority":10},
|
|
423
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||graphiran.com/wp-content/uploads/2014/11/ads468.png^"},"id":422,"priority":10},
|
|
424
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||graphiran.com/wp-content/uploads/2018/08/ds240.png^"},"id":423,"priority":10},
|
|
425
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||ivnanews.ir/storage//photos/*.gif^"},"id":424,"priority":10},
|
|
426
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||iica.ir/images/*.gif^"},"id":425,"priority":10},
|
|
427
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||iranzamin.news/img/new/ads-"},"id":426,"priority":10},
|
|
428
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||iranjib.ir/uploads/*.gif^"},"id":427,"priority":10},
|
|
429
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||irannaz.com/ax/*.gif^"},"id":428,"priority":10},
|
|
430
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||cdn.ilna.ir/servev2/*.gif^"},"id":429,"priority":10},
|
|
431
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||isna.ir/sd/*.gif^"},"id":430,"priority":10},
|
|
432
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||khabarerooz.com/servev2/*.gif"},"id":431,"priority":10},
|
|
433
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||dl.konkur.in/image/ads^"},"id":432,"priority":10},
|
|
434
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||images.kojaro.com/*.gif^"},"id":433,"priority":10},
|
|
435
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||mihantrader.com/media/images/ad^"},"id":434,"priority":10},
|
|
436
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||musicdel.ir/source.gif^"},"id":435,"priority":10},
|
|
437
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||nournews.ir/media/photo/*.webp^"},"id":436,"priority":10},
|
|
438
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||nournews.ir/media/photo/*.gif^"},"id":437,"priority":10},
|
|
439
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||files.niniplus.com/uploads2/advertise^"},"id":438,"priority":10},
|
|
440
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||niloblog.com/images/ads^"},"id":439,"priority":10},
|
|
441
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||fs.noorgram.ir/pic/*.gif^"},"id":440,"priority":10},
|
|
442
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||cdn.niniban.com/servev2/*.gif^"},"id":441,"priority":10},
|
|
443
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||persiansub.com/images/*.gif^"},"id":442,"priority":10},
|
|
444
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||dl.prozhedownload.com/pd/*.gif^"},"id":443,"priority":10},
|
|
445
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||pluginyab.ir/ads^"},"id":444,"priority":10},
|
|
446
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||payju.ir/sites/default/files/*.gif^"},"id":445,"priority":10},
|
|
447
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||payju.ir/sites/all/themes/peyjo/ads^"},"id":446,"priority":10},
|
|
448
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||i1.payamekhabar.ir/dbox/photos^"},"id":447,"priority":10},
|
|
449
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image","media"],"urlFilter":"||p30day.ir/images/tabligh"},"id":448,"priority":10},
|
|
450
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||parsnaz.com/ads^"},"id":449,"priority":10},
|
|
451
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||parsnaz.com/ads-link^"},"id":450,"priority":10},
|
|
452
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||p30download.ir/page/*.gif^"},"id":451,"priority":10},
|
|
453
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||pgnews.ir/uploads/*.gif^"},"id":452,"priority":10},
|
|
454
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||img.patoghu.com/new^"},"id":453,"priority":10},
|
|
455
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||media.sedayebourse.ir/d/*.gif^"},"id":454,"priority":10},
|
|
456
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||soorban.com/adsimg^"},"id":455,"priority":10},
|
|
457
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||soorban.com/images/stories/banners^"},"id":456,"priority":10},
|
|
458
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||static.shahrekhabar.com/banner/*.gif^"},"id":457,"priority":10},
|
|
459
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||cdn.sargarme.com/uploads/*.gif"},"id":458,"priority":10},
|
|
460
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||sariasan.com/upload/*.gif^"},"id":459,"priority":10},
|
|
461
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||shabakeh-mag.com/sites/default/files/*.gif^"},"id":460,"priority":10},
|
|
462
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||shabakeh-mag.com/sites/default/files/styles/shabake2_popular/public/images/ad^"},"id":461,"priority":10},
|
|
463
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||sheypoor.com/banner/tapsell/image^"},"id":462,"priority":10},
|
|
464
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||cdn.shomanews.com/servev2/*.gif"},"id":463,"priority":10},
|
|
465
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||sarzamindownload.com/images/banners^"},"id":464,"priority":10},
|
|
466
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||softgozar.com/image/siteade^"},"id":465,"priority":10},
|
|
467
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||saednews.com/bnr-ad^"},"id":466,"priority":10},
|
|
468
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||media.saat24.news/d/*.gif"},"id":467,"priority":10},
|
|
469
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||tajrobe.wiki/images/ads^"},"id":468,"priority":10},
|
|
470
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||targoman.ir/img/ads^"},"id":469,"priority":10},
|
|
471
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||tinroid.ir/images/ads^"},"id":470,"priority":10},
|
|
472
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||tmk.ir/v1/jwplayer6/ping.gif^"},"id":471,"priority":10},
|
|
473
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||static.tgju.org/advertisement^"},"id":472,"priority":10},
|
|
474
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||tarafdari.com/sites/all/themes/hope/images/ad_home_page.jpg^"},"id":473,"priority":10},
|
|
475
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||tarafdari.com/sites/all/themes/hope/images/advertise^"},"id":474,"priority":10},
|
|
476
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||uploadboy.com/banner^"},"id":475,"priority":10},
|
|
477
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||uploadboy.com/images/*.gif^"},"id":476,"priority":10},
|
|
478
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||uploadb.com/banner^"},"id":477,"priority":10},
|
|
479
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||uploadb.com/images/*.gif^"},"id":478,"priority":10},
|
|
480
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||varazendegi.com/_next/image?url=*.gif^"},"id":479,"priority":10},
|
|
481
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||vazeh.com/banners/us/*.gif^"},"id":480,"priority":10},
|
|
482
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||vista.ir/ads^"},"id":481,"priority":10},
|
|
483
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image","xmlhttprequest"],"urlFilter":"||gateway.wisgoon.com/services/vast^"},"id":482,"priority":10},
|
|
484
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||webgozar.com/adimg^"},"id":483,"priority":10},
|
|
485
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||zibamoon.com/files/ads/"},"id":484,"priority":10},
|
|
486
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||blogfa.com/a^"},"id":485,"priority":10},
|
|
487
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||niloblog.com/ads.js^"},"id":486,"priority":10},
|
|
488
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||parsiblog.com/ga.js^"},"id":487,"priority":10},
|
|
489
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||alibaba.ir/adtrace-latest.min.js^"},"id":488,"priority":10},
|
|
490
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||links.aftab.cc/js.php^"},"id":489,"priority":10},
|
|
491
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||ac.ir/common/scripts/analytics/meetinglaunchia.js^"},"id":490,"priority":10},
|
|
492
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||abadis.ir/libs/async/ads.min.js^"},"id":491,"priority":10},
|
|
493
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||androidina.net/analytics.js^"},"id":492,"priority":10},
|
|
494
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||web.bale.ai/static/js/web-vitals."},"id":493,"priority":10},
|
|
495
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||divar.ir/g-scripts^"},"id":494,"priority":10},
|
|
496
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||ejiga.com/content/player/js/rmp-vast.js^"},"id":495,"priority":10},
|
|
497
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||footballi.net/assets/shared-application/scripts/jwplayer/vast.js^"},"id":496,"priority":10},
|
|
498
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||getandroid.ir/files/js/landing"},"id":497,"priority":10},
|
|
499
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||iranjib.ir/js/analytics"},"id":498,"priority":10},
|
|
500
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||jobvision.ir/assets/js/webengage-min-"},"id":499,"priority":10},
|
|
501
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||kojaro.com/kojaro/ui/js/banner.js^"},"id":500,"priority":10},
|
|
502
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||musicdel.ir/danga4.js^"},"id":501,"priority":10},
|
|
503
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||mihanvideo.com/static/js/video_player/jwplayer/plugins/vast/vast.js^"},"id":502,"priority":10},
|
|
504
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||mihanvideo.com/static/js/video_player/jwplayer/*/jwpsrv.js^"},"id":503,"priority":10},
|
|
505
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||stats.nournews.ir/nournews.js^"},"id":504,"priority":10},
|
|
506
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||power-music.ir/sw.js^"},"id":505,"priority":10},
|
|
507
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||patoghu.com/n/d^"},"id":506,"priority":10},
|
|
508
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||patoghu.com/analytics.js^"},"id":507,"priority":10},
|
|
509
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||img.patoghu.com/patoghu-"},"id":508,"priority":10},
|
|
510
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||qnama.ir/ipop.js^"},"id":509,"priority":10},
|
|
511
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||rasaneh3.ir/popup.js^"},"id":510,"priority":10},
|
|
512
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||solahangs.com/popup.js^"},"id":511,"priority":10},
|
|
513
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||shomanews.com/player/vastlink.js^"},"id":512,"priority":10},
|
|
514
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||shomanews.com/player/vast.js^"},"id":513,"priority":10},
|
|
515
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||sarzamindownload.com/ppjs/free/freepop.js^"},"id":514,"priority":10},
|
|
516
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||targoman.ir/autotrack.js^"},"id":515,"priority":10},
|
|
517
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||tmk.ir/src/jw/jwpsrv.js^"},"id":516,"priority":10},
|
|
518
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||tak3da.com/wp-content/plugins/popup-builder^"},"id":517,"priority":10},
|
|
519
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||tvrooz.com/analytics.js^"},"id":518,"priority":10},
|
|
520
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||tvrooz.com/tvrooz-analytics.js^"},"id":519,"priority":10},
|
|
521
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||technolife.ir/image/affili.js^"},"id":520,"priority":10},
|
|
522
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||technolife.ir/image/sanjagh.js^"},"id":521,"priority":10},
|
|
523
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||technolife.ir/image/najvascript.js^"},"id":522,"priority":10},
|
|
524
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||technolife.ir/image/deema0.js^"},"id":523,"priority":10},
|
|
525
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||technolife.ir/image/deemascript.js^"},"id":524,"priority":10},
|
|
526
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||technolife.ir/image/yektanetscript.js^"},"id":525,"priority":10},
|
|
527
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||takhfifan.com/static/matomo.js^"},"id":526,"priority":10},
|
|
528
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||upmusics.com/mtnir.js^"},"id":527,"priority":10},
|
|
529
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||ahlolbait.com/ads/script.js^"},"id":528,"priority":10},
|
|
530
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["xmlhttprequest"],"urlFilter":"/wp-admin/admin-ajax.php?postviews_id="},"id":529,"priority":10},
|
|
531
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||blogix.ir/stat?referer="},"id":530,"priority":10},
|
|
532
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||api.yek.link/api/landing/click^"},"id":531,"priority":10},
|
|
533
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||appreview.ir/advertisement/counter^"},"id":532,"priority":10},
|
|
534
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||nodes.alaatv.com/upload/vast/xml^"},"id":533,"priority":10},
|
|
535
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","requestMethods":["options","post"],"resourceTypes":["xmlhttprequest"],"urlFilter":"||next-api.bale.ai/bale.seraj_proxy.v1.serajproxy/sendserajevent^"},"id":534,"priority":10},
|
|
536
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","requestMethods":["options","post"],"resourceTypes":["xmlhttprequest"],"urlFilter":"||next-api.bale.ai/bale.advertisement.v1.advertisement/getadprovider^"},"id":535,"priority":10},
|
|
537
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","requestMethods":["options","post"],"resourceTypes":["xmlhttprequest"],"urlFilter":"||next-api.bale.ai/bale.presence.v1.presence/setonline^"},"id":536,"priority":10},
|
|
538
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","requestMethods":["options","post"],"resourceTypes":["xmlhttprequest"],"urlFilter":"||next-api.bale.ai/bale.presence.v1.presence/typing^"},"id":537,"priority":10},
|
|
539
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","requestMethods":["options","post"],"resourceTypes":["xmlhttprequest"],"urlFilter":"||next-api.bale.ai/bale.presence.v1.presence/stoptyping^"},"id":538,"priority":10},
|
|
540
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||bama.ir/*/api/log^"},"id":539,"priority":10},
|
|
541
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||dideo.tv/ad/adpack^"},"id":540,"priority":10},
|
|
542
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||api.divar.ir/v8/ad-auction^"},"id":541,"priority":10},
|
|
543
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||filimo.com/external/romeo^"},"id":542,"priority":10},
|
|
544
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||filimo.com/external/visitpost^"},"id":543,"priority":10},
|
|
545
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||api.footballi.net/api/*/news/visit^"},"id":544,"priority":10},
|
|
546
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||api.farsnews.ir/log^"},"id":545,"priority":10},
|
|
547
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||isna.ir/rest/visit^"},"id":546,"priority":10},
|
|
548
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||rest.karnameh.com/api/event_logs^"},"id":547,"priority":10},
|
|
549
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||khabarerooz.com/linkhelpers^"},"id":548,"priority":10},
|
|
550
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||konkur.in/wp-json/wpstatistics^"},"id":549,"priority":10},
|
|
551
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","requestMethods":["post"],"resourceTypes":["xmlhttprequest"],"urlFilter":"||lenz.ir/api/v3/frequents/playrecord^"},"id":550,"priority":10},
|
|
552
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","requestMethods":["post"],"resourceTypes":["xmlhttprequest"],"urlFilter":"||lenz.ir/api/v3/frequents/playheartbit^"},"id":551,"priority":10},
|
|
553
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||melkana.com/ngx_pagespeed_beacon?url="},"id":552,"priority":10},
|
|
554
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||berkechat.top/ajax/login.codes^"},"id":553,"priority":10},
|
|
555
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||berkechat.top/ajax/chat.codes^"},"id":554,"priority":10},
|
|
556
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||maxstars.ir/ajax/login.codes^"},"id":555,"priority":10},
|
|
557
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||maxstars.ir/ajax/chat.codes^"},"id":556,"priority":10},
|
|
558
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||mihanvideo.com/log^"},"id":557,"priority":10},
|
|
559
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||noorlib.ir/inoorcdn/ads^"},"id":558,"priority":10},
|
|
560
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","requestMethods":["post"],"resourceTypes":["xmlhttprequest"],"urlFilter":"||noorlib.ir/api/book/insertclientbookvisitlog^"},"id":559,"priority":10},
|
|
561
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","requestMethods":["post"],"resourceTypes":["xmlhttprequest"],"urlFilter":"||noorlib.ir/api/user/setuserfootprintonbook^"},"id":560,"priority":10},
|
|
562
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","requestMethods":["post"],"resourceTypes":["xmlhttprequest"],"urlFilter":"||noorlib.ir/api/user/registeruserstudylog^"},"id":561,"priority":10},
|
|
563
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||namnak.com/statistics/update^"},"id":562,"priority":10},
|
|
564
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","requestMethods":["post"],"resourceTypes":["xmlhttprequest"],"urlFilter":"||search.paziresh24.com/seapi/stat^"},"id":563,"priority":10},
|
|
565
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||search.paziresh24.com/seapi/stat/position^"},"id":564,"priority":10},
|
|
566
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","requestMethods":["post"],"resourceTypes":["xmlhttprequest"],"urlFilter":"||paziresh24.com/services/collector^"},"id":565,"priority":10},
|
|
567
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||plaza.ir/location/find-client-location^"},"id":566,"priority":10},
|
|
568
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||plaza.ir/wp-admin/admin-ajax.php?action=getclientdevicerelatedpostitems^"},"id":567,"priority":10},
|
|
569
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","requestMethods":["post"],"resourceTypes":["xmlhttprequest"],"urlFilter":"||p30konkor.com/wp-json/wordpress-popular-posts/v2/views/"},"id":568,"priority":10},
|
|
570
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","requestMethods":["post"],"resourceTypes":["xmlhttprequest"],"urlFilter":"||raavito.com/ws/usage/submit^"},"id":569,"priority":10},
|
|
571
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||rond.ir/api/ns/common/web/advertisement/page^"},"id":570,"priority":10},
|
|
572
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||safarmarket.com/api/ads^"},"id":571,"priority":10},
|
|
573
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||safarmarket.com/api/core/analytics^"},"id":572,"priority":10},
|
|
574
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||shabakeh-mag.com/modules/statistics/statistics.php^"},"id":573,"priority":10},
|
|
575
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","requestMethods":["post"],"resourceTypes":["xmlhttprequest"],"urlFilter":"||api.snapp.doctor/tweety/api/v1/journey^"},"id":574,"priority":10},
|
|
576
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||shomanews.com/rss-rasa.php^"},"id":575,"priority":10},
|
|
577
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||shomanews.com/rss-files.php^"},"id":576,"priority":10},
|
|
578
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||saat24.news/rest/visit^"},"id":577,"priority":10},
|
|
579
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","requestMethods":["post"],"resourceTypes":["xmlhttprequest"],"urlFilter":"||gateway.telewebion.com/broker/api/v1/message/twplayer^"},"id":578,"priority":10},
|
|
580
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","requestMethods":["post"],"resourceTypes":["xmlhttprequest"],"urlFilter":"||gateway.telewebion.com/broker/api/v1/message/archive^"},"id":579,"priority":10},
|
|
581
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","requestMethods":["options","post"],"resourceTypes":["xmlhttprequest"],"urlFilter":"||gateway.telewebion.com/broker/api/v1/message/live^"},"id":580,"priority":10},
|
|
582
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","requestMethods":["post"],"resourceTypes":["xmlhttprequest"],"urlFilter":"||data.telewebion.com/broker/api/v1/message/vod-player^"},"id":581,"priority":10},
|
|
583
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||tarafdari.com/advertise^"},"id":582,"priority":10},
|
|
584
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","requestMethods":["post"],"resourceTypes":["xmlhttprequest"],"urlFilter":"||tarafdari.com/modules/statistics/statistics.php^"},"id":583,"priority":10},
|
|
585
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||api.virasty.com/log^"},"id":584,"priority":10},
|
|
586
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||virgool.io/api2/app/users/relatedads^"},"id":585,"priority":10},
|
|
587
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||virgool.io/api2/app/posts/*/ad^"},"id":586,"priority":10},
|
|
588
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","requestMethods":["post"],"resourceTypes":["xmlhttprequest"],"urlFilter":"||virgool.io/api2/app/session/start^"},"id":587,"priority":10},
|
|
589
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","requestMethods":["post"],"resourceTypes":["xmlhttprequest"],"urlFilter":"||virgool.io/api2/app/session/read-ratio^"},"id":588,"priority":10},
|
|
590
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","requestMethods":["post"],"resourceTypes":["xmlhttprequest"],"urlFilter":"||zarebin.ir/we/api/v1/web-enrich/elements?qsrc=user^"},"id":589,"priority":10},
|
|
591
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","requestMethods":["post"],"resourceTypes":["xmlhttprequest"],"urlFilter":"||cafevdo.zarebin.ir/api/v1/accounts/action^"},"id":590,"priority":10},
|
|
592
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","requestMethods":["post"],"resourceTypes":["xmlhttprequest"],"urlFilter":"||cafevdo.zarebin.ir/api/v1/events^"},"id":591,"priority":10},
|
|
593
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||zinofilm.ir/wp-json/wp-statistics^"},"id":592,"priority":10},
|
|
594
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","requestMethods":["post"],"resourceTypes":["xmlhttprequest"],"urlFilter":"||api2.zoomit.ir/catalog/api/products/*/visit^"},"id":593,"priority":10},
|
|
595
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||vast.filmnet.ir^"},"id":594,"priority":10},
|
|
596
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["sub_frame"],"urlFilter":"||bargozideha.com/ddd.html^"},"id":595,"priority":10},
|
|
597
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["sub_frame"],"urlFilter":"||gooya.com/ad/ads.php^"},"id":596,"priority":10},
|
|
598
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["sub_frame"],"urlFilter":"||varandaz.com/ifrah^"},"id":597,"priority":10},
|
|
599
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["media"],"urlFilter":"||binaopt.com/wp-content/uploads/*.webm^"},"id":598,"priority":10},
|
|
600
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["media"],"urlFilter":"||peivast.com/wp-content/uploads/*.webm"},"id":599,"priority":10},
|
|
601
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["websocket"],"urlFilter":"||ws.namava.ir/?%27usertoken=*&client_info=^"},"id":600,"priority":10},
|
|
602
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["ping"],"urlFilter":"||api.divar.ir/*/actionlog^"},"id":601,"priority":10},
|
|
603
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","resourceTypes":["ping"],"urlFilter":"||api.divar.ir/*/client-exporter/send-report^"},"id":602,"priority":10},
|
|
604
|
+
{"action":{"type":"block"},"condition":{"domainType":"firstParty","requestMethods":["post"],"resourceTypes":["ping"],"urlFilter":"||paziresh24.com/patient/api/webvitals^"},"id":603,"priority":10},
|
|
605
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","urlFilter":"||simple-counter.com/hit.php^"},"id":604,"priority":10},
|
|
606
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","urlFilter":"||shomanews.com/box.php^"},"id":605,"priority":10},
|
|
607
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","resourceTypes":["image"],"urlFilter":"||alaqsastorm.com/aqsa/ads.php^"},"id":606,"priority":10},
|
|
608
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","excludedInitiatorDomains":["soft98.ir"],"resourceTypes":["image"],"urlFilter":"||cdn.hostdl.com/img/*.gif"},"id":607,"priority":10},
|
|
609
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","excludedInitiatorDomains":["soft98.ir"],"resourceTypes":["image"],"urlFilter":"||cdn.hostdl.com/banners/*.gif"},"id":608,"priority":10},
|
|
610
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","excludedInitiatorDomains":["soft98.ir"],"resourceTypes":["image"],"urlFilter":"||cdn.hostdl.com/assets/*.gif"},"id":609,"priority":10},
|
|
611
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","resourceTypes":["image"],"urlFilter":"||safarmarket.com/api/v1/trace^"},"id":610,"priority":10},
|
|
612
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","resourceTypes":["script"],"urlFilter":"||asreasia.com/piwik^"},"id":611,"priority":10},
|
|
613
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","resourceTypes":["script"],"urlFilter":"||1abzar.ir/abzar/tools/porbazdid^"},"id":612,"priority":10},
|
|
614
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","resourceTypes":["script"],"urlFilter":"||1abzar.ir/abzar/tools/stat^"},"id":613,"priority":10},
|
|
615
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","resourceTypes":["script"],"urlFilter":"||1abzar.ir/abzar/tools/post-view^"},"id":614,"priority":10},
|
|
616
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","resourceTypes":["script"],"urlFilter":"||1abzaar.ir/abzar/tools/no-selects.js^"},"id":615,"priority":10},
|
|
617
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","resourceTypes":["script"],"urlFilter":"||1abzaar.ir/abzar/tools/no-rightclick.js^"},"id":616,"priority":10},
|
|
618
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","resourceTypes":["script"],"urlFilter":"||1abzar.ir/abzar/tools/behesht/?mod="},"id":617,"priority":10},
|
|
619
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","resourceTypes":["script"],"urlFilter":"||takskin.com/tools/online^"},"id":618,"priority":10},
|
|
620
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","resourceTypes":["script"],"urlFilter":"||takskin.com/tools/show-ip^"},"id":619,"priority":10},
|
|
621
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","resourceTypes":["script"],"urlFilter":"||takskin.com/abzar/norightclick/norightclick.js^"},"id":620,"priority":10},
|
|
622
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","resourceTypes":["script"],"urlFilter":"||tool.4tools.ir/tools/click-c/click-c.js^"},"id":621,"priority":10},
|
|
623
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","resourceTypes":["script"],"urlFilter":"||tool.4tools.ir/tools/click-l/click-l.js^"},"id":622,"priority":10},
|
|
624
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","resourceTypes":["script"],"urlFilter":"||toshare.io/dl/download.php^"},"id":623,"priority":10},
|
|
625
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","resourceTypes":["script"],"urlFilter":"||api.zin.co.com/assets/as/load.js^"},"id":624,"priority":10},
|
|
626
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||api.yeklinks.ir/api/landing/click^"},"id":625,"priority":10},
|
|
627
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||api.yeklinks.ir/api/domain/*/view^"},"id":626,"priority":10},
|
|
628
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||hamrahi.cloud/drive-endpoint.log^"},"id":627,"priority":10},
|
|
629
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","resourceTypes":["xmlhttprequest"],"urlFilter":"||hamrahi.cloud/video-timeline.log^"},"id":628,"priority":10},
|
|
630
|
+
{"action":{"type":"block"},"condition":{"domainType":"thirdParty","resourceTypes":["sub_frame"],"urlFilter":"||xxx.atlas-music.ir/tab.php^"},"id":629,"priority":10},
|
|
631
|
+
{"action":{"type":"allow"},"condition":{"urlFilter":"||sourceiran.com/wp-content/uploads/300-250.jpg"},"id":630,"priority":30},
|
|
632
|
+
{"action":{"type":"allow"},"condition":{"urlFilter":"||tamin.ir/content/ads/"},"id":631,"priority":30},
|
|
633
|
+
{"action":{"type":"allow"},"condition":{"domainType":"firstParty","urlFilter":"||ads.beytoote.com/live_chat"},"id":632,"priority":30},
|
|
634
|
+
{"action":{"type":"allow"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||asandl.com/ads/img/asandl-"},"id":633,"priority":30},
|
|
635
|
+
{"action":{"type":"allow"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||blogfa.com/static/ads/"},"id":634,"priority":30},
|
|
636
|
+
{"action":{"type":"allow"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||beytoote.com/ads/images_"},"id":635,"priority":30},
|
|
637
|
+
{"action":{"type":"allow"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||boyernews.com/wp-content/plugins/fadvertisement/images/be7c40ce-baea-954a-b842-c98f3423eb1d.jpg"},"id":636,"priority":30},
|
|
638
|
+
{"action":{"type":"allow"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||boyernews.com/wp-content/plugins/fadvertisement/images/e77fb7b0-c797-40c2-d105-545084ee2e57.jpg"},"id":637,"priority":30},
|
|
639
|
+
{"action":{"type":"allow"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||chetor.com/wp-content/uploads/2016/04/instagram-banner.chetor-media2.gif"},"id":638,"priority":30},
|
|
640
|
+
{"action":{"type":"allow"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||chetor.com/wp-content/uploads/2021/07/book-banner.1250.240.2.gif"},"id":639,"priority":30},
|
|
641
|
+
{"action":{"type":"allow"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||caffecinema.com/media/banners/telegram-"},"id":640,"priority":30},
|
|
642
|
+
{"action":{"type":"allow"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||faaltarin.com/advertise-files/thumbnail"},"id":641,"priority":30},
|
|
643
|
+
{"action":{"type":"allow"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||iwo.ir/ads.jpg"},"id":642,"priority":30},
|
|
644
|
+
{"action":{"type":"allow"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||iwo.ir/data/home/ads.gif"},"id":643,"priority":30},
|
|
645
|
+
{"action":{"type":"allow"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||dl.konkur.in/image/ads/g-logo.jpg^"},"id":644,"priority":30},
|
|
646
|
+
{"action":{"type":"allow"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||dl.konkur.in/image/ads/tlogo.png^"},"id":645,"priority":30},
|
|
647
|
+
{"action":{"type":"allow"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||dl.konkur.in/image/ads/gold.png^"},"id":646,"priority":30},
|
|
648
|
+
{"action":{"type":"allow"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||miniroid.com/img/ads/whatsapp-dl.jpg^"},"id":647,"priority":30},
|
|
649
|
+
{"action":{"type":"allow"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||miniroid.com/img/ads/instagram-dl.png^"},"id":648,"priority":30},
|
|
650
|
+
{"action":{"type":"allow"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||miniroid.com/img/ads/telegram-wdl.jpg^"},"id":649,"priority":30},
|
|
651
|
+
{"action":{"type":"allow"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||meghdadit.com/files/ad/"},"id":650,"priority":30},
|
|
652
|
+
{"action":{"type":"allow"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||mag.meghdadit.com/wp-content/uploads/2022/05/advertising-in-telegram"},"id":651,"priority":30},
|
|
653
|
+
{"action":{"type":"allow"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||niksalehi.com/wp-content/uploads/*/adv"},"id":652,"priority":30},
|
|
654
|
+
{"action":{"type":"allow"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||nex1music.ir/upload/ads/"},"id":653,"priority":30},
|
|
655
|
+
{"action":{"type":"allow"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||parsiblog.com/adv/imgs/"},"id":654,"priority":30},
|
|
656
|
+
{"action":{"type":"allow"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||persianv.com/wp-content/uploads/*/adv-"},"id":655,"priority":30},
|
|
657
|
+
{"action":{"type":"allow"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||sarzamindownload.com/images/ads_place.jpg"},"id":656,"priority":30},
|
|
658
|
+
{"action":{"type":"allow"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||1000site.ir/asset/images/images/adpage/"},"id":657,"priority":30},
|
|
659
|
+
{"action":{"type":"allow"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||1000site.ir/home/ads/asset/favicon.ico"},"id":658,"priority":30},
|
|
660
|
+
{"action":{"type":"allow"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||toranji.ir/wp-content/uploads/*/toranji-banner-ad-"},"id":659,"priority":30},
|
|
661
|
+
{"action":{"type":"allow"},"condition":{"domainType":"firstParty","resourceTypes":["image"],"urlFilter":"||webii.ir/upload/ads/"},"id":660,"priority":30},
|
|
662
|
+
{"action":{"type":"allow"},"condition":{"domainType":"firstParty","resourceTypes":["script"],"urlFilter":"||beytoote.com/ads/js/"},"id":661,"priority":30},
|
|
663
|
+
{"action":{"type":"allow"},"condition":{"domainType":"thirdParty","resourceTypes":["stylesheet"],"urlFilter":"||player.tavoos.net/tavoos-player.css"},"id":662,"priority":30},
|
|
664
|
+
{"action":{"type":"allow"},"condition":{"domainType":"thirdParty","resourceTypes":["stylesheet"],"urlFilter":"||tavoos.net/tavoos_player/jwplayer/tavoos-player.css"},"id":663,"priority":30},
|
|
665
|
+
{"action":{"type":"allow"},"condition":{"domainType":"thirdParty","resourceTypes":["image"],"urlFilter":"||player.tavoos.net/assets/"},"id":664,"priority":30},
|
|
666
|
+
{"action":{"type":"allow"},"condition":{"domainType":"thirdParty","resourceTypes":["image"],"urlFilter":"||tavoos.net/tavoos_player/jwplayer/assets/"},"id":665,"priority":30},
|
|
667
|
+
{"action":{"type":"allow"},"condition":{"domainType":"thirdParty","resourceTypes":["script"],"urlFilter":"||player.tavoos.net/jwplayer.js"},"id":666,"priority":30},
|
|
668
|
+
{"action":{"type":"allow"},"condition":{"domainType":"thirdParty","resourceTypes":["script"],"urlFilter":"||player.tavoos.net/jwplayer.core.controls.html5.js"},"id":667,"priority":30},
|
|
669
|
+
{"action":{"type":"allow"},"condition":{"domainType":"thirdParty","resourceTypes":["script"],"urlFilter":"||player.tavoos.net/jwplayer.core.controls.js"},"id":668,"priority":30},
|
|
670
|
+
{"action":{"type":"allow"},"condition":{"domainType":"thirdParty","resourceTypes":["script"],"urlFilter":"||player.tavoos.net/jwplayer.stats.js^"},"id":669,"priority":30},
|
|
671
|
+
{"action":{"type":"allow"},"condition":{"domainType":"thirdParty","resourceTypes":["script"],"urlFilter":"||player.tavoos.net/provider.hlsjs.js"},"id":670,"priority":30},
|
|
672
|
+
{"action":{"type":"allow"},"condition":{"domainType":"thirdParty","resourceTypes":["script"],"urlFilter":"||tavoos.net/tavoos_player/jwplayer/jwplayer.js"},"id":671,"priority":30},
|
|
673
|
+
{"action":{"type":"allow"},"condition":{"domainType":"thirdParty","resourceTypes":["script"],"urlFilter":"||tavoos.net/tavoos_player/jwplayer/jwplayer.core.controls.html5.js"},"id":672,"priority":30},
|
|
674
|
+
{"action":{"type":"allow"},"condition":{"domainType":"thirdParty","resourceTypes":["script"],"urlFilter":"||webgozar.ir/c.aspx?code=*&t=poll^"},"id":673,"priority":30},
|
|
675
|
+
{"action":{"type":"allow"},"condition":{"domainType":"thirdParty","resourceTypes":["sub_frame"],"urlFilter":"||tamasha.com/embed^"},"id":674,"priority":30},
|
|
676
|
+
{"action":{"type":"allow"},"condition":{"domainType":"thirdParty","resourceTypes":["sub_frame"],"urlFilter":"||webgozar.com/poll/vote.aspx?code="},"id":675,"priority":30},
|
|
677
|
+
{"action":{"type":"allow"},"condition":{"domainType":"thirdParty","resourceTypes":["font"],"urlFilter":"||player.tavoos.net/assets/fonts/"},"id":676,"priority":30}
|
|
637
678
|
]
|