@browserless.io/browserless 2.34.0-beta-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.
Files changed (312) hide show
  1. package/CHANGELOG.md +13 -1
  2. package/build/routes/chrome/http/content.post.body.json +18 -109
  3. package/build/routes/chrome/http/pdf.post.body.json +18 -109
  4. package/build/routes/chrome/http/scrape.post.body.json +18 -109
  5. package/build/routes/chrome/http/screenshot.post.body.json +18 -109
  6. package/build/routes/chromium/http/content.post.body.json +18 -109
  7. package/build/routes/chromium/http/pdf.post.body.json +18 -109
  8. package/build/routes/chromium/http/scrape.post.body.json +18 -109
  9. package/build/routes/chromium/http/screenshot.post.body.json +18 -109
  10. package/build/routes/edge/http/content.post.body.json +18 -109
  11. package/build/routes/edge/http/pdf.post.body.json +18 -109
  12. package/build/routes/edge/http/scrape.post.body.json +18 -109
  13. package/build/routes/edge/http/screenshot.post.body.json +18 -109
  14. package/build/shared/content.http.js +9 -2
  15. package/build/shared/pdf.http.js +9 -2
  16. package/build/shared/scrape.http.js +9 -2
  17. package/build/shared/screenshot.http.js +9 -2
  18. package/build/types.d.ts +7 -1
  19. package/build/utils.d.ts +1 -0
  20. package/build/utils.js +3 -2
  21. package/extensions/ublocklite/_locales/ru/messages.json +1 -1
  22. package/extensions/ublocklite/css/dashboard.css +9 -4
  23. package/extensions/ublocklite/css/settings.css +17 -13
  24. package/extensions/ublocklite/dashboard.html +16 -12
  25. package/extensions/ublocklite/js/background.js +46 -14
  26. package/extensions/ublocklite/js/config.js +2 -1
  27. package/extensions/ublocklite/js/dashboard.js +9 -5
  28. package/extensions/ublocklite/js/debug.js +62 -3
  29. package/extensions/ublocklite/js/ext.js +6 -0
  30. package/extensions/ublocklite/js/fetch.js +3 -1
  31. package/extensions/ublocklite/js/filter-lists.js +16 -7
  32. package/extensions/ublocklite/js/filter-manager.js +26 -8
  33. package/extensions/ublocklite/js/jsonpath.js +65 -26
  34. package/extensions/ublocklite/js/mode-manager.js +5 -1
  35. package/extensions/ublocklite/js/popup.js +1 -1
  36. package/extensions/ublocklite/js/report.js +4 -2
  37. package/extensions/ublocklite/js/ruleset-manager.js +38 -13
  38. package/extensions/ublocklite/js/scripting/css-generic.js +0 -1
  39. package/extensions/ublocklite/js/scripting-manager.js +4 -10
  40. package/extensions/ublocklite/js/settings.js +3 -5
  41. package/extensions/ublocklite/js/static-filtering-parser.js +1 -1
  42. package/extensions/ublocklite/js/tool-overlay-ui.js +19 -23
  43. package/extensions/ublocklite/js/troubleshooting.js +11 -19
  44. package/extensions/ublocklite/js/ubo-parser.js +1 -1
  45. package/extensions/ublocklite/manifest.json +6 -1
  46. package/extensions/ublocklite/rulesets/generic-details.json +18 -2
  47. package/extensions/ublocklite/rulesets/main/adguard-mobile.json +3 -1
  48. package/extensions/ublocklite/rulesets/main/annoyances-cookies.json +11 -8
  49. package/extensions/ublocklite/rulesets/main/annoyances-notifications.json +276 -0
  50. package/extensions/ublocklite/rulesets/main/annoyances-widgets.json +2 -1
  51. package/extensions/ublocklite/rulesets/main/bgr-0.json +54 -68
  52. package/extensions/ublocklite/rulesets/main/block-lan.json +1 -1
  53. package/extensions/ublocklite/rulesets/main/chn-0.json +17 -11
  54. package/extensions/ublocklite/rulesets/main/deu-0.json +1 -1
  55. package/extensions/ublocklite/rulesets/main/dpollock-0.json +3 -0
  56. package/extensions/ublocklite/rulesets/main/easylist.json +18 -16
  57. package/extensions/ublocklite/rulesets/main/easyprivacy.json +27 -3
  58. package/extensions/ublocklite/rulesets/main/fra-0.json +13 -11
  59. package/extensions/ublocklite/rulesets/main/hun-0.json +5 -3
  60. package/extensions/ublocklite/rulesets/main/idn-0.json +6 -1
  61. package/extensions/ublocklite/rulesets/main/ind-0.json +5 -3
  62. package/extensions/ublocklite/rulesets/main/irn-0.json +635 -3
  63. package/extensions/ublocklite/rulesets/main/jpn-1.json +18 -10
  64. package/extensions/ublocklite/rulesets/main/kor-1.json +1 -1
  65. package/extensions/ublocklite/rulesets/main/nld-0.json +1 -1
  66. package/extensions/ublocklite/rulesets/main/nor-0.json +23 -3
  67. package/extensions/ublocklite/rulesets/main/pgl.json +7 -3
  68. package/extensions/ublocklite/rulesets/main/pol-0.json +2 -1
  69. package/extensions/ublocklite/rulesets/main/rus-0.json +15 -8
  70. package/extensions/ublocklite/rulesets/main/rus-1.json +4 -2
  71. package/extensions/ublocklite/rulesets/main/spa-1.json +6 -1
  72. package/extensions/ublocklite/rulesets/main/stevenblack-hosts.json +2534 -1986
  73. package/extensions/ublocklite/rulesets/main/swe-1.json +15 -13
  74. package/extensions/ublocklite/rulesets/main/tur-0.json +21 -9
  75. package/extensions/ublocklite/rulesets/main/ublock-badware.json +26 -26
  76. package/extensions/ublocklite/rulesets/main/ublock-filters.json +48 -36
  77. package/extensions/ublocklite/rulesets/main/urlhaus-full.json +139 -235
  78. package/extensions/ublocklite/rulesets/main/vie-1.json +14 -16
  79. package/extensions/ublocklite/rulesets/modify-headers/chn-0.json +1 -2
  80. package/extensions/ublocklite/rulesets/modify-headers/fra-0.json +1 -0
  81. package/extensions/ublocklite/rulesets/modify-headers/irn-0.json +45 -0
  82. package/extensions/ublocklite/rulesets/modify-headers/ublock-filters.json +2 -2
  83. package/extensions/ublocklite/rulesets/redirect/annoyances-overlays.json +0 -1
  84. package/extensions/ublocklite/rulesets/redirect/easyprivacy.json +19 -0
  85. package/extensions/ublocklite/rulesets/redirect/irn-0.json +73 -0
  86. package/extensions/ublocklite/rulesets/redirect/kor-1.json +1 -1
  87. package/extensions/ublocklite/rulesets/redirect/tur-0.json +2 -1
  88. package/extensions/ublocklite/rulesets/redirect/ublock-badware.json +18 -0
  89. package/extensions/ublocklite/rulesets/redirect/ublock-filters.json +5 -7
  90. package/extensions/ublocklite/rulesets/redirect/vie-1.json +2 -2
  91. package/extensions/ublocklite/rulesets/regex/irn-0.json +22 -0
  92. package/extensions/ublocklite/rulesets/regex/tur-0.json +2 -1
  93. package/extensions/ublocklite/rulesets/regex/ublock-badware.json +2 -4
  94. package/extensions/ublocklite/rulesets/regex/ublock-filters.json +9 -7
  95. package/extensions/ublocklite/rulesets/regex/ukr-0.json +1 -3
  96. package/extensions/ublocklite/rulesets/removeparam/adguard-spyware-url.json +6 -2
  97. package/extensions/ublocklite/rulesets/removeparam/irn-0.json +16 -27
  98. package/extensions/ublocklite/rulesets/removeparam/rus-1.json +2 -1
  99. package/extensions/ublocklite/rulesets/removeparam/ublock-filters.json +5 -3
  100. package/extensions/ublocklite/rulesets/ruleset-details.json +238 -207
  101. package/extensions/ublocklite/rulesets/scripting/generic/annoyances-cookies.js +3 -3
  102. package/extensions/ublocklite/rulesets/scripting/generic/annoyances-notifications.js +87 -0
  103. package/extensions/ublocklite/rulesets/scripting/generic/bgr-0.js +3 -3
  104. package/extensions/ublocklite/rulesets/scripting/generic/chn-0.js +1 -1
  105. package/extensions/ublocklite/rulesets/scripting/generic/easylist.js +2 -2
  106. package/extensions/ublocklite/rulesets/scripting/generic/est-0.js +1 -1
  107. package/extensions/ublocklite/rulesets/scripting/generic/idn-0.js +1 -1
  108. package/extensions/ublocklite/rulesets/scripting/generic/irn-0.js +3 -3
  109. package/extensions/ublocklite/rulesets/scripting/generic/jpn-1.js +3 -3
  110. package/extensions/ublocklite/rulesets/scripting/generic/nor-0.js +1 -1
  111. package/extensions/ublocklite/rulesets/scripting/generic/pol-0.js +1 -1
  112. package/extensions/ublocklite/rulesets/scripting/generic/rus-0.js +1 -1
  113. package/extensions/ublocklite/rulesets/scripting/generic/tur-0.js +1 -1
  114. package/extensions/ublocklite/rulesets/scripting/generic/ublock-filters.js +3 -3
  115. package/extensions/ublocklite/rulesets/scripting/generic/ukr-0.js +1 -1
  116. package/extensions/ublocklite/rulesets/scripting/generic/vie-1.js +1 -1
  117. package/extensions/ublocklite/rulesets/scripting/generichigh/annoyances-notifications.css +36 -0
  118. package/extensions/ublocklite/rulesets/scripting/generichigh/chn-0.css +12 -0
  119. package/extensions/ublocklite/rulesets/scripting/generichigh/est-0.css +1 -0
  120. package/extensions/ublocklite/rulesets/scripting/generichigh/idn-0.css +8 -0
  121. package/extensions/ublocklite/rulesets/scripting/generichigh/irn-0.css +27 -0
  122. package/extensions/ublocklite/rulesets/scripting/generichigh/nor-0.css +17 -0
  123. package/extensions/ublocklite/rulesets/scripting/generichigh/pol-0.css +8 -0
  124. package/extensions/ublocklite/rulesets/scripting/generichigh/rou-1.css +1 -0
  125. package/extensions/ublocklite/rulesets/scripting/generichigh/rus-0.css +105 -0
  126. package/extensions/ublocklite/rulesets/scripting/generichigh/rus-1.css +3 -0
  127. package/extensions/ublocklite/rulesets/scripting/generichigh/swe-1.css +1 -0
  128. package/extensions/ublocklite/rulesets/scripting/generichigh/ublock-filters.css +8 -2
  129. package/extensions/ublocklite/rulesets/scripting/generichigh/vie-1.css +1 -0
  130. package/extensions/ublocklite/rulesets/scripting/procedural/adguard-mobile.js +3 -3
  131. package/extensions/ublocklite/rulesets/scripting/procedural/annoyances-cookies.js +3 -3
  132. package/extensions/ublocklite/rulesets/scripting/procedural/annoyances-notifications.js +42 -0
  133. package/extensions/ublocklite/rulesets/scripting/procedural/annoyances-others.js +3 -3
  134. package/extensions/ublocklite/rulesets/scripting/procedural/annoyances-overlays.js +2 -2
  135. package/extensions/ublocklite/rulesets/scripting/procedural/chn-0.js +2 -2
  136. package/extensions/ublocklite/rulesets/scripting/procedural/easylist.js +3 -3
  137. package/extensions/ublocklite/rulesets/scripting/procedural/ind-0.js +1 -1
  138. package/extensions/ublocklite/rulesets/scripting/procedural/irn-0.js +3 -3
  139. package/extensions/ublocklite/rulesets/scripting/procedural/ita-0.js +3 -3
  140. package/extensions/ublocklite/rulesets/scripting/procedural/jpn-1.js +3 -3
  141. package/extensions/ublocklite/rulesets/scripting/procedural/kor-1.js +1 -1
  142. package/extensions/ublocklite/rulesets/scripting/procedural/rou-1.js +3 -3
  143. package/extensions/ublocklite/rulesets/scripting/procedural/rus-0.js +3 -3
  144. package/extensions/ublocklite/rulesets/scripting/procedural/rus-1.js +1 -1
  145. package/extensions/ublocklite/rulesets/scripting/procedural/spa-1.js +3 -3
  146. package/extensions/ublocklite/rulesets/scripting/procedural/swe-1.js +3 -3
  147. package/extensions/ublocklite/rulesets/scripting/procedural/tur-0.js +3 -3
  148. package/extensions/ublocklite/rulesets/scripting/procedural/ublock-filters.js +3 -3
  149. package/extensions/ublocklite/rulesets/scripting/scriptlet/adguard-mobile.abort-current-script.js +2 -2
  150. package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-cookies.set-constant.js +2 -2
  151. package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-cookies.set-cookie.js +2 -2
  152. package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-cookies.set-local-storage-item.js +2 -2
  153. package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-cookies.set-session-storage-item.js +2 -2
  154. package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-cookies.trusted-click-element.js +2 -2
  155. package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-cookies.trusted-set-cookie.js +2 -2
  156. package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-notifications.abort-current-script.js +452 -0
  157. package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-notifications.abort-on-property-write.js +347 -0
  158. package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-notifications.addEventListener-defuser.js +498 -0
  159. package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-notifications.remove-attr.js +405 -0
  160. package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-notifications.remove-class.js +396 -0
  161. package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-notifications.set-constant.js +541 -0
  162. package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-notifications.set-cookie.js +442 -0
  163. package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-notifications.set-local-storage-item.js +399 -0
  164. package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-notifications.set-session-storage-item.js +399 -0
  165. package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-overlays.abort-current-script.js +1 -1
  166. package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-overlays.abort-on-property-read.js +1 -1
  167. package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-overlays.prevent-setTimeout.js +2 -2
  168. package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-overlays.remove-node-text.js +2 -2
  169. package/extensions/ublocklite/rulesets/scripting/scriptlet/annoyances-overlays.set-constant.js +1 -1
  170. package/extensions/ublocklite/rulesets/scripting/scriptlet/chn-0.addEventListener-defuser.js +1 -1
  171. package/extensions/ublocklite/rulesets/scripting/scriptlet/chn-0.json-prune.js +1 -1
  172. package/extensions/ublocklite/rulesets/scripting/scriptlet/chn-0.prevent-setTimeout.js +2 -2
  173. package/extensions/ublocklite/rulesets/scripting/scriptlet/chn-0.set-constant.js +2 -2
  174. package/extensions/ublocklite/rulesets/scripting/scriptlet/easyprivacy.set-constant.js +1 -1
  175. package/extensions/ublocklite/rulesets/scripting/scriptlet/idn-0.abort-on-property-read.js +2 -2
  176. package/extensions/ublocklite/rulesets/scripting/scriptlet/irn-0.abort-current-script.js +452 -0
  177. package/extensions/ublocklite/rulesets/scripting/scriptlet/irn-0.abort-on-property-read.js +369 -0
  178. package/extensions/ublocklite/rulesets/scripting/scriptlet/irn-0.abort-on-property-write.js +347 -0
  179. package/extensions/ublocklite/rulesets/scripting/scriptlet/irn-0.abort-on-stack-trace.js +421 -0
  180. package/extensions/ublocklite/rulesets/scripting/scriptlet/irn-0.addEventListener-defuser.js +498 -0
  181. package/extensions/ublocklite/rulesets/scripting/scriptlet/irn-0.adjust-setInterval.js +332 -0
  182. package/extensions/ublocklite/rulesets/scripting/scriptlet/irn-0.adjust-setTimeout.js +332 -0
  183. package/extensions/ublocklite/rulesets/scripting/scriptlet/irn-0.href-sanitizer.js +541 -0
  184. package/extensions/ublocklite/rulesets/scripting/scriptlet/irn-0.json-prune.js +506 -0
  185. package/extensions/ublocklite/rulesets/scripting/scriptlet/irn-0.prevent-fetch.js +553 -0
  186. package/extensions/ublocklite/rulesets/scripting/scriptlet/irn-0.prevent-setTimeout.js +443 -0
  187. package/extensions/ublocklite/rulesets/scripting/scriptlet/irn-0.prevent-window-open.js +471 -0
  188. package/extensions/ublocklite/rulesets/scripting/scriptlet/irn-0.prevent-xhr.js +584 -0
  189. package/extensions/ublocklite/rulesets/scripting/scriptlet/irn-0.remove-attr.js +405 -0
  190. package/extensions/ublocklite/rulesets/scripting/scriptlet/irn-0.remove-cookie.js +376 -0
  191. package/extensions/ublocklite/rulesets/scripting/scriptlet/{ublock-experimental.trusted-replace-node-text.js → irn-0.remove-node-text.js} +8 -9
  192. package/extensions/ublocklite/rulesets/scripting/scriptlet/irn-0.set-attr.js +425 -0
  193. package/extensions/ublocklite/rulesets/scripting/scriptlet/irn-0.set-constant.js +541 -0
  194. package/extensions/ublocklite/rulesets/scripting/scriptlet/irn-0.set-local-storage-item.js +2 -2
  195. package/extensions/ublocklite/rulesets/scripting/scriptlet/irn-0.set-session-storage-item.js +2 -2
  196. package/extensions/ublocklite/rulesets/scripting/scriptlet/jpn-1.abort-on-property-write.js +2 -2
  197. package/extensions/ublocklite/rulesets/scripting/scriptlet/jpn-1.href-sanitizer.js +2 -2
  198. package/extensions/ublocklite/rulesets/scripting/scriptlet/kor-1.spoof-css.js +2 -2
  199. package/extensions/ublocklite/rulesets/scripting/scriptlet/rus-0.abort-on-property-read.js +1 -1
  200. package/extensions/ublocklite/rulesets/scripting/scriptlet/rus-0.href-sanitizer.js +2 -2
  201. package/extensions/ublocklite/rulesets/scripting/scriptlet/rus-0.set-constant.js +3 -3
  202. package/extensions/ublocklite/rulesets/scripting/scriptlet/rus-0.set-cookie.js +2 -2
  203. package/extensions/ublocklite/rulesets/scripting/scriptlet/rus-1.set-constant.js +3 -3
  204. package/extensions/ublocklite/rulesets/scripting/scriptlet/spa-1.addEventListener-defuser.js +3 -3
  205. package/extensions/ublocklite/rulesets/scripting/scriptlet/spa-1.noeval-if.js +3 -3
  206. package/extensions/ublocklite/rulesets/scripting/scriptlet/spa-1.prevent-fetch.js +2 -2
  207. package/extensions/ublocklite/rulesets/scripting/scriptlet/spa-1.remove-attr.js +1 -1
  208. package/extensions/ublocklite/rulesets/scripting/scriptlet/swe-1.prevent-xhr.js +1 -1
  209. package/extensions/ublocklite/rulesets/scripting/scriptlet/tur-0.adjust-setInterval.js +2 -2
  210. package/extensions/ublocklite/rulesets/scripting/scriptlet/tur-0.adjust-setTimeout.js +1 -1
  211. package/extensions/ublocklite/rulesets/scripting/scriptlet/tur-0.prevent-window-open.js +1 -1
  212. package/extensions/ublocklite/rulesets/scripting/scriptlet/tur-0.set-constant.js +2 -2
  213. package/extensions/ublocklite/rulesets/scripting/scriptlet/tur-0.set-local-storage-item.js +3 -3
  214. package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.abort-current-script.js +3 -3
  215. package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.abort-on-property-read.js +2 -2
  216. package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.abort-on-property-write.js +2 -2
  217. package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.abort-on-stack-trace.js +2 -2
  218. package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.addEventListener-defuser.js +2 -2
  219. package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.adjust-setInterval.js +2 -2
  220. package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.adjust-setTimeout.js +3 -3
  221. package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.json-edit.js +69 -29
  222. package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.json-prune-fetch-response.js +2 -2
  223. package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.jsonl-edit-xhr-response.js +68 -28
  224. package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.noeval-if.js +1 -1
  225. package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.prevent-fetch.js +2 -2
  226. package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.prevent-setInterval.js +3 -3
  227. package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.prevent-setTimeout.js +2 -2
  228. package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.prevent-window-open.js +2 -2
  229. package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.prevent-xhr.js +3 -3
  230. package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.remove-node-text.js +2 -2
  231. package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.set-constant.js +3 -3
  232. package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.set-cookie.js +2 -2
  233. package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.trusted-create-html.js +2 -2
  234. package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.trusted-json-edit-fetch-response.js +68 -28
  235. package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.trusted-replace-argument.js +2 -2
  236. package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.trusted-replace-node-text.js +3 -3
  237. package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.trusted-replace-outbound-text.js +2 -2
  238. package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.trusted-set-constant.js +1 -1
  239. package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.trusted-set-local-storage-item.js +1 -1
  240. package/extensions/ublocklite/rulesets/scripting/scriptlet/ubol-tests.jsonl-edit-fetch-response.js +68 -28
  241. package/extensions/ublocklite/rulesets/scripting/scriptlet/ubol-tests.jsonl-edit-xhr-response.js +68 -28
  242. package/extensions/ublocklite/rulesets/scripting/scriptlet/vie-1.abort-current-script.js +1 -1
  243. package/extensions/ublocklite/rulesets/scripting/scriptlet/vie-1.abort-on-property-read.js +2 -2
  244. package/extensions/ublocklite/rulesets/scripting/specific/adguard-mobile.js +3 -3
  245. package/extensions/ublocklite/rulesets/scripting/specific/annoyances-cookies.js +3 -3
  246. package/extensions/ublocklite/rulesets/scripting/specific/annoyances-notifications.js +42 -0
  247. package/extensions/ublocklite/rulesets/scripting/specific/annoyances-others.js +3 -3
  248. package/extensions/ublocklite/rulesets/scripting/specific/annoyances-overlays.js +3 -3
  249. package/extensions/ublocklite/rulesets/scripting/specific/annoyances-social.js +3 -3
  250. package/extensions/ublocklite/rulesets/scripting/specific/bgr-0.js +3 -3
  251. package/extensions/ublocklite/rulesets/scripting/specific/chn-0.js +3 -3
  252. package/extensions/ublocklite/rulesets/scripting/specific/deu-0.js +3 -3
  253. package/extensions/ublocklite/rulesets/scripting/specific/easylist.js +3 -3
  254. package/extensions/ublocklite/rulesets/scripting/specific/fin-0.js +3 -3
  255. package/extensions/ublocklite/rulesets/scripting/specific/fra-0.js +3 -3
  256. package/extensions/ublocklite/rulesets/scripting/specific/hun-0.js +3 -3
  257. package/extensions/ublocklite/rulesets/scripting/specific/idn-0.js +3 -3
  258. package/extensions/ublocklite/rulesets/scripting/specific/ind-0.js +3 -3
  259. package/extensions/ublocklite/rulesets/scripting/specific/irn-0.js +3 -3
  260. package/extensions/ublocklite/rulesets/scripting/specific/isr-0.js +3 -3
  261. package/extensions/ublocklite/rulesets/scripting/specific/ita-0.js +3 -3
  262. package/extensions/ublocklite/rulesets/scripting/specific/jpn-1.js +3 -3
  263. package/extensions/ublocklite/rulesets/scripting/specific/kor-1.js +3 -3
  264. package/extensions/ublocklite/rulesets/scripting/specific/nld-0.js +3 -3
  265. package/extensions/ublocklite/rulesets/scripting/specific/pol-0.js +3 -3
  266. package/extensions/ublocklite/rulesets/scripting/specific/rou-1.js +3 -3
  267. package/extensions/ublocklite/rulesets/scripting/specific/rus-0.js +3 -3
  268. package/extensions/ublocklite/rulesets/scripting/specific/rus-1.js +3 -3
  269. package/extensions/ublocklite/rulesets/scripting/specific/spa-1.js +3 -3
  270. package/extensions/ublocklite/rulesets/scripting/specific/swe-1.js +3 -3
  271. package/extensions/ublocklite/rulesets/scripting/specific/tur-0.js +3 -3
  272. package/extensions/ublocklite/rulesets/scripting/specific/ublock-filters.js +3 -3
  273. package/extensions/ublocklite/rulesets/scripting/specific/vie-1.js +3 -3
  274. package/extensions/ublocklite/rulesets/scriptlet-details.json +469 -114
  275. package/extensions/ublocklite/rulesets/strictblock/adguard-mobile.json +7 -0
  276. package/extensions/ublocklite/rulesets/strictblock/annoyances-notifications.json +41 -0
  277. package/extensions/ublocklite/rulesets/strictblock/bgr-0.json +1 -2
  278. package/extensions/ublocklite/rulesets/strictblock/chn-0.json +43 -0
  279. package/extensions/ublocklite/rulesets/strictblock/dpollock-0.json +3 -0
  280. package/extensions/ublocklite/rulesets/strictblock/easylist.json +1 -1
  281. package/extensions/ublocklite/rulesets/strictblock/easyprivacy.json +22 -1
  282. package/extensions/ublocklite/rulesets/strictblock/fra-0.json +270 -16
  283. package/extensions/ublocklite/rulesets/strictblock/hun-0.json +1 -0
  284. package/extensions/ublocklite/rulesets/strictblock/irn-0.json +249 -2
  285. package/extensions/ublocklite/rulesets/strictblock/jpn-1.json +171 -168
  286. package/extensions/ublocklite/rulesets/strictblock/kor-1.json +1 -0
  287. package/extensions/ublocklite/rulesets/strictblock/nor-0.json +6 -4
  288. package/extensions/ublocklite/rulesets/strictblock/pgl.json +7 -3
  289. package/extensions/ublocklite/rulesets/strictblock/rus-1.json +1 -0
  290. package/extensions/ublocklite/rulesets/strictblock/spa-1.json +1 -0
  291. package/extensions/ublocklite/rulesets/strictblock/stevenblack-hosts.json +2534 -1986
  292. package/extensions/ublocklite/rulesets/strictblock/swe-1.json +3 -0
  293. package/extensions/ublocklite/rulesets/strictblock/ublock-badware.json +341 -339
  294. package/extensions/ublocklite/rulesets/strictblock/ublock-filters.json +1 -1
  295. package/extensions/ublocklite/rulesets/strictblock/urlhaus-full.json +139 -235
  296. package/extensions/ublocklite/rulesets/urlskip/ublock-filters.json +37 -12
  297. package/extensions/ublocklite/ublock.zip +0 -0
  298. package/package.json +5 -5
  299. package/src/shared/content.http.ts +9 -1
  300. package/src/shared/pdf.http.ts +9 -1
  301. package/src/shared/scrape.http.ts +9 -1
  302. package/src/shared/screenshot.http.ts +9 -1
  303. package/src/types.ts +7 -1
  304. package/src/utils.ts +4 -2
  305. package/static/docs/swagger.json +218 -122
  306. package/static/docs/swagger.min.json +217 -121
  307. package/static/function/client.js +1 -1
  308. package/static/function/index.html +1 -1
  309. package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-experimental.trusted-json-edit-xhr-request.js +0 -795
  310. package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.overlay-buster.js +0 -165
  311. package/extensions/ublocklite/rulesets/scripting/scriptlet/ublock-filters.trusted-json-edit-fetch-request.js +0 -884
  312. package/extensions/ublocklite/rulesets/scripting/specific/easyprivacy.js +0 -42
@@ -27,9 +27,9 @@
27
27
 
28
28
  /******************************************************************************/
29
29
 
30
- const argsList = ["[]","[{\"selector\":\".ad-dfp\",\"action\":[\"style\",\"min-height: 0.1485mm !important; height: 0.1485mm !important;\"],\"cssable\":true},{\"selector\":\".header-center\",\"action\":[\"style\",\"margin-top:-5000px !important;\"],\"cssable\":true},{\"selector\":\".sidebar\",\"action\":[\"style\",\"width: 1.745px !important; padding: 1px !important\"],\"cssable\":true}]","[{\"selector\":\"style\",\"action\":[\"remove\",\"\"],\"tasks\":[[\"has-text\",\"veevad-\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"/popunder|\\\\(\\\\)\\\\{try\\\\{localStorage\\\\[/\"]]}]","[{\"selector\":\"html[lang=\\\"ko\\\"] [id^=\\\"img_\\\"][style]:has(iframe[frameborder=\\\"0\\\"][style])\",\"action\":[\"style\",\"clip-path: circle(0) !important;\"],\"cssable\":true}]","[{\"selector\":\"html[lang][dir=\\\"ltr\\\"] [id^=\\\"img_\\\"][style]:has(iframe[frameborder=\\\"0\\\"][style])\",\"action\":[\"style\",\"clip-path: circle(0) !important;\"],\"cssable\":true}]","[{\"selector\":\"aside[class^=\\\"css-\\\"]\",\"tasks\":[[\"has\",{\"selector\":\"> p\",\"tasks\":[[\"has-text\",\"Advertisement\"],[\"spath\",\" + ins.adsbygoogle\"]]}]]},{\"selector\":\"html[data-theme][lang] [id^=\\\"img_\\\"][style]:has(iframe[frameborder=\\\"0\\\"][style])\",\"action\":[\"style\",\"clip-path: circle(0) !important;\"],\"cssable\":true}]","[{\"selector\":\"html\",\"action\":[\"style\",\"filter: opacity(0) !important; pointer-events: none !important;\"],\"tasks\":[[\"not\",{\"selector\":\"\",\"tasks\":[[\"has\",{\"selector\":\"> head > style:only-child\",\"tasks\":[[\"has-text\",\"width:399px;height:411px\"]]}]]}]]}]","[{\"selector\":\"\",\"tasks\":[[\"matches-path\",\"~/shop\"],[\"spath\",\" a[href*=\\\"/aclick?\\\"]:not(.vsp_ads)\"]]},{\"selector\":\".b_ad\",\"action\":[\"style\",\"position: absolute !important; top: -9999px !important;\"],\"cssable\":true},{\"selector\":\".b_adLastChild\",\"action\":[\"style\",\"position: absolute !important; top: -9999px !important;\"],\"cssable\":true},{\"selector\":\".b_restorableLink\",\"action\":[\"remove\",\"\"]},{\"selector\":\".pa_sb\",\"action\":[\"style\",\"position: absolute !important; top: -9999px !important;\"],\"cssable\":true},{\"selector\":\"ol#b_results > li.b_algo\",\"tasks\":[[\"has\",{\"selector\":\".b_lineclamp3\",\"tasks\":[[\"matches-css-before\",{\"name\":\"content\",\"pseudo\":\"before\",\"value\":\"^url\\\\(\\\\Sdata:image\\\\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD.AAAA\"}]]}]]}]","[{\"selector\":\"#o_carrepub\",\"action\":[\"style\",\"height: 1px; margin: 0; min-height: auto; visibility: hidden; width: 1px;\"],\"cssable\":true}]","[{\"selector\":\"html\",\"action\":[\"style\",\"overflow: auto !important;\"],\"cssable\":true}]","[{\"selector\":\".Page-header-leaderboardAd\",\"action\":[\"remove\",\"\"]},{\"selector\":\"html[data-header-hasleaderboard]\",\"action\":[\"remove-attr\",\"data-header-hasleaderboard\"]}]","[{\"selector\":\".cb-comments__create-form\",\"action\":[\"style\",\"margin-top: 30px !important;\"],\"cssable\":true},{\"selector\":\".cb-post-block-images-swiper .cb-post-block__comments .collapseable-comments__collapse\",\"action\":[\"style\",\"margin-bottom: 0px !important;\"],\"cssable\":true},{\"selector\":\".cb-post-block-images-swiper .cb-post-block__comments\",\"action\":[\"style\",\"margin-bottom: 0 !important; top: -97px !important;\"],\"cssable\":true},{\"selector\":\".cb-post-block-images-swiper .collapseable-comments__collapseable\",\"action\":[\"style\",\"margin-bottom: -80px !important;\"],\"cssable\":true},{\"selector\":\".cb-post-block__comments\",\"action\":[\"style\",\"padding-bottom: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\"li.s-item\",\"tasks\":[[\"has\",{\"selector\":\"span\",\"tasks\":[[\"has-text\",\"SPONSORED\"]]}]]}]","[{\"selector\":\".amp-animate\",\"action\":[\"remove\",\"\"]},{\"selector\":\".publi_luto_horizontal\",\"action\":[\"style\",\"max-height: 1px !important;\"],\"cssable\":true},{\"selector\":\"div[id^=\\\"google_ads_iframe_\\\"]\",\"action\":[\"style\",\"max-height: 1px !important;\"],\"cssable\":true},{\"selector\":\"iframe[id^=\\\"google_ads_iframe\\\"]\",\"action\":[\"style\",\"max-height: 1px !important;\"],\"cssable\":true}]","[{\"selector\":\"ul[class^=\\\"cluster__stories\\\"] > li[class^=\\\"cluster__cluster-basic\\\"][class*=\\\"cluster__column-left\\\"]\",\"action\":[\"style\",\"margin-left: 17.0418006431vw !important;\"],\"cssable\":true},{\"selector\":\"ul[class^=\\\"cluster__stories\\\"] > li[class^=\\\"cluster__cluster-hub\\\"][class*=\\\"cluster__column-middle\\\"][class*=\\\"cluster__break-after\\\"]\",\"action\":[\"style\",\"margin-bottom: 100px !important;\"],\"cssable\":true}]","[{\"selector\":\".subscribe-article .subscribe-truncate\",\"action\":[\"style\",\"max-height:unset!important;order:unset!important;\"],\"cssable\":true},{\"selector\":\".subscribe-article .subscribe-truncate::before\",\"action\":[\"style\",\"background:none!important;\"],\"cssable\":true},{\"selector\":\".subscribe-article .subscriber-hider\",\"action\":[\"style\",\"display:block!important\"],\"cssable\":true}]","[{\"selector\":\".subscribe-truncate\",\"action\":[\"style\",\"order:0!important;max-height:inherit!important\"],\"cssable\":true},{\"selector\":\".subscribe-truncate::before\",\"action\":[\"style\",\"background:none!important\"],\"cssable\":true},{\"selector\":\".subscriber-hider\",\"action\":[\"style\",\"display:inherit!important\"],\"cssable\":true}]","[{\"selector\":\"a[target][href^=\\\"https://x.chip.de/\\\"]\",\"tasks\":[[\"upward\",\"div[id]\"]]}]","[{\"selector\":\"#header\",\"action\":[\"style\",\"position: inherit !important;\"],\"cssable\":true}]","[{\"selector\":\".desktop-wrapper.has-header-banner.mt-32\",\"action\":[\"style\",\"margin-top: 8rem !important;\"],\"cssable\":true},{\"selector\":\".single-story > header\",\"action\":[\"style\",\"margin-top: 40px !important\"],\"cssable\":true}]","[{\"selector\":\"#ymm-sub-nav\",\"action\":[\"style\",\"top:0px !important\"],\"cssable\":true}]","[{\"selector\":\".lite-page__header-navigation--with-ad\",\"action\":[\"style\",\"top: 0 !important;\"],\"cssable\":true},{\"selector\":\".research-resources-summary__inner.is-sticky\",\"action\":[\"style\",\"top: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\"body\",\"action\":[\"style\",\"background:none !important;\"],\"cssable\":true}]","[{\"selector\":\"body\",\"action\":[\"style\",\"background-image:none !important\"],\"cssable\":true}]","[{\"selector\":\".branding\",\"tasks\":[[\"upward\",\"[target=\\\"_blank\\\"]\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"KeenTracking\"]]}]","[{\"selector\":\".no-scroll\",\"action\":[\"style\",\"overflow:auto!important\"],\"cssable\":true}]","[{\"selector\":\".zc_top_mobil\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"body\",\"action\":[\"style\",\"overflow: auto !important;\"],\"cssable\":true}]","[{\"selector\":\".td-animation-stack-type0-1\",\"action\":[\"style\",\"opacity:1 !important\"],\"cssable\":true}]","[{\"selector\":\".mat-drawer-container\",\"action\":[\"style\",\"overflow-x: auto !important\"],\"cssable\":true}]","[{\"selector\":\"html > head > link[rel=\\\"canonical\\\"]:not([href*=\\\"/recipes/\\\"])\",\"tasks\":[[\"upward\",2],[\"spath\",\" script\"],[\"has-text\",\"googletagmanager\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"===\"],[\"has-text\",\"/[\\\\w\\\\W]{16000}/\"]]}]","[{\"selector\":\"html, body\",\"action\":[\"style\",\"overflow: auto !important\"],\"cssable\":true}]","[{\"selector\":\"._4xQrn\",\"action\":[\"style\",\"max-height:0px\"],\"cssable\":true}]","[{\"selector\":\"span\",\"tasks\":[[\"has-text\",\"ADVERTISEMENT\"]]}]","[{\"selector\":\"#gameEtTopRight.commonEt\",\"action\":[\"style\",\"height: 0 !important;\"],\"cssable\":true},{\"selector\":\"#gamelistCategories\",\"action\":[\"style\",\"margin-bottom: auto !important;\"],\"cssable\":true}]","[{\"selector\":\"body.body-load\",\"action\":[\"style\",\"overflow: auto !important;\"],\"cssable\":true}]","[{\"selector\":\"article[role=\\\"presentation\\\"] > div[style]\",\"tasks\":[[\"has\",{\"selector\":\"span\",\"tasks\":[[\"has-text\",\"/Anzeige|Gesponsert|Sponsored|Geborg|Sponzorováno|Sponsoreret|Χορηγούμενη|Publicidad|Sponsoroitu|Sponsorisé|Bersponsor|Sponsorizzato|広告|광고|Ditaja|Sponset|Gesponsord|Sponsorowane|Patrocinado|Реклама|Sponsrad|ได้รับการสนับสนุน|May Sponsor|Sponsorlu|赞助内容|贊助|প্রযোজিত|પ્રાયોજિત|स्पॉन्सर्ड|Sponzorirano|ಪ್ರಾಯೋಜಿತ|സ്‌പോൺസർ ചെയ്‌തത്|पुरस्‍कृत|प्रायोजित|ਪ੍ਰਾਯੋਜਿਤ|මුදල් ගෙවා ප්‍රචාරය කරන ලදි|Sponzorované|விளம்பரதாரர்கள்|స్పాన్సర్ చేసింది|Được tài trợ|Спонсорирано|Commandité|Sponsorizat|Спонзорисано/\"]]}]]},{\"selector\":\"div[style=\\\"max-height: inherit; max-width: inherit;\\\"]\",\"tasks\":[[\"has\",{\"selector\":\"span\",\"tasks\":[[\"has-text\",\"Paid partnership with \"]]}]]}]","[{\"selector\":\"div[id] > .dfp-ad-unit\",\"tasks\":[[\"upward\",1]]}]","[{\"selector\":\".body--onPlayer--ads\",\"action\":[\"remove-class\",\"body--onPlayer--ads\"]}]","[{\"selector\":\"html > body:not(.catalogsearch-result-index)\",\"tasks\":[[\"upward\",1],[\"spath\",\" > head > script\"],[\"has-text\",\"googletagmanager\"]]}]","[{\"selector\":\"body:not(:has(#remixd-audio-player)) > script\",\"tasks\":[[\"has-text\",\"googletagmanager\"]]}]","[{\"selector\":\"#ulCommentWidget[style*=\\\"display\\\"]\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"html:not(:has(video)) > head > script\",\"tasks\":[[\"has-text\",\"connatix.com\"]]}]","[{\"selector\":\"html > head > script\",\"tasks\":[[\"has-text\",\"connatix.id\"],[\"upward\",1],[\"spath\",\" > script\"],[\"has-text\",\"window.cnx\"]]}]","[{\"selector\":\"html > head > link[rel=\\\"canonical\\\"]:not([href*=\\\"/video/\\\"])\",\"tasks\":[[\"upward\",1],[\"spath\",\" > script[src*=\\\"connatix\\\"]\"]]}]","[{\"selector\":\".adthrive-video-player\",\"action\":[\"style\",\"padding-bottom: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\"body.noImages .content img\",\"action\":[\"style\",\"display: inline-block !important\"],\"cssable\":true}]","[{\"selector\":\".widget-topad\",\"action\":[\"style\",\"padding-bottom: 20px !important;\"],\"cssable\":true}]","[{\"selector\":\"html:not(:has([class^=\\\"Dailymotion__Wrapper\\\"])) > head > script\",\"tasks\":[[\"has-text\",\"gptScript\"]]}]","[{\"selector\":\"html > head > meta[property=\\\"og:url\\\"]:not([content*=\\\"/games/\\\"], [content*=\\\"/play/\\\"])\",\"tasks\":[[\"upward\",1],[\"spath\",\" > script\"],[\"has-text\",\"wgplayer\"]]}]","[{\"selector\":\"#index-games\",\"tasks\":[[\"upward\",\"html\"],[\"spath\",\" > head > script\"],[\"has-text\",\"wgplayer\"]]}]","[{\"selector\":\"body\",\"action\":[\"style\",\"opacity: 1 !important;\"],\"cssable\":true}]","[{\"selector\":\".col-md-6\",\"action\":[\"style\",\"height: 150px !important;\"],\"cssable\":true}]","[{\"selector\":\".st-btn > img\",\"action\":[\"style\",\"margin: auto !important; display: block !important;\"],\"cssable\":true},{\"selector\":\".st-btn:not(.st-first)\",\"action\":[\"style\",\"display: inline-block !important; min-width: 50px !important; width: 50px !important;\"],\"cssable\":true},{\"selector\":\".st-hidden\",\"action\":[\"remove-class\",\"st-hidden\"]}]","[{\"selector\":\".ad-banner\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\".nonAppView > div div[class]:not([id]) > div[id^=\\\"div-gpt-ad\\\"]\",\"tasks\":[[\"upward\",1]]},{\"selector\":\"[onclick] .btxt\",\"tasks\":[[\"has-text\",\"/Ad/\"],[\"xpath\",\"../../..\"]]},{\"selector\":\"[onclick] h5\",\"tasks\":[[\"has-text\",\"/Ad/\"],[\"xpath\",\"../../..\"]]},{\"selector\":\"[onclick] p\",\"tasks\":[[\"has-text\",\"/Ad/\"],[\"xpath\",\"../../..\"]]},{\"selector\":\"div\",\"tasks\":[[\"matches-css\",{\"name\":\"background-image\",\"value\":\"colombia_\"}],[\"xpath\",\"../..\"]]},{\"selector\":\"h2\",\"tasks\":[[\"has-text\",\"/Promoted/\"],[\"spath\",\" + div\"]]},{\"selector\":\"p\",\"tasks\":[[\"matches-css\",{\"name\":\"background-image\",\"value\":\"colombia-icon\"}],[\"xpath\",\"../..\"]]}]","[{\"selector\":\"link[rel=\\\"canonical\\\"]:not([href*=\\\"pageconfig=contactus\\\"])\",\"tasks\":[[\"upward\",\"html\"],[\"spath\",\" script.optanon-category-C0001\"]]}]","[{\"selector\":\"body[style*=\\\"display: none\\\"]\",\"action\":[\"remove-attr\",\"style\"]}]","[{\"selector\":\".base-asset-video\",\"action\":[\"remove-class\",\"base-asset-video\"]}]","[{\"selector\":\".subredditvars-r-ublockorigin [role=\\\"dialog\\\"] > div\",\"action\":[\"style\",\"width: auto !important\"],\"cssable\":true}]","[{\"selector\":\"community-highlight-card[subreddit-prefixed-name=\\\"r/uBlockOrigin\\\"][src]\",\"action\":[\"remove-attr\",\"src\"]}]","[{\"selector\":\"html:has(> head > :is(meta[name=\\\"subscriber_only\\\"][content=\\\"false\\\"], meta[property=\\\"og:url\\\"]:not([content*=\\\".html\\\"]))) script\",\"tasks\":[[\"has-text\",\"/googletagmanager|window\\\\.sophi/\"]]}]","[{\"selector\":\"[onclick$=\\\"return !ga.loaded;\\\"]\",\"action\":[\"remove-attr\",\"onclick\"]}]","[{\"selector\":\"#page-header > header\",\"action\":[\"style\",\"position: absolute !important;\"],\"cssable\":true},{\"selector\":\"section#home > #hero.pinned\",\"action\":[\"style\",\"position: absolute !important;\"],\"cssable\":true}]","[{\"selector\":\"#logoContainer\",\"action\":[\"style\",\"top: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\"gdwc-recommendations.is-hidden\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"[data-testid=\\\"connection-toast\\\"]\",\"action\":[\"style\",\"margin-top: 330px !important;\"],\"cssable\":true}]","[{\"selector\":\"#ad-container\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#comment-section\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#nn_bfa_wrapper + .container\",\"action\":[\"style\",\"margin-top: 50px !important;\"],\"cssable\":true},{\"selector\":\".section-advert-banner--top\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"html\",\"action\":[\"style\",\"visibility: visible !important;\"],\"cssable\":true}]","[{\"selector\":\"#fluid_video_wrapper_video-page-player\",\"action\":[\"remove-attr\",\"style\"]},{\"selector\":\"#video-page-player-blocker\",\"action\":[\"style\",\"pointer-events:none\"],\"cssable\":true}]","[{\"selector\":\"video#diziyou_html5_api\",\"action\":[\"style\",\"display: initial !important;\"],\"cssable\":true}]","[{\"selector\":\".ytlr-horizontal-list-renderer__items > .yt-virtual-list__container > .yt-virtual-list__item--visible.yt-virtual-list__item--selected.yt-virtual-list__item\",\"tasks\":[[\"has-text\",\"Ad\"]]}]","[{\"selector\":\"table.info-table tr:has(td[colspan] .promo-box-any-banner)\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"strong\",\"tasks\":[[\"has-text\",\"/anzeige/i\"]]}]","[{\"selector\":\"div.container\",\"action\":[\"style\",\"margin-top: 0px !important\"],\"cssable\":true}]","[{\"selector\":\".active > ul > li\",\"tasks\":[[\"has-text\",\"Ad:\"]]},{\"selector\":\"div h2\",\"tasks\":[[\"has\",{\"selector\":\"span\",\"tasks\":[[\"matches-css-before\",{\"name\":\"content\",\"pseudo\":\"before\",\"value\":\"Sponsored\"}]]}],[\"spath\",\" + div\"]]},{\"selector\":\"div h2\",\"tasks\":[[\"has\",{\"selector\":\"span\",\"tasks\":[[\"matches-css-before\",{\"name\":\"content\",\"pseudo\":\"before\",\"value\":\"Sponsored\"}]]}]]}]","[{\"selector\":\"[onclick] p\",\"tasks\":[[\"matches-css-before\",{\"name\":\"content\",\"pseudo\":\"before\",\"value\":\"Ad \"}],[\"xpath\",\"../..\"],[\"not\",{\"selector\":\"p\",\"tasks\":[[\"has-text\",\"/MAHA/i\"]]}],[\"not\",{\"selector\":\"p\",\"tasks\":[[\"has-text\",\"/Times/i\"]]}]]}]","[{\"selector\":\"\",\"tasks\":[[\"xpath\",\"//span[(text()='Ad')]/../../..\"]]}]","[{\"selector\":\"H2\",\"tasks\":[[\"has-text\",\"/Promoted/\"],[\"spath\",\" + DIV\"]]}]","[{\"selector\":\"h2\",\"tasks\":[[\"has-text\",\"/Promoted/\"]]}]","[{\"selector\":\".brand_ctn\",\"tasks\":[[\"has-text\",\"/Ad:/\"],[\"xpath\",\"../..\"]]},{\"selector\":\"p\",\"tasks\":[[\"has-text\",\"/Ad:/\"],[\"xpath\",\"../../..\"]]},{\"selector\":\"span\",\"tasks\":[[\"has-text\",\"/Ad:/\"],[\"xpath\",\"../..\"]]}]","[{\"selector\":\".banner\",\"action\":[\"remove\",\"\"]},{\"selector\":\"[id^=\\\"ad\\\"]\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"[id^=\\\"banner-300x250\\\"]\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"#zedoads1\",\"action\":[\"style\",\"height: 1px !important\"],\"cssable\":true},{\"selector\":\"#zedoads2\",\"action\":[\"style\",\"height: 1px !important\"],\"cssable\":true}]","[{\"selector\":\"#story-maincontent\",\"action\":[\"style\",\"display: block !important\"],\"cssable\":true},{\"selector\":\"#zedotopnavads\",\"action\":[\"style\",\"height: 1px !important\"],\"cssable\":true},{\"selector\":\"#zedotopnavads1\",\"action\":[\"style\",\"height: 1px !important\"],\"cssable\":true}]","[{\"selector\":\".adblockcontainer\",\"action\":[\"style\",\"display: block !important\"],\"cssable\":true}]","[{\"selector\":\"\",\"action\":[\"style\",\"height: 0 !important; overflow: hidden !important;\"],\"tasks\":[[\"matches-path\",\"/^\\\\/(\\\\?[a-z]+=\\\\w+)?$/\"],[\"spath\",\" div[aria-posinset] :is(h3, h4) span > a[href]:not([href^=\\\"/groups/\\\"]):not([href*=\\\"section_header_type\\\"])\"],[\"matches-attr\",{\"attr\":\"href\",\"value\":\"/__cft__\\\\[0\\\\]=[-\\\\w]{290,}/\"}],[\"upward\",\"div[aria-posinset]\"]]},{\"selector\":\"\",\"action\":[\"style\",\"height: 0 !important; overflow: hidden !important;\"],\"tasks\":[[\"matches-path\",\"/search/\"],[\"spath\",\" div[role=\\\"article\\\"] span > a[href]:not([href^=\\\"/groups/\\\"]):not([href*=\\\"section_header_type\\\"])\"],[\"matches-attr\",{\"attr\":\"href\",\"value\":\"/__cft__\\\\[0\\\\]=[-\\\\w]{265,}/\"}],[\"upward\",\"[role=\\\"article\\\"]\"]]},{\"selector\":\"#stream_pagelet div[id^=\\\"hyperfeed_story_id_\\\"]\",\"tasks\":[[\"if\",{\"selector\":\"h6\",\"tasks\":[[\"has-text\",\"People You May Know\"]]}]]},{\"selector\":\"#watch_feed div:not([class]) > div:not([class]) div[class] [class] > a[href*=\\\"utm_source=facebook\\\"] span[class] > span[class][style*=\\\"-webkit-line-clamp\\\"]\",\"action\":[\"style\",\"height: 0 !important; overflow: hidden !important;\"],\"tasks\":[[\"has-text\",\"広告\"],[\"upward\",\"div:not([class]) > div:not([class])\"]]},{\"selector\":\"#watch_feed div:not([class]) > div:not([class]) div[class] span[class] > a span[aria-labelledby]\",\"action\":[\"style\",\"height: 0 !important; overflow: hidden !important;\"],\"tasks\":[[\"has\",{\"selector\":\"> span[style=\\\"display: flex;\\\"] > span[class]\",\"tasks\":[[\"has-text\",\"/^S$/\"]]}],[\"has\",{\"selector\":\"> span[style=\\\"display: flex;\\\"] > span[class]\",\"tasks\":[[\"has-text\",\"/^p$/\"]]}],[\"has\",{\"selector\":\"> span[style=\\\"display: flex;\\\"] > span[class]\",\"tasks\":[[\"has-text\",\"/^d$/\"]]}],[\"upward\",\"div:not([class]) > div:not([class])\"]]},{\"selector\":\"#watch_feed div:not([class]) > div:not([class]) div[class] span[class] > a[aria-label=\\\"広告\\\"]\",\"action\":[\"style\",\"height: 0 !important; overflow: hidden !important;\"],\"tasks\":[[\"upward\",\"div:not([class]) > div:not([class])\"]]},{\"selector\":\".ego_column\",\"tasks\":[[\"if\",\"a[href^=\\\"/campaign/landing\\\"]\"]]},{\"selector\":\".ego_section\",\"tasks\":[[\"if\",\"a[href^=\\\"/ad_campaign\\\"]\"]]},{\"selector\":\".pagelet-group .pagelet\",\"tasks\":[[\"has\",{\"selector\":\"a\",\"tasks\":[[\"has-text\",\"/Sponsored|Create ad|Crear un anuncio|Publicidad/\"]]}]]},{\"selector\":\".userContentWrapper > div div > span > span\",\"tasks\":[[\"has-text\",\"/^Suggested Post$/\"]]},{\"selector\":\"div[aria-describedby]:not([aria-posinset]) :is(h3, h4) span > a[href]:not([href^=\\\"/groups/\\\"]):not([href*=\\\"section_header_type\\\"])\",\"action\":[\"style\",\"height: 0 !important; overflow: hidden !important;\"],\"tasks\":[[\"matches-attr\",{\"attr\":\"href\",\"value\":\"/__cft__\\\\[0\\\\]=[-\\\\w]{290,}/\"}],[\"upward\",\"div[aria-describedby]\"]]},{\"selector\":\"div[aria-posinset]:has(a[aria-label=\\\"広告\\\"])\",\"action\":[\"style\",\"height: 0 !important; overflow: hidden !important;\"],\"cssable\":true},{\"selector\":\"div[id^=\\\"hyperfeed_story_id_\\\"]\",\"tasks\":[[\"has\",{\"selector\":\"div > span:has(abbr .timestampContent)\",\"tasks\":[[\"matches-css\",{\"name\":\"display\",\"value\":\"^none$\"}]]}]]}]","[{\"selector\":\"\",\"tasks\":[[\"matches-path\",\"/marketplace/item\"],[\"spath\",\" a[attributionsrc^=\\\"/privacy_sandbox/\\\"]:is([aria-label$=\\\" anunciante\\\"][aria-label*=\\\" d\\\"], [aria-label=\\\"Lien de l’annonceur\\\"], [aria-label$=\\\"autan pengiklan\\\"], [aria-label=\\\"Adverteerderskakel\\\"], [aria-label=\\\"Link sa nag-advertise\\\"], [aria-label=\\\"Link oglašivača\\\"], [aria-label=\\\"Odkaz od inzerenta\\\"], [aria-label=\\\"Link fra annoncør\\\"], [aria-label=\\\"Werbelink\\\"], [aria-label=\\\"Link ng advertiser\\\"], [aria-label=\\\"Link dell'inserzionista\\\"], [aria-label=\\\"Veza oglašivača\\\"], [aria-label=\\\"Manisautilirijimut kasurvik\\\"], [aria-label=\\\"Kiunganishi cha mtangazaji\\\"], [aria-label=\\\"Lyen konpayi ki fè piblisite a\\\"], [aria-label=\\\"Reklāmdevēja saite\\\"], [aria-label=\\\"Reklamuotojo nuoroda\\\"], [aria-label=\\\"Hirdető hivatkozása\\\"], [aria-label=\\\"Link tar-reklamatur\\\"], [aria-label=\\\"Adverteerderslink\\\"], [aria-label=\\\"Annonsørlenke\\\"], [aria-label=\\\"Link reklamodawcy\\\"], [aria-label=\\\"Link promotor\\\"], [aria-label=\\\"Lidhja e reklamuesit\\\"], [aria-label=\\\"Odkaz na inzerenta\\\"], [aria-label=\\\"Povezava oglaševalca\\\"], [aria-label=\\\"Mainostajan linkki\\\"], [aria-label=\\\"Annonsörlänk\\\"], [aria-label=\\\"Liên kết của nhà quảng cáo\\\"], [aria-label=\\\"Reklamveren bağlantısı\\\"], [aria-label=\\\"Σύνδεσμος διαφημιζόμενου\\\"], [aria-label=\\\"Връзка на рекламодател\\\"], [aria-label=\\\"Линк на огласувач на реклами\\\"], [aria-label=\\\"Сурталчлагчийн холбоос\\\"], [aria-label=\\\"Ссылка рекламодателя\\\"], [aria-label=\\\"Веза оглашивача\\\"], [aria-label=\\\"Посилання рекламодавця\\\"], [aria-label=\\\"რეკლამის განმთავსებლის ბმული\\\"], [aria-label=\\\"קישור של מפרסם\\\"], [aria-label=\\\"ایڈورٹائزر کا لنک\\\"], [aria-label=\\\"رابط المعلن\\\"], [aria-label=\\\"जाहिरातदार लिंक\\\"], [aria-label=\\\"विज्ञापनदाता द्वारा लिंक\\\"], [aria-label=\\\"বিজ্ঞাপনদাতা লিংক\\\"], [aria-label=\\\"বিজ্ঞাপনদাতার লিঙ্ক\\\"], [aria-label=\\\"જાહેરાતકર્તા લિંક\\\"], [aria-label=\\\"అడ్వర్టయిజర్ లింక్\\\"], [aria-label=\\\"പരസ്യദാതാവിന്റെ ലിങ്ക്\\\"], [aria-label=\\\"වෙළඳ ප්‍රචාරක සබැඳිය\\\"], [aria-label=\\\"ลิงก์ผู้ลงโฆษณา\\\"], [aria-label=\\\"광고주 링크\\\"], [aria-label^=\\\"廣告\\\"][aria-label$=\\\"連結\\\"], [aria-label=\\\"广告主提供的链接\\\"], [aria-label=\\\"広告主によるリンク\\\"])\"]]}]","[{\"selector\":\"body\",\"action\":[\"style\",\"overflow: auto !important\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"runCount\"]]}]","[{\"selector\":\"body > .pubTime\",\"action\":[\"style\",\"display: block !important\"],\"cssable\":true},{\"selector\":\"body > .secArticleImage\",\"action\":[\"style\",\"display: block !important\"],\"cssable\":true},{\"selector\":\"body > .secArticleTitle\",\"action\":[\"style\",\"display: block !important\"],\"cssable\":true},{\"selector\":\"body > .storyBody\",\"action\":[\"style\",\"display: block !important\"],\"cssable\":true}]","[{\"selector\":\".a-carousel-card:has(> div > div[cel_widget_id^=\\\"adplacements:\\\"])\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\".ad\",\"action\":[\"style\",\"position:absolute !important; left:-10000px !important; display:block !important; pointer-events: none !important;\"],\"cssable\":true},{\"selector\":\".iba-acceptable\",\"tasks\":[[\"has-text\",\"/Anzeige|Info/\"]]}]","[{\"selector\":\".list-articles > li\",\"tasks\":[[\"has\",{\"selector\":\".icon-addy\",\"tasks\":[[\"matches-css-before\",{\"name\":\"content\",\"pseudo\":\"before\",\"value\":\"^\\\"Anzeige\\\"$\"}]]}]]},{\"selector\":\".sp-article\",\"tasks\":[[\"has\",{\"selector\":\"span\",\"tasks\":[[\"matches-css-before\",{\"name\":\"content\",\"pseudo\":\"before\",\"value\":[\"Anzeige\",\"i\"]}]]}]]},{\"selector\":\"[data-article-id]\",\"tasks\":[[\"has\",{\"selector\":\"[class]\",\"tasks\":[[\"matches-css-before\",{\"name\":\"content\",\"pseudo\":\"before\",\"value\":\"ANZEIGE\"}]]}]]}]","[{\"selector\":\".main-nav .utilities > li\",\"action\":[\"style\",\"margin-left:-0.5px !important\"],\"cssable\":true},{\"selector\":\"div\",\"tasks\":[[\"matches-css-before\",{\"name\":\"content\",\"pseudo\":\"before\",\"value\":[\"Anzeige\",\"i\"]}]]}]","[{\"selector\":\".gnt_n\",\"action\":[\"style\",\"top: 0 !important; margin-top: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\".FeedStory.feed_item > div > div\",\"tasks\":[[\"has-text\",\"/by Quora for Business/i\"]]},{\"selector\":\".Toggle.SimpleToggle.ToggleAnswerFooterWrapper > div\",\"tasks\":[[\"has-text\",\"/Promoted/i\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"AaDetector\"]]}]","[{\"selector\":\".center\",\"action\":[\"style\",\"margin-top:50px !important\"],\"cssable\":true}]","[{\"selector\":\"body > a > div[id]\",\"action\":[\"style\",\"background: var(--c-bg, #aae5a3) !important\"],\"cssable\":true}]","[{\"selector\":\"body.pcm-public:not(.skybox-loaded)\",\"action\":[\"style\",\"margin-top: 90px !important;\"],\"cssable\":true},{\"selector\":\"body:not(.skybox-loaded) > header\",\"action\":[\"style\",\"top: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\"#content.sidebar2\",\"action\":[\"style\",\"margin-right: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\".disabled-vscroll\",\"action\":[\"style\",\"overflow: auto !important; position: initial !important;\"],\"cssable\":true}]","[{\"selector\":\".leftCol > div [data-link-tracking-page=\\\"Widget\\\"]\",\"tasks\":[[\"upward\",\".leftCol > div\"]]},{\"selector\":\"a\",\"tasks\":[[\"matches-attr\",{\"attr\":\"href\",\"value\":\"/[a-zA-Z0-9]{100,}/\"}]]},{\"selector\":\"body, body::before\",\"action\":[\"style\",\"background-image: unset !important;\"],\"cssable\":true}]","[{\"selector\":\"\",\"tasks\":[[\"xpath\",\"//*[contains(text(),\\\"Sponsored\\\")]\"],[\"upward\",2]]}]","[{\"selector\":\"[class]:not(body):not(html)\",\"tasks\":[[\"has-text\",\"/Protect your privacy/i\"]]},{\"selector\":\"[class]:not(body):not(html)\",\"tasks\":[[\"has-text\",\"Sponsored\"]]}]","[{\"selector\":\"\",\"tasks\":[[\"xpath\",\"//strong[contains(text(),\\\"VPN\\\")]/../../..\"]]}]","[{\"selector\":\".content-wrap #inner-wrap\",\"action\":[\"style\",\"height: 100vh !important;\"],\"cssable\":true},{\"selector\":\"body wu-header\",\"action\":[\"style\",\"margin-top: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\"div[id][style=\\\"width: 728px; height: 90px;\\\"]\",\"tasks\":[[\"upward\",\"#pub1\"]]}]","[{\"selector\":\".uppercase\",\"tasks\":[[\"has-text\",\"/advertisement/i\"]]}]","[{\"selector\":\"body.no-scroll\",\"action\":[\"style\",\"overflow: auto !important; position: static !important; width: unset !important;\"],\"cssable\":true}]","[{\"selector\":\"\",\"tasks\":[[\"xpath\",\"//div[starts-with(@id, \\\"dfp-ad\\\")]/../..\"]]},{\"selector\":\"article.story\",\"action\":[\"style\",\"opacity: 1.0 !important;\"],\"cssable\":true}]","[{\"selector\":\"body\",\"action\":[\"style\",\"height: auto !important; overflow: auto !important\"],\"cssable\":true},{\"selector\":\"html\",\"action\":[\"style\",\"height: auto !important; overflow: auto !important\"],\"cssable\":true}]","[{\"selector\":\".btn-danger\",\"tasks\":[[\"has-text\",\"/download/i\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"\\\\'shift\\\\'\"]]},{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"shift\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"admc\"]]}]","[{\"selector\":\".container > [class]\",\"tasks\":[[\"has-text\",\"VPN\"]]},{\"selector\":\".title ~ a[href] .button\",\"tasks\":[[\"upward\",\".container > div\"]]},{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"document.write\"]]}]","[{\"selector\":\"#image_details\",\"action\":[\"style\",\"margin-top: 30px !important\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"self == top\"]]}]","[{\"selector\":\"center\",\"tasks\":[[\"has-text\",\"deal\"]]}]","[{\"selector\":\"\",\"tasks\":[[\"xpath\",\"//*[contains(text(),\\\"Hide your IP\\\")]/..\"]]},{\"selector\":\"ul > li\",\"tasks\":[[\"has-text\",\"/‌/i\"]]}]","[{\"selector\":\"#alphabet, #channels, #divx-container, #hmenu, #inform, #nowlooking, #playerCamBox, #playerMenu, #qcat, #showPlayer, #tabel_tagslist, #video_content, #web_cam, .BaseRoomContents, .buttons, .carouselTopScroll, .carusel-keys-box-ps, .footerdesc, .in_top, .load_more_rel, .mainBoxTitle, .pagIno, .playerContent100pr, .relatedVideo, .right-160px, .videos-related, footer, header, [href^=\\\"/webcams.php\\\"]\",\"tasks\":[[\"others\",\"\"]]},{\"selector\":\"a\",\"tasks\":[[\"matches-attr\",{\"attr\":\"/-h?ref/\",\"value\":\"\"}]]},{\"selector\":\"a\",\"tasks\":[[\"matches-attr\",{\"attr\":\"/^on/\",\"value\":\"/event/\"}]]}]","[{\"selector\":\"#vidPlayer span\",\"tasks\":[[\"has-text\",\"Advertisement\"]]}]","[{\"selector\":\".content\",\"tasks\":[[\"has\",{\"selector\":\"> div\",\"tasks\":[[\"has-text\",\"Branded Content\"]]}]]}]","[{\"selector\":\".video\",\"tasks\":[[\"has\",{\"selector\":\"span\",\"tasks\":[[\"has-text\",\"Live\"]]}]]},{\"selector\":\"[data-vid^=\\\"live-\\\"]\",\"action\":[\"remove\",\"\"]},{\"selector\":\"[href^=\\\"https://go.cam.feet9.com/\\\"]\",\"tasks\":[[\"upward\",3]]},{\"selector\":\"[onclick*=\\\"banner\\\"]\",\"tasks\":[[\"upward\",\".video\"]]}]","[{\"selector\":\"div[class^=\\\"span\\\"] > div.box\",\"tasks\":[[\"has\",{\"selector\":\"> .title > div\",\"tasks\":[[\"has-text\",\"Advertisement\"]]}]]}]","[{\"selector\":\"#web\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"exdynsrv\"]]}]","[{\"selector\":\"#wrapper\",\"action\":[\"style\",\"padding-top: 0 !important;\"],\"cssable\":true},{\"selector\":\".advert\",\"action\":[\"style\",\"z-index: -999999 !important;\"],\"cssable\":true}]","[{\"selector\":\"body > div#wrapper\",\"action\":[\"style\",\"padding-top: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\".clearfix.branding > .surftipp\",\"tasks\":[[\"has-text\",\"Anzeige\"]]}]","[{\"selector\":\".page-wrap > section\",\"tasks\":[[\"has-text\",\"Download the free\"]]}]","[{\"selector\":\"[data-testid=\\\"trend\\\"]\",\"tasks\":[[\"has-text\",\"/Promoted|Gesponsert|Promocionado|Patrocinat|Sponsorisé|Sponsorizzato|Promowane|Promovido|Реклама|Uitgelicht|Sponsorlu|Promotert|Promoveret|Sponsrad|Mainostettu|Sponzorováno|Promovat|Ajánlott|Προωθημένο|Dipromosikan|Được quảng bá|推廣|推广|推薦|推荐|プロモーション|프로모션|ประชาสัมพันธ์|प्रचारित|বিজ্ঞাপিত|تشہیر شدہ|مُروَّج|تبلیغی|מקודם/\"],[\"upward\",1]]},{\"selector\":\"div[style^=\\\"transform\\\"] h2 > div[style^=\\\"-webkit-line-clamp\\\"] > span\",\"tasks\":[[\"has-text\",\"/^(?:Promoted Post|Promowany Post|Post promovat|プロモポスト)$/\"],[\"upward\",3]]}]","[{\"selector\":\"[id^=\\\"div-gpt-ad\\\"]:not([class])\",\"tasks\":[[\"upward\",\"div[class]\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"wadsBlocking\"]]}]","[{\"selector\":\".InfoPcBolsaAdBlock\",\"tasks\":[[\"xpath\",\"..\"]]}]","[{\"selector\":\".adLinkBar\",\"tasks\":[[\"upward\",\"article[style=\\\"z-index: 1;\\\"]\"]]},{\"selector\":\"[id^=\\\"t3\\\"].promotedlink\",\"tasks\":[[\"upward\",\".rpBJOHq2PR60pnwJlUyP0 > div\"]]},{\"selector\":\"div[id*=\\\"sidebar\\\"][data-before-content=\\\"advertisement\\\"]\",\"tasks\":[[\"upward\",3]]}]","[{\"selector\":\"body\",\"action\":[\"style\",\"background: none !important; overflow: auto !important;\"],\"cssable\":true}]","[{\"selector\":\".position-absolute\",\"action\":[\"style\",\"opacity: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\".selected\",\"tasks\":[[\"has-text\",\"Ads\"]]}]","[{\"selector\":\".elementor-row\",\"tasks\":[[\"has-text\",\"[Anzeige]\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"FingerprintJS\"]]}]","[{\"selector\":\".onp-sl-content\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\".dd-nav-global\",\"action\":[\"style\",\"top: 0 !important; transform: none !important;\"],\"cssable\":true}]","[{\"selector\":\"table > tbody > tr\",\"tasks\":[[\"has-text\",\"Advertisement\"]]}]","[{\"selector\":\"#site-wrapper\",\"action\":[\"style\",\"padding-top: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\".js-toggle-content-wrapper a[href^=\\\"/link/out/\\\"]\",\"tasks\":[[\"upward\",\".js-toggle-content-wrapper\"]]}]","[{\"selector\":\".uk-panel.widget-text\",\"action\":[\"style\",\"height: 0px !important; visibility: collapse;\"],\"cssable\":true}]","[{\"selector\":\"#bodyContent\",\"action\":[\"style\",\"width:100%!important\"],\"cssable\":true}]","[{\"selector\":\"#info\",\"action\":[\"style\",\"display: block !important\"],\"cssable\":true}]","[{\"selector\":\".row.divider\",\"tasks\":[[\"has-text\",\"/sponsor|press releases/i\"]]},{\"selector\":\".widget\",\"tasks\":[[\"has-text\",\"/advert|sponsor/i\"]]}]","[{\"selector\":\"\",\"tasks\":[[\"xpath\",\"//*[contains(text(),\\\"VPN\\\")]\"],[\"upward\",2]]}]","[{\"selector\":\"[href^=\\\"/plugout.php\\\"]\",\"tasks\":[[\"upward\",\"[class^=\\\"col-sm\\\"]\"]]}]","[{\"selector\":\".wpsafe-top > div > center\",\"tasks\":[[\"has-text\",\"Advertisements\"]]}]","[{\"selector\":\"#list-eps\",\"action\":[\"style\",\"display:block!important\"],\"cssable\":true}]","[{\"selector\":\".les-title\",\"tasks\":[[\"has-text\",\"HD\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"axtd\"]]}]","[{\"selector\":\"form#go-popup\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\".ad-wrapper\",\"tasks\":[[\"upward\",\"div.region-sidebar-first-wrapper\"]]}]","[{\"selector\":\"[href]\",\"tasks\":[[\"has-text\",\"PLAY\"]]}]","[{\"selector\":\"div.border_radius\",\"tasks\":[[\"has-text\",\"Advertisement\"]]}]","[{\"selector\":\"#gameplay > iframe\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#blockblockB\",\"action\":[\"style\",\"display: block!important;\"],\"cssable\":true}]","[{\"selector\":\"#workspace\",\"action\":[\"style\",\"right: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\".col-sm-4\",\"tasks\":[[\"has-text\",\"Advertisement\"]]},{\"selector\":\"div\",\"tasks\":[[\"has\",{\"selector\":\"> div:has(> .adsbygoogle)\"}]]},{\"selector\":\"embed\",\"action\":[\"style\",\"display:inherit!important\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"0x3\"]]}]","[{\"selector\":\".head\",\"tasks\":[[\"has-text\",\"Adv\"]]},{\"selector\":\"tr\",\"tasks\":[[\"has-text\",\"VPN\"]]}]","[{\"selector\":\".postcontainer\",\"tasks\":[[\"has\",{\"selector\":\".usertitle\",\"tasks\":[[\"has-text\",\"Publicidade\"]]}]]}]","[{\"selector\":\".adsbygoogle\",\"action\":[\"style\",\"height: 1px !important;\"],\"cssable\":true}]","[{\"selector\":\".uk-card-secondary\",\"tasks\":[[\"has-text\",\"VPN\"]]}]","[{\"selector\":\".widget-title\",\"tasks\":[[\"has-text\",\"AD\"]]}]","[{\"selector\":\"body *\",\"action\":[\"remove\",\"\"],\"tasks\":[[\"matches-css\",{\"name\":\"margin\",\"value\":\"auto\"}],[\"matches-css\",{\"name\":\"width\",\"value\":\"^[2-3]{1}[0-9]{2}(\\\\.[0-9]+)?px$\"}],[\"matches-css\",{\"name\":\"height\",\"value\":\"^[2-3]{1}[0-9]{2}(\\\\.[0-9]+)?px$\"}],[\"matches-css\",{\"name\":\"display\",\"value\":\"block|table\"}]]}]","[{\"selector\":\"li\",\"tasks\":[[\"has\",{\"selector\":\".viewLink\",\"tasks\":[[\"has-text\",\"AD |\"]]}]]}]","[{\"selector\":\".widget-title\",\"tasks\":[[\"has-text\",\"Adv\"]]}]","[{\"selector\":\"#af-all\",\"action\":[\"style\",\"margin-top: 4em;\"],\"cssable\":true}]","[{\"selector\":\".theme_article.sidebar_increase\",\"action\":[\"style\",\"height:0px !important\"],\"cssable\":true}]","[{\"selector\":\"#asg-inplayer-block\",\"tasks\":[[\"upward\",4]]}]","[{\"selector\":\"div.row\",\"tasks\":[[\"has-text\",\"in HD\"]]},{\"selector\":\"table.movie_version\",\"tasks\":[[\"has-text\",\"Promo\"]]}]","[{\"selector\":\"h2.widget-title\",\"tasks\":[[\"has-text\",\"Advertisement\"]]}]","[{\"selector\":\"div[id^=\\\"imCell_\\\"][class=\\\"\\\"]\",\"tasks\":[[\"has-text\",\"/Advertisement/i\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"toscr\\\\'\"]]},{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"}(window);\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\",window\\\\);\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"(window);\"]]}]","[{\"selector\":\".widget_custom_html ins\",\"tasks\":[[\"upward\",\".widget_custom_html\"]]}]","[{\"selector\":\".ad-loading\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"#adter\",\"tasks\":[[\"upward\",3]]},{\"selector\":\".single-entry-titles\",\"tasks\":[[\"has-text\",\"Sponsor\"]]}]","[{\"selector\":\"\",\"tasks\":[[\"xpath\",\"//div[contains(text(),\\\"Advert\\\")]\"]]},{\"selector\":\".composite-branding.branding\",\"tasks\":[[\"has-text\",\"/sponsored/i\"],[\"xpath\",\"..\"]]}]","[{\"selector\":\"#jeocontainer > span\",\"tasks\":[[\"has-text\",\"Promoted\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"btoa\"]]}]","[{\"selector\":\"a.extern[href^=\\\"//www.amazon.de/\\\"]\",\"tasks\":[[\"upward\",2]]}]","[{\"selector\":\".happy-player-beside, .happy-section, .widget_execphp\",\"tasks\":[[\"has-text\",\"/Advertisement|ExoLoader/\"]]}]","[{\"selector\":\".adsbygoogle\",\"action\":[\"style\",\"max-height: 1px !important;\"],\"cssable\":true}]","[{\"selector\":\"\",\"tasks\":[[\"xpath\",\"//a[contains(text(),\\\"VPN\\\")]/../../..\"]]}]","[{\"selector\":\".banner-inner\",\"action\":[\"style\",\"width: 0 !important;\"],\"cssable\":true},{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"adb_detected\"]]}]","[{\"selector\":\".spot-thumbs > .right\",\"action\":[\"style\",\"height:1px !important\"],\"cssable\":true}]","[{\"selector\":\"#player_img\",\"tasks\":[[\"upward\",2]]}]","[{\"selector\":\"body\",\"action\":[\"style\",\"margin-top: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\".links_table > .fix-table > table > tbody > tr\",\"tasks\":[[\"has-text\",\"Patrocinador\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"/aclib|runPop/\"]]}]","[{\"selector\":\"input[value^=\\\"http\\\"]\",\"action\":[\"style\",\"width: 70% !important\"],\"cssable\":true}]","[{\"selector\":\"#content-embed\",\"action\":[\"style\",\"display: block!important\"],\"cssable\":true}]","[{\"selector\":\".video-block-happy-absolute\",\"tasks\":[[\"upward\",\".order-1\"]]}]","[{\"selector\":\"\",\"tasks\":[[\"xpath\",\"//*[(text()=\\\"AD\\\")]/..\"]]},{\"selector\":\".w-100\",\"tasks\":[[\"has-text\",\"Advertisement\"]]},{\"selector\":\"html[style=\\\"overflow: hidden;\\\"]\",\"action\":[\"style\",\"overflow: auto !important;\"],\"cssable\":true},{\"selector\":\"section > div\",\"tasks\":[[\"has-text\",\"/^AD$/\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"google_ad_client\"]]}]","[{\"selector\":\"#main, #ielement\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#ava-game_container\",\"action\":[\"style\",\"display:inherit!important\"],\"cssable\":true},{\"selector\":\"#wrapped-content\",\"action\":[\"style\",\"display:inherit!important\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"window.adsbygoogle\"]]}]","[{\"selector\":\".banotset\",\"tasks\":[[\"upward\",3]]}]","[{\"selector\":\"#wpsafe-generate, #wpsafe-link\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#wpsafe-generate, #wpsafe-link\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\".im_outer_x\",\"tasks\":[[\"upward\",2]]},{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"myreadCookie/\"]]}]","[{\"selector\":\".advertising\",\"tasks\":[[\"upward\",2]]}]","[{\"selector\":\".banner\",\"tasks\":[[\"upward\",\".block\"]]}]","[{\"selector\":\"#player-container\",\"tasks\":[[\"has-text\",\"Close ad\"]]}]","[{\"selector\":\"#adBanner\",\"action\":[\"style\",\"height:25px !important;left:-3000px !important;position:absolute !important\"],\"cssable\":true}]","[{\"selector\":\"#main > ins.adsbygoogle\",\"action\":[\"style\",\"position: absolute !important; left: -4000px !important;\"],\"cssable\":true},{\"selector\":\"#sidebar > ins.adsbygoogle\",\"action\":[\"style\",\"position: absolute !important; left: -4000px !important;\"],\"cssable\":true},{\"selector\":\".side_banner\",\"action\":[\"style\",\"position: absolute !important; left: -4000px !important;\"],\"cssable\":true},{\"selector\":\"ins.adsbygoogle-noablate\",\"action\":[\"style\",\"position: absolute !important; left: -4000px !important;\"],\"cssable\":true}]","[{\"selector\":\".adsbygoogle\",\"tasks\":[[\"upward\",\".widget\"]]}]","[{\"selector\":\"body.swal2-shown > [aria-hidden=\\\"true\\\"]\",\"action\":[\"style\",\"filter: none !important\"],\"cssable\":true}]","[{\"selector\":\"\",\"tasks\":[[\"xpath\",\"//span[contains(text(),\\\"Advert\\\")]/../..\"]]},{\"selector\":\"td\",\"tasks\":[[\"has\",{\"selector\":\"> span[class]\",\"tasks\":[[\"has-text\",\"Advert\"]]}]]}]","[{\"selector\":\".active.dimmer.ui\",\"tasks\":[[\"has-text\",\"/Wait|Skip/i\"]]}]","[{\"selector\":\".panel-title\",\"tasks\":[[\"has-text\",\"REKLAM\"]]},{\"selector\":\"div.col-xs-12\",\"tasks\":[[\"has-text\",\"MMPORG OYUNLAR\"]]}]","[{\"selector\":\".table-hover.table > tbody > tr\",\"tasks\":[[\"has-text\",\"Descargar Premium\"]]}]","[{\"selector\":\"noscript\",\"action\":[\"remove\",\"\"],\"tasks\":[[\"has-text\",\"Adblocker\"]]}]","[{\"selector\":\"div.adsbygoogle.prebid.adocean.ado.ad.ads.advert.banner.reklama.linkSponsorowany.adsense.advertisments.reklama-top.adv_container\",\"action\":[\"style\",\"display: block !important\"],\"cssable\":true}]","[{\"selector\":\"a[href*=\\\".yabo816.\\\"]\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"[id^=\\\"sidebar-stream-\\\"] > h4\",\"tasks\":[[\"has-text\",\"Advertisement\"]]}]","[{\"selector\":\".title-section\",\"tasks\":[[\"has-text\",\"/adv/i\"]]}]","[{\"selector\":\"#bodyContent\",\"action\":[\"style\",\"width:100% !important\"],\"cssable\":true},{\"selector\":\"li.top-results__item span\",\"tasks\":[[\"has-text\",\"Sponsored\"],[\"upward\",\"li\"]]}]","[{\"selector\":\".wide_boxcontent\",\"tasks\":[[\"has-text\",\"/adb/i\"]]},{\"selector\":\"div[data-width][style*=\\\"background-image: url\\\"]\",\"action\":[\"style\",\"background: none !important\"],\"cssable\":true}]","[{\"selector\":\".ads-between-post\",\"tasks\":[[\"upward\",\".post-item\"]]}]","[{\"selector\":\".mobile-leaderboard-320-50\",\"tasks\":[[\"upward\",\"[style]\"]]}]","[{\"selector\":\"html\",\"action\":[\"style\",\"overflow: auto !important\"],\"cssable\":true}]","[{\"selector\":\".viewtable\",\"tasks\":[[\"has\",{\"selector\":\"> center\",\"tasks\":[[\"has-text\",\"▼ Scroll down to Continue ▼\"]]}],[\"spath\",\" > a[href][target=\\\"_blank\\\"]\"]]}]","[{\"selector\":\".js-toggle-content-wrapper a[href^=\\\"https://boyfriend.show/\\\"][rel=\\\"sponsored\\\"]\",\"tasks\":[[\"upward\",\".js-toggle-content-wrapper\"]]}]","[{\"selector\":\"#scroll.hidden, .footerLink.hidden\",\"action\":[\"style\",\"display: block!important\"],\"cssable\":true}]","[{\"selector\":\"#clickfakeplayer\",\"action\":[\"remove-attr\",\"href\"]}]","[{\"selector\":\"a[onclick][target]\",\"tasks\":[[\"upward\",2]]}]","[{\"selector\":\"div[class^=\\\"css-\\\"]\",\"tasks\":[[\"matches-css-before\",{\"name\":\"content\",\"pseudo\":\"before\",\"value\":\"ADVERTISEMENT\"}]]},{\"selector\":\"div[id=\\\"__next\\\"] > div[class^=\\\"css-\\\"] > aside\",\"tasks\":[[\"has\",{\"selector\":\"> div\",\"tasks\":[[\"matches-css-before\",{\"name\":\"content\",\"pseudo\":\"before\",\"value\":\"ADVERTISEMENT\"}]]}]]},{\"selector\":\"div[id=\\\"__next\\\"] > div[class^=\\\"css-\\\"] > div > section > div\",\"tasks\":[[\"matches-css-before\",{\"name\":\"content\",\"pseudo\":\"before\",\"value\":\"ADVERTISEMENT\"}]]}]","[{\"selector\":\".adsbygoogle\",\"action\":[\"style\",\"visibility: collapse !important\"],\"cssable\":true}]","[{\"selector\":\"#botaoLink\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#wrapfabtest\",\"action\":[\"style\",\"height:1px !important;width:1px !important\"],\"cssable\":true}]","[{\"selector\":\"[id=\\\"colunas\\\"]\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#adkit_billboard\",\"action\":[\"style\",\"padding-top: 0px!important;\"],\"cssable\":true}]","[{\"selector\":\"*::selection\",\"action\":[\"style\",\"background-color:#338FFF!important\"],\"cssable\":true}]","[{\"selector\":\"center\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#go_d2\",\"action\":[\"style\",\"display: inline-block !important;\"],\"cssable\":true}]","[{\"selector\":\"#wpsafe-link\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#wpsafe-link, .wpsafelink-multiple-pages\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#page\",\"action\":[\"style\",\"min-height: initial !important;\"],\"cssable\":true},{\"selector\":\"#tp-snp2\",\"action\":[\"style\",\"display: block !important\"],\"cssable\":true},{\"selector\":\".captcha-check, #tp-snp2, #countdown\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#tp98, #btn6\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"center, [src*=\\\"google.com/recaptcha/\\\"]\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\".elementor-location-footer\",\"action\":[\"style\",\"clip-path: circle(0) !important;\"],\"cssable\":true}]","[{\"selector\":\".container > center\",\"tasks\":[[\"others\",\"\"]]},{\"selector\":\".container\",\"action\":[\"style\",\"font-size: 0px !important;\"],\"cssable\":true},{\"selector\":\".getlink, #getlink\",\"action\":[\"remove-attr\",\"disabled\"]}]","[{\"selector\":\"form\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#wpsafe-link, #section2\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#wpsafe-link, #section2\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#yuidea-snp\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#tie-wrapper\",\"action\":[\"style\",\"min-height:initial! important;\"],\"cssable\":true}]","[{\"selector\":\"#gotolink, #getlink, #notarobot, .bt-success, #waiting, #pop-button, .modal-content\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#gotolink[disabled]\",\"action\":[\"remove-attr\",\"disabled\"]}]","[{\"selector\":\"#tp98, #jatinbtn-continue\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#tp98, #jatinbtn-continue\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#btn6\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#btn6\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#btn6, #tp98\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#btn6, #tp98\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#yuidea-snp, #btn6\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#yuidea-snp, #btn6, #yuidea, #countdown\",\"tasks\":[[\"others\",\"\"]]},{\"selector\":\"#yuidea-snp, #btn6, center, [src*=\\\"google.com/recaptcha\\\"]\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#makingdifferenttimer\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\".no_display\",\"action\":[\"style\",\"display: block!important; opacity: 1!important\"],\"cssable\":true},{\"selector\":\"h4, .get_btn\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\".banner-page .container.links\",\"action\":[\"style\",\"height: fit-content! important;\"],\"cssable\":true}]","[{\"selector\":\"#iframe_id, .text-left\",\"action\":[\"style\",\"clip-path: circle(0) !important;\"],\"cssable\":true}]","[{\"selector\":\"#step, #next, #scroll, #glink, #countdown, #surl, #ctext, .btn-danger.btn\",\"tasks\":[[\"others\",\"\"]]},{\"selector\":\"#surl\",\"action\":[\"remove-class\",\"disabled\"]}]","[{\"selector\":\".centered, [src*=\\\"iamnotrobot.png\\\"], #wpsafe-link, #wpsafelink-landing, #wpsafe-generate\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#submitBtn, #go_d, #wolfexe-snp\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#submitBtn, #go_d, #wolfexe-snp\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"form [id][style=\\\"display: none;\\\"]\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"form[id]\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\".text-center\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"htmls\"]]}]","[{\"selector\":\"\",\"tasks\":[[\"xpath\",\"//*[contains(text(),\\\"allow ads\\\")]\"],[\"upward\",3]]},{\"selector\":\"html, body\",\"action\":[\"style\",\"overflow: auto !important;\"],\"cssable\":true}]","[{\"selector\":\"div.text-center[id]\",\"action\":[\"style\",\"height: 100px !important;\"],\"cssable\":true}]","[{\"selector\":\".btn-primary\",\"action\":[\"style\",\"visibility: visible !important;\"],\"cssable\":true}]","[{\"selector\":\".adtester-container\",\"action\":[\"style\",\"min-height: 0px !important; max-height: 1px !important; opacity: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\".result_content_ff\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#wpsafelinkhuman, #wpsafe-link\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#wpsafelinkhuman, #wpsafe-link\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#wpsafe-link\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#pro-continue, #pro-btn, #my-btn\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#pro-continue, #pro-btn, #my-btn\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#my-btn, #my-btn2\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#my-btn, #my-btn2\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#gourl\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#gourl\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#wpsafe-generate, #wpsafe-link\",\"action\":[\"style\",\"display: block !important\"],\"cssable\":true}]","[{\"selector\":\".buttondownload\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\".buttonnya\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"form > div[id][style=\\\"display: none;\\\"]\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#tristana, #_append, #myDiv\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#link\",\"action\":[\"remove-attr\",\"disabled\"]},{\"selector\":\"#link, center, #yuidea-snp, #btn6\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#link1s-snp\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"div#wpsafe-link\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"div#wpsafe-link\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#tp-generate, #tp-snp2\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#wpsafe-wait1, #wpsafe-link\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"form > [id]\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#landing, .soractrl\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\".kecil\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#btn11\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#btn2, #btn5, #tp-snp2\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#btn2, #btn5, #tp-snp2\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#yuidea-snp\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"center, [src*=\\\"google.com/recaptcha/\\\"], #yuidea-snp\",\"action\":[\"style\",\"display:block !important\"],\"cssable\":true},{\"selector\":\"center, [src*=\\\"google.com/recaptcha/\\\"], #yuidea-snp\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#tp-snp2\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#tp-snp2\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#cross-snp2\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\".g-recaptcha, #cross-verify-go, .captcha-check, [src*=\\\"google.com/recaptcha/\\\"]\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#btn11, #tp-snp2, #rtg, #btn6, #wpsafe-snp\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#btn11, #tp-snp2, #rtg, #btn6, #wpsafe-snp\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#tp98, #btn6\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#tp-snp2, #cross-snp2\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#rtg-snp2\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#rtg-snp2\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#tp-snp2, #cross-snp2\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#tp-snp2, #cross-snp2, .tp-top\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#rtg-snp2, #rtg-snp21, [id^=\\\"Step\\\"]\",\"tasks\":[[\"others\",\"\"]]},{\"selector\":\"[id^=\\\"rtg\\\"], .continue_btn, [class*=\\\"rtg\\\"]\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"div.step_box > h4, #rtg-snp-btn, #rtg-snp21\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#hometimerstartbtn, #hometimer, #yuidea-btmbtn, #btn6\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#hometimerstartbtn, #hometimer, #yuidea-btmbtn, #btn6\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#form > [id], [id^=\\\"wpsafe-link\\\"], [id^=\\\"plan\\\"], .wpsafelink-button, #wpsafelinkhuman, [id][style=\\\"display: none;\\\"]\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#notarobot, #gotolink\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#notarobot, #gotolink\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#donead\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"a[onclick*=\\\"adlink()\\\"]\",\"action\":[\"remove-attr\",\"onclick\"]}]","[{\"selector\":\"a.get-link.disabled\",\"action\":[\"remove-class\",\"disabled\"]}]","[{\"selector\":\"#tp-snp2\",\"action\":[\"style\",\"display:block !important; height:70px !important; width:260px !important; background:linear-gradient(to right,#eb3349 40%,#f45c43) !important; position:fixed !important; top:20% !important; left:50% !important; transform:translate(-50%,-50%) !important;\"],\"cssable\":true},{\"selector\":\"#tp-snp2, .captcha-check\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#notarobot, #btn7\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#notarobot, #btn7\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#file\",\"action\":[\"remove-attr\",\"disabled\"]},{\"selector\":\"#file\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#username[required]\",\"action\":[\"remove-attr\",\"required\"]}]","[{\"selector\":\"#tp982, #btn6\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#tp982, #btn6\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#getnewlink, .wp2continuelink, .getmylink\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#getnewlink, .wp2continuelink, .getmylink, #newtimer\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#link, #btn6, #yuidea-snp\",\"action\":[\"remove-attr\",\"disabled\"]}]","[{\"selector\":\"#tp98, #btn6, #tp-snp2\",\"tasks\":[[\"others\",\"\"]]},{\"selector\":\"#tp98[disabled]\",\"action\":[\"remove-attr\",\"disabled\"]}]","[{\"selector\":\".text-primary.inline-block, button.text-primary\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#btn2, #tp-snp2\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#btn2, #tp-snp2\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#bottomButton\",\"action\":[\"style\",\"display: block !important\"],\"cssable\":true},{\"selector\":\"body\",\"action\":[\"remove-attr\",\"style\"]}]","[{\"selector\":\".box-main\",\"action\":[\"style\",\"font-size: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\"#top_nav, .rd_btn, .soractrl\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#top_nav, .rd_btn, .soractrl, .large\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#wpsafe-link\",\"action\":[\"style\",\"display:block !important;\"],\"cssable\":true}]","[{\"selector\":\"#btnfianl\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"/AdbModel|showPopup/\"]]}]","[{\"selector\":\".btn-success, .btn-primary\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\".btn-success, .btn-primary\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#my-btn, #pro-continue, #pro-link\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#my-btn, #pro-continue, #pro-link\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"form > [id][style=\\\"display: none;\\\"]\",\"action\":[\"style\",\"display:block !important;\"],\"cssable\":true}]","[{\"selector\":\".RecurringadBanner\",\"action\":[\"style\",\"clip-path: circle(0) !important;\"],\"cssable\":true}]","[{\"selector\":\".circular-progress, button, b > p > span\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"form > div\",\"action\":[\"style\",\"display: flex !important;\"],\"cssable\":true}]","[{\"selector\":\"form button[id]\",\"action\":[\"style\",\"display: block !important; margin-top: 380px !important; margin-left: 10px !important; height: 70px !important; width: 260px !important; background: linear-gradient(to right,#eb3349 40%,#f45c43) ! important;\"],\"cssable\":true},{\"selector\":\"form button[id], .box-main, .captcha-check\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#dlp, #dlndiv, #plzw, div:has(> .icon), nav\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"iframe[id^=\\\"google_ads_iframe_/\\\"], div[id^=\\\"adm-container-\\\"]\",\"action\":[\"style\",\"clip-path: circle(0) !important;\"],\"cssable\":true}]","[{\"selector\":\"#wpsafe-link, .text-center.wpsafe-top > div > h1\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#info-message\",\"tasks\":[[\"has-text\",\"ADBLOCK\"]]},{\"selector\":\"span[style]\",\"tasks\":[[\"has\",{\"selector\":\"> span[style]\",\"tasks\":[[\"has-text\",\"ADVERTISEMENT\"]]}]]}]","[{\"selector\":\".linkcontain > button\",\"tasks\":[[\"has-text\",\"Download Link\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"detectAdBlock\"]]}]","[{\"selector\":\"#btn7, #cross-snp2\",\"action\":[\"style\",\"display: block !important; margin-top: 180px !important;\"],\"cssable\":true},{\"selector\":\"#btn7, .captcha-check, .text-center.cross-top, #cross-snp2\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#rtg-snp2, #rtg-snp21\",\"tasks\":[[\"others\",\"\"]]},{\"selector\":\"#rtg-snp2, #rtg-snp21[style=\\\"display: none;\\\"]\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#original\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#continue-button\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"===\"],[\"has-text\",\"/[\\\\w\\\\W]{14000}/\"]]}]","[{\"selector\":\".slideshow__desktop-ad\",\"action\":[\"style\",\"max-height:20px\"],\"cssable\":true}]","[{\"selector\":\".swiper-slide [data-testid=\\\"topStories-cardSlider-ad\\\"]\",\"tasks\":[[\"upward\",\".swiper-slide\"]]}]","[{\"selector\":\".content.page.page-video .video-content > div[class] > div > div[class] > div[class][style^=\\\"background-image:\\\"]\",\"action\":[\"style\",\"background-image: none !important;\"],\"cssable\":true},{\"selector\":\".page-video > div.video-videos-slider ~ div[class]\",\"tasks\":[[\"matches-css\",{\"name\":\"justify-content\",\"value\":\"^center$\"}]]}]","[{\"selector\":\"span:only-child\",\"tasks\":[[\"has-text\",\"/^AD$/\"],[\"upward\",2]]}]","[{\"selector\":\".underplayer\",\"action\":[\"style\",\"min-height: initial !important;\"],\"cssable\":true},{\"selector\":\"h5\",\"tasks\":[[\"has-text\",\"Advertisement\"]]}]","[{\"selector\":\".inside-list-boxes\",\"tasks\":[[\"upward\",1]]}]","[{\"selector\":\".adstrick > .video-item\",\"action\":[\"style\",\"clear: none !important;\"],\"cssable\":true}]","[{\"selector\":\"div[class^=\\\"mikex\\\"]\",\"tasks\":[[\"upward\",1]]}]","[{\"selector\":\".MuiGrid-item div[style^=\\\"position\\\"] > div\",\"tasks\":[[\"has-text\",\"Skip Ad\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"WebAssembly\"]]}]","[{\"selector\":\"*\",\"action\":[\"style\",\"filter: none !important\"],\"cssable\":true}]","[{\"selector\":\"iframe\",\"tasks\":[[\"upward\",2]]}]","[{\"selector\":\".item:has(a[href^=\\\"https://hive.arf.dev\\\"])\",\"tasks\":[[\"upward\",\"div[class]\"]]}]","[{\"selector\":\".img_box\",\"tasks\":[[\"has-text\",\"Anzeige\"]]},{\"selector\":\"aside ins\",\"tasks\":[[\"upward\",\"aside\"]]}]","[{\"selector\":\"html > iframe[style^=\\\"display:\\\"]:not([src])\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\".block_area iframe\",\"tasks\":[[\"upward\",\".block_area\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"antiblock\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"onerror\"]]}]","[{\"selector\":\"img[alt]\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"ins.adsbygoogle\",\"action\":[\"style\",\"height: 1px !important; visibility: hidden !important;\"],\"cssable\":true}]","[{\"selector\":\"body\",\"action\":[\"style\",\"background-color: #2D2D2D;\"],\"cssable\":true}]","[{\"selector\":\"div[class^=\\\"Ad-adContainer\\\"]\",\"action\":[\"style\",\"min-height:1px!important;min-width:1px!important;\"],\"cssable\":true}]","[{\"selector\":\".loading-overlay\",\"tasks\":[[\"has-text\",\"ad\"]]}]","[{\"selector\":\"#main-bottom\",\"action\":[\"style\",\"margin-top: 164px !important;\"],\"cssable\":true}]","[{\"selector\":\"#wrapper-content\",\"action\":[\"style\",\"margin-top:0px !important\"],\"cssable\":true}]","[{\"selector\":\".post_simple\",\"tasks\":[[\"has\",{\"selector\":\".postsimple_pseudo\",\"tasks\":[[\"has-text\",\"/promo/i\"]]}]]}]","[{\"selector\":\"#app\",\"action\":[\"style\",\"display: none !important;\"],\"cssable\":true},{\"selector\":\"#app_msg\",\"action\":[\"style\",\"display: none !important;\"],\"cssable\":true},{\"selector\":\"#download-form\",\"action\":[\"style\",\"display: initial !important;\"],\"cssable\":true}]","[{\"selector\":\"#banner-mnz-topleft\",\"action\":[\"style\",\"height: 80px !important\"],\"cssable\":true}]","[{\"selector\":\".samBackground\",\"action\":[\"style\",\"background-image:none !important\"],\"cssable\":true}]","[{\"selector\":\".adsbygoogle\",\"tasks\":[[\"upward\",\".row-container\"]]}]","[{\"selector\":\".add-bx\",\"action\":[\"style\",\"height: 0px !important; min-height: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\".site-header\",\"action\":[\"style\",\"min-height: 90px !important\"],\"cssable\":true}]","[{\"selector\":\".background-cloud\",\"action\":[\"style\",\"display: none !important;\"],\"cssable\":true}]","[{\"selector\":\".placeholder\",\"action\":[\"remove-class\",\"placeholder\"]}]","[{\"selector\":\".flowplayer.is-cva .fp-controls\",\"action\":[\"style\",\"display: flex !important\"],\"cssable\":true},{\"selector\":\".flowplayer.is-cva .fp-fullscreen\",\"action\":[\"style\",\"display: flex !important\"],\"cssable\":true}]","[{\"selector\":\"#banner_overlay-postitial-video\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"#link1s-snp\",\"action\":[\"style\",\"display:block!important\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"Adblock\"]]}]","[{\"selector\":\"p\",\"tasks\":[[\"has-text\",\"Advertisement\"]]}]","[{\"selector\":\"a.download[target=\\\"_blank\\\"]:not(a[href*=\\\"ctrlv.\\\"])\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\".adsbyvli\",\"action\":[\"style\",\"opacity: 0 !important; pointer-events: none !important;\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"detect\"]]}]","[{\"selector\":\".adsbygoogle\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"#breadcrumb + .trytopnav\",\"action\":[\"style\",\"top: 36px!important;\"],\"cssable\":true},{\"selector\":\"#tryitLeaderboard + #breadcrumb ~ #container\",\"action\":[\"style\",\"top: 84px!important;\"],\"cssable\":true},{\"selector\":\"#tryitLeaderboard + .trytopnav ~ #dragbar + #container\",\"action\":[\"style\",\"top: 48px!important;\"],\"cssable\":true},{\"selector\":\"#tryitLeaderboard + .trytopnav\",\"action\":[\"style\",\"top: 0!important;\"],\"cssable\":true}]","[{\"selector\":\"[class*=\\\"css\\\"]\",\"tasks\":[[\"matches-css-before\",{\"name\":\"content\",\"pseudo\":\"before\",\"value\":\"ADVERTISEMENT\"}]]},{\"selector\":\"[href*=\\\"redirect\\\"]\",\"tasks\":[[\"upward\",\"section\"]]},{\"selector\":\"aside\",\"tasks\":[[\"has\",{\"selector\":\"div\",\"tasks\":[[\"matches-css-before\",{\"name\":\"content\",\"pseudo\":\"before\",\"value\":\"ADVERTISEMENT\"}]]}]]},{\"selector\":\"div[data-empty^=\\\"true\\\"]\",\"tasks\":[[\"matches-css-before\",{\"name\":\"content\",\"pseudo\":\"before\",\"value\":\"ADVERTISEMENT\"}]]}]","[{\"selector\":\"#video-player-track[style*=\\\"display: block\\\"]\",\"action\":[\"style\",\"visibility: visible !important;\"],\"cssable\":true}]","[{\"selector\":\".cp-modal-popup-container\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"div[class*=\\\"better-ads-listitemad\\\"]\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"#nextBTNH\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"body > header\",\"action\":[\"style\",\"top:0 !important\"],\"cssable\":true},{\"selector\":\"body.pcm-public\",\"action\":[\"style\",\"margin-top: 84px !important;\"],\"cssable\":true}]","[{\"selector\":\".ad\",\"tasks\":[[\"upward\",\".horizontal-ads-content\"]]}]","[{\"selector\":\".adBanner\",\"action\":[\"style\",\"height:1px !important\"],\"cssable\":true}]","[{\"selector\":\"#top_fold[style=\\\"display:flex !important;\\\"]\",\"action\":[\"style\",\"min-height: 0px !important; transition: all 0s ease 0s !important;\"],\"cssable\":true}]","[{\"selector\":\"section.ShopWidget\",\"tasks\":[[\"has-text\",\"Sponsored\"]]}]","[{\"selector\":\"body\",\"action\":[\"style\",\"overflow:auto !important\"],\"cssable\":true}]","[{\"selector\":\"*\",\"tasks\":[[\"matches-css-after\",{\"name\":\"content\",\"pseudo\":\"after\",\"value\":[\"Advertisement\",\"i\"]}]]}]","[{\"selector\":\"html\",\"action\":[\"style\",\"overflow-y: auto !important;\"],\"cssable\":true}]","[{\"selector\":\"#wpsafe-snp\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#wpsafe-generate\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\".code-block\",\"tasks\":[[\"has-text\",\"ADV\"]]}]","[{\"selector\":\"body\",\"action\":[\"style\",\"padding-top:0px !important\"],\"cssable\":true}]","[{\"selector\":\".nav.sticky\",\"action\":[\"style\",\"top: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\"div[id] *\",\"tasks\":[[\"has\",{\"selector\":\"> a[href]\",\"tasks\":[[\"has-text\",\"/^Try (?:D.?V.?D.?F.?a.?b|StreamFab)/\"],[\"spath\",\" + a[href]\"]]}]]}]","[{\"selector\":\"#vote-root\",\"action\":[\"style\",\"display:block !important\"],\"cssable\":true},{\"selector\":\".css-adfhee\",\"tasks\":[[\"upward\",2]]}]","[{\"selector\":\"body\",\"action\":[\"style\",\"visibility:visible !important\"],\"cssable\":true}]","[{\"selector\":\"#show_ag\",\"action\":[\"style\",\"display:block !important\"],\"cssable\":true}]","[{\"selector\":\"#wtf\",\"action\":[\"style\",\"visibility:visible!important;display:block!important;\"],\"cssable\":true}]","[{\"selector\":\"html\",\"action\":[\"style\",\"background-image:none !important\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"script\"]]}]","[{\"selector\":\"script[src$=\\\"ads.js\\\"]\",\"tasks\":[[\"upward\",\"section[id]\"]]}]","[{\"selector\":\"center > font[size=\\\"3\\\"][face=\\\"ARIAL\\\"]\",\"tasks\":[[\"has-text\",\"ADVERTISING\"],[\"upward\",\"td\"]]}]","[{\"selector\":\"#googletop\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"img[src$=\\\"/knewz_300x250.png\\\"]\",\"tasks\":[[\"upward\",\".widget_text\"]]}]","[{\"selector\":\"[href^=\\\"/click\\\"]\",\"action\":[\"remove-attr\",\"href\"]},{\"selector\":\"div[id$=\\\"_frame_content\\\"][class=\\\"wide_boxcontent\\\"]\",\"tasks\":[[\"has-text\",\"Adblock\"]]}]","[{\"selector\":\".text-center\",\"tasks\":[[\"has-text\",\"Adv\"]]}]","[{\"selector\":\"#embed\",\"action\":[\"style\",\"position: static!important; margin-top: 0!important;\"],\"cssable\":true}]","[{\"selector\":\"span\",\"tasks\":[[\"has-text\",\"Advert\"]]}]","[{\"selector\":\"body > div\",\"tasks\":[[\"shadow\",\"div\"],[\"shadow\",\"div\"],[\"has\",{\"selector\":\"\",\"tasks\":[[\"shadow\",\"div:not([class])\"],[\"has\",{\"selector\":\"\",\"tasks\":[[\"shadow\",\"ins.adsbygoogle[data-ad-client]\"]]}]]}]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"break;case\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"/eval\\\\(.+?RegExp/\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"d.createElement('script')\"]]},{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"d.createElement(\\\\'script\\\\')\"]]}]","[{\"selector\":\"a[href].Post-item:has(.Post-item-external-ad)\",\"action\":[\"style\",\"opacity: 0 !important; cursor: unset !important; pointer-events: none !important;\"],\"cssable\":true}]","[{\"selector\":\".leftMenu .menuHeadline\",\"tasks\":[[\"has-text\",\"3D\"]]}]","[{\"selector\":\"img[width=\\\"558\\\"][height=\\\"149\\\"]\",\"tasks\":[[\"upward\",\"td[style]\"]]}]","[{\"selector\":\".adsbyexoclick\",\"tasks\":[[\"upward\",1]]}]","[{\"selector\":\"[id]\",\"tasks\":[[\"matches-attr\",{\"attr\":\"id\",\"value\":\"/[a-zA-Z]{40,}/\"}]]}]","[{\"selector\":\".videos-ad__wrap\",\"action\":[\"style\",\"background-color: transparent !important\"],\"cssable\":true}]","[{\"selector\":\".home-page.main-section, html > body\",\"action\":[\"style\",\"margin-top: 0px !important;\"],\"cssable\":true},{\"selector\":\".slideMenu\",\"action\":[\"style\",\"top: -7px !important;\"],\"cssable\":true},{\"selector\":\"body\",\"action\":[\"style\",\"padding-top: 0px !important;\"],\"cssable\":true},{\"selector\":\"header\",\"action\":[\"style\",\"top: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\"html > iframe[style=\\\"display: none;\\\"]\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"u_cfg\"]]}]","[{\"selector\":\"body[style=\\\"overflow: hidden;\\\"]\",\"action\":[\"style\",\"overflow: auto!important;\"],\"cssable\":true}]","[{\"selector\":\"div[class$=\\\"-margin-Advert\\\"]\",\"action\":[\"style\",\"height:1px !important;width:1px !important;position:absolute !important;left:-3000px !important\"],\"cssable\":true}]","[{\"selector\":\"div[pb-serve-label*=\\\"advert\\\"]\",\"tasks\":[[\"upward\",2]]}]","[{\"selector\":\".thumb div.ad\",\"tasks\":[[\"upward\",\".thumb\"]]}]","[{\"selector\":\"body.desktopView.hasFooterAd .mainSection\",\"action\":[\"style\",\"margin-bottom: 0!important;padding-bottom: 0!important;\"],\"cssable\":true}]","[{\"selector\":\"a > img + div[class]:last-of-type\",\"tasks\":[[\"has-text\",\"Sponsored\"],[\"upward\",\"div[sizes]\"]]},{\"selector\":\"div[sizes] > span[class]\",\"tasks\":[[\"has-text\",\"Sponsored\"],[\"upward\",\"div[sizes]\"]]}]","[{\"selector\":\"div > .page > div > div[style]\",\"tasks\":[[\"has-text\",\"/^Advertise/i\"],[\"spath\",\" + a\"]]}]","[{\"selector\":\"[id^=\\\"Ad\\\"]\",\"tasks\":[[\"upward\",\"[style]\"]]}]","[{\"selector\":\"h1\",\"tasks\":[[\"has-text\",\"Ads\"]]}]","[{\"selector\":\".video-image > .track_outbound_post\",\"tasks\":[[\"upward\",2]]}]","[{\"selector\":\"[data-cg-ft=\\\"sponsored-listing-badge\\\"]\",\"tasks\":[[\"upward\",3]]}]","[{\"selector\":\"[id^=\\\"tp-snp\\\"]\",\"action\":[\"style\",\"display: block !important\"],\"cssable\":true}]","[{\"selector\":\".ipsType_richText a\",\"action\":[\"style\",\"color:currentcolor !important\"],\"cssable\":true},{\"selector\":\"a[data-autolink]\",\"action\":[\"style\",\"text-decoration: none !important; color: inherit !important; pointer-events: none;\"],\"cssable\":true}]","[{\"selector\":\"#fafsf2\",\"action\":[\"style\",\"display:block !important\"],\"cssable\":true}]","[{\"selector\":\"[style*=\\\"pointer-events\\\"]\",\"action\":[\"style\",\"pointer-events:auto !important\"],\"cssable\":true}]","[{\"selector\":\"script[data-cfasync]\",\"tasks\":[[\"has-text\",\"0x\"]]}]","[{\"selector\":\"div[class]\",\"tasks\":[[\"matches-css-before\",{\"name\":\"content\",\"pseudo\":\"before\",\"value\":\"Advertisements\"}]]}]","[{\"selector\":\"iframe\",\"tasks\":[[\"upward\",\"[style*=\\\"visibility\\\"]\"]]}]","[{\"selector\":\"script[language=\\\"javascript\\\"]\",\"tasks\":[[\"has-text\",\"open\"]]}]","[{\"selector\":\"#int-over\",\"action\":[\"remove\",\"\"]},{\"selector\":\"#intt-layer\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"a[href^=\\\"/visual/\\\"]\",\"tasks\":[[\"upward\",\".menu > div[id]\"]]},{\"selector\":\"div\",\"tasks\":[[\"matches-css-after\",{\"name\":\"content\",\"pseudo\":\"after\",\"value\":\"Ads\"}]]},{\"selector\":\"div[id*=\\\"myabandonware_leaderboard_btf_\\\"]\",\"tasks\":[[\"upward\",\"div[id]\"]]},{\"selector\":\"div[id*=\\\"myabandonware_medrec_right_\\\"]\",\"tasks\":[[\"upward\",\"div[id]\"]]},{\"selector\":\"style\",\"action\":[\"remove\",\"\"],\"tasks\":[[\"has-text\",\"justify-content\"]]}]","[{\"selector\":\"[id^=\\\"cookieConsent\\\"]\",\"tasks\":[[\"upward\",1]]}]","[{\"selector\":\".adsbygoogle\",\"action\":[\"style\",\"position:absolute !important;left:-3000px !important\"],\"cssable\":true}]","[{\"selector\":\"div#responseads\",\"action\":[\"style\",\"display:block !important\"],\"cssable\":true}]","[{\"selector\":\".onp-sl-content\",\"action\":[\"style\",\"display:block !important\"],\"cssable\":true}]","[{\"selector\":\".cover\",\"action\":[\"style\",\"background-image: none!important;\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"debugger\"]]}]","[{\"selector\":\"main > div > div > div[class]\",\"tasks\":[[\"matches-css\",{\"name\":\"width\",\"value\":\"^350px$\"}]]}]","[{\"selector\":\"ins.adsbygoogle\",\"tasks\":[[\"upward\",1]]}]","[{\"selector\":\"div.sacret\",\"action\":[\"style\",\"display:block !important\"],\"cssable\":true}]","[{\"selector\":\"#adsads\",\"action\":[\"style\",\"height: 9px !important;\"],\"cssable\":true},{\"selector\":\"h1\",\"tasks\":[[\"has-text\",\"/adblock|supporter/\"]]}]","[{\"selector\":\"*[style=\\\"display:none;\\\"]\",\"action\":[\"style\",\"display:block !important\"],\"cssable\":true}]","[{\"selector\":\"body:not([data-template]) a[rel=\\\"nofollow\\\"][href^=\\\"/reviyuu/b784/\\\"]\",\"action\":[\"style\",\"pointer-events: none !important;\"],\"cssable\":true}]","[{\"selector\":\".e76xF.bJlt-\",\"action\":[\"style\",\"padding-top:0px !important\"],\"cssable\":true}]","[{\"selector\":\".nav-bar\",\"action\":[\"style\",\"top:0px !important\"],\"cssable\":true},{\"selector\":\"body:not(.skybox-loaded) .topnav\",\"action\":[\"style\",\"margin-top:0px !important\"],\"cssable\":true}]","[{\"selector\":\"#playVideo\",\"action\":[\"style\",\"display: block !important; visibility: visible !important;\"],\"cssable\":true},{\"selector\":\"#player_embed\",\"action\":[\"style\",\"display: block !important; visibility: visible !important;\"],\"cssable\":true}]","[{\"selector\":\"\",\"tasks\":[[\"matches-path\",\"/\\\\/posts/\"],[\"spath\",\" div[data-comment*=\\\"gab-ad\\\"]\"],[\"has\",{\"selector\":\"span[class]\",\"tasks\":[[\"has-text\",\"Sponsored\"]]}]]},{\"selector\":\"div[class] > span[class]\",\"tasks\":[[\"has-text\",\"Sponsored\"],[\"upward\",5]]}]","[{\"selector\":\".adunitContainer\",\"tasks\":[[\"upward\",\"[data-qa-id]\"]]}]","[{\"selector\":\".jw-reset.jw-wrapper\",\"action\":[\"style\",\"z-index:2147483647 !important\"],\"cssable\":true}]","[{\"selector\":\".Yc2Sp h1, .Yc2Sp a\",\"action\":[\"style\",\"font-size: 0 !important;\"],\"cssable\":true},{\"selector\":\"header[role=\\\"banner\\\"] > div > a[href=\\\"/docs/en/relevantads\\\"]\",\"tasks\":[[\"upward\",3]]}]","[{\"selector\":\"#wpsafe-generate, #wpsafe-link, .bt-success\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#wpsafe-time\",\"tasks\":[[\"upward\",\"[id^=\\\"wpsafe-wait\\\"]\"]]}]","[{\"selector\":\"div[style^=\\\"--row-gutter\\\"] > div a[href=\\\"/brands\\\"]\",\"tasks\":[[\"upward\",\"div[style^=\\\"--row-gutter\\\"] > div\"]]}]","[{\"selector\":\".game-over-ad-legacy-component\",\"action\":[\"style\",\"height: 0 !important\"],\"cssable\":true},{\"selector\":\"body.board-layout.with-und\",\"action\":[\"style\",\"margin-right:0px!important\"],\"cssable\":true}]","[{\"selector\":\"[data-ref=\\\"saashub\\\"]\",\"tasks\":[[\"upward\",\"div.feed-item\"]]}]","[{\"selector\":\".fKZLNI\",\"action\":[\"style\",\"width:120% !important\"],\"cssable\":true}]","[{\"selector\":\"header\",\"action\":[\"style\",\"top:0 !important\"],\"cssable\":true}]","[{\"selector\":\".blur-sm\",\"action\":[\"style\",\"filter: none !important;\"],\"cssable\":true}]","[{\"selector\":\".advert-wrapper\",\"action\":[\"style\",\"clip-path: circle(0) !important;\"],\"cssable\":true}]","[{\"selector\":\".left_shadow\",\"tasks\":[[\"has-text\",\"Fast\"]]}]","[{\"selector\":\".thleft\",\"tasks\":[[\"has-text\",\"Fast\"],[\"upward\",2]]}]","[{\"selector\":\".post.has-post-thumbnail video#gump\",\"action\":[\"remove\",\"\"],\"tasks\":[[\"upward\",\".post\"]]}]","[{\"selector\":\"[id^=\\\"desig-\\\"]\",\"tasks\":[[\"has-text\",\"ANZEIGE\"]]}]","[{\"selector\":\".adsbygoogle\",\"tasks\":[[\"upward\",1]]}]","[{\"selector\":\"button\",\"action\":[\"style\",\"display: inline-block !important\"],\"cssable\":true}]","[{\"selector\":\".ad-removal-info\",\"tasks\":[[\"has-text\",\"ads\"],[\"upward\",\"[class]\"]]}]","[{\"selector\":\"#f13 > b\",\"tasks\":[[\"has-text\",\"Sponsor\"],[\"upward\",4]]}]","[{\"selector\":\"#clickfakeplayer[href]\",\"action\":[\"remove-attr\",\"href\"]}]","[{\"selector\":\"script[type]\",\"tasks\":[[\"has-text\",\"c=document.createElement\"]]}]","[{\"selector\":\".related_box:has(.adds)\",\"action\":[\"style\",\"height: 1px !important;\"],\"cssable\":true}]","[{\"selector\":\"#clickfkplayer[href]\",\"action\":[\"remove-attr\",\"href\"]}]","[{\"selector\":\".safelink-recatpcha\",\"action\":[\"style\",\"display: block !important;\"],\"tasks\":[[\"upward\",\"div\"]]},{\"selector\":\"div[style=\\\"display: none;\\\"]\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\".g-recaptcha\",\"action\":[\"style\",\"display: block !important;\"],\"tasks\":[[\"upward\",\"form > div\"]]}]","[{\"selector\":\"#cc\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\".text-center:not([id]) [id^=\\\"adngin-\\\"]\",\"tasks\":[[\"upward\",\".text-center:not([id])\"]]}]","[{\"selector\":\".page__content-header\",\"action\":[\"style\",\"height: 50px !important\"],\"cssable\":true}]","[{\"selector\":\".widget a.gofollow\",\"tasks\":[[\"upward\",\".widget\"]]}]","[{\"selector\":\"button\",\"tasks\":[[\"has-text\",\"/Watch|🎟|👉/\"]]}]","[{\"selector\":\".ad_block\",\"action\":[\"style\",\"visibility: hidden !important;\"],\"cssable\":true}]","[{\"selector\":\"[style=\\\"display:none\\\"]\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\".ad-block-popup\",\"tasks\":[[\"upward\",2]]},{\"selector\":\".native-ad-item-panel\",\"tasks\":[[\"upward\",\".vertical-view__item\"]]}]","[{\"selector\":\"[id]\",\"tasks\":[[\"has-text\",\"Provider\"]]}]","[{\"selector\":\"a[href*=\\\"&epik=\\\"]\",\"tasks\":[[\"upward\",\"[data-grid-item]\"]]}]","[{\"selector\":\"[href*=\\\"3cx\\\"]\",\"tasks\":[[\"upward\",\"tbody\"]]}]","[{\"selector\":\"[src^=\\\"blob:https://autofaucet.dutchycorp.space/\\\"]\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"[id^=\\\"wpsafe-generate\\\"], #continue\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#Page\",\"action\":[\"style\",\"right: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\"#td-outer-wrap\",\"action\":[\"style\",\"cursor: default !important\"],\"cssable\":true}]","[{\"selector\":\"body.modal-open *\",\"action\":[\"style\",\"filter: none!important;\"],\"cssable\":true}]","[{\"selector\":\".headline.wrapper\",\"tasks\":[[\"has-text\",\"Advertisement\"],[\"spath\",\" + div\"]]},{\"selector\":\".headline.wrapper\",\"tasks\":[[\"has-text\",\"Advertisement\"]]},{\"selector\":\".video-info > section\",\"tasks\":[[\"has-text\",\"Adv\"]]},{\"selector\":\"article > .headline\",\"tasks\":[[\"has-text\",\"Suggested\"],[\"spath\",\" + section\"]]},{\"selector\":\"article > .headline\",\"tasks\":[[\"has-text\",\"Suggested\"]]}]","[{\"selector\":\".main-body > div > div[class]:not([class^=\\\"item\\\"]):not([class^=\\\"article\\\"])\",\"tasks\":[[\"has-text\",\"/^Sponsored ads$/\"]]},{\"selector\":\"div[class*=\\\"article\\\"] > div:not([class]) > div[class]\",\"tasks\":[[\"has-text\",\"/^Sponsored ads$/\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"Math.imul\"]]}]","[{\"selector\":\".g-recaptcha\",\"action\":[\"style\",\"margin-top:60px !important\"],\"cssable\":true}]","[{\"selector\":\"div > [id$=\\\"_slot\\\"]\",\"tasks\":[[\"upward\",\"div\"]]}]","[{\"selector\":\"p[style=\\\"font-size:12px; text-align:center;\\\"] > span\",\"tasks\":[[\"has-text\",\"Advertisement\"]]},{\"selector\":\"section.wix-blog-hide-in-print p[style=\\\"font-size:12px; text-align:center;\\\"] > span\",\"tasks\":[[\"has-text\",\"Advertisement\"],[\"upward\",\"section\"]]}]","[{\"selector\":\"body.no-touch li.wt-list-unstyled div.v2-listing-card__info > div.wt-text-caption.wt-text-grey > span:not(.wt-icon):not([aria-role])\",\"action\":[\"remove\",\"\"],\"tasks\":[[\"matches-css\",{\"name\":\"display\",\"value\":\"^inline-block$\"}],[\"has-text\",\"/^Ad/i\"],[\"upward\",\"li\"]]},{\"selector\":\"li:not(#ad-ubo) .listing-link[href*=\\\"ref=sc_gallery\\\"]\",\"tasks\":[[\"upward\",\"li\"]]}]","[{\"selector\":\"[style][href]\",\"tasks\":[[\"upward\",\"[style]\"]]}]","[{\"selector\":\".pagebody\",\"action\":[\"style\",\"height: auto !important;\"],\"cssable\":true}]","[{\"selector\":\".adunitContainer\",\"tasks\":[[\"upward\",3]]}]","[{\"selector\":\"#main\",\"action\":[\"style\",\"bottom: 0px !important\"],\"cssable\":true}]","[{\"selector\":\"#nn_bfa_wrapper\",\"action\":[\"remove\",\"\"]},{\"selector\":\".sticky_rail600\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"script[data-cfasync]\",\"tasks\":[[\"has-text\",\"decodeURIComponent\"]]}]","[{\"selector\":\".aoa_overlay\",\"action\":[\"style\",\"height: 0px !important\"],\"cssable\":true}]","[{\"selector\":\"#btngetlink\",\"action\":[\"style\",\"display: inline-block !important\"],\"cssable\":true}]","[{\"selector\":\".HTML.widget .adsbygoogle\",\"tasks\":[[\"upward\",\".widget\"]]}]","[{\"selector\":\"div[width=\\\"300\\\"][height=\\\"250\\\"]\",\"tasks\":[[\"upward\",1]]},{\"selector\":\"div[width=\\\"728\\\"][height=\\\"90\\\"]\",\"tasks\":[[\"upward\",1]]}]","[{\"selector\":\".widget\",\"tasks\":[[\"has-text\",\"Adv\"]]}]","[{\"selector\":\"#tp-generate, [id^=\\\"tp-snp\\\"]\",\"action\":[\"style\",\"display: block !important\"],\"cssable\":true}]","[{\"selector\":\"table\",\"tasks\":[[\"has-text\",\"VPN\"]]}]","[{\"selector\":\"#colunas\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"body > p > span\",\"tasks\":[[\"has-text\",\"adblock\"]]}]","[{\"selector\":\"[id^=\\\"outbrain_widget_\\\"].OUTBRAIN[data-src]\",\"tasks\":[[\"has\",{\"selector\":\"> .ob-widget > .ob-widget-header > span.ob-grid-header-text\",\"tasks\":[[\"has-text\",\"/^MEHR AUS DEM WEB|MEHR AUS DEM NETZ|AUCH INTERESSANT$/\"]]}]]}]","[{\"selector\":\".search-page__result .listings-standout\",\"tasks\":[[\"upward\",\".search-page__result\"]]},{\"selector\":\".searchResults .product-card__ad-copy\",\"tasks\":[[\"upward\",\"li\"]]}]","[{\"selector\":\"script[data-cfasync]\",\"tasks\":[[\"has-text\",\"D4zz.\"]]}]","[{\"selector\":\"#btm-widget img[onload]\",\"tasks\":[[\"upward\",\"#btm-widget > .colombiaonesuccess > div\"]]}]","[{\"selector\":\"img[onclick]\",\"action\":[\"style\",\"display: block !important\"],\"tasks\":[[\"upward\",\".wait\"]]}]","[{\"selector\":\".show_download_links\",\"action\":[\"style\",\"display: block !important\"],\"cssable\":true}]","[{\"selector\":\".adsbygoogle\",\"action\":[\"style\",\"height: 0px !important; visibility: collapse;\"],\"cssable\":true}]","[{\"selector\":\".ssm_adunit_container\",\"tasks\":[[\"upward\",\"[id^=\\\"list_ads\\\"]\"]]}]","[{\"selector\":\"#download_link\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\".definetelynotanad\",\"tasks\":[[\"upward\",\"[class^=\\\"col-md-\\\"]\"]]}]","[{\"selector\":\".partner-banner\",\"tasks\":[[\"upward\",\"div[style]\"]]}]","[{\"selector\":\".mod-container\",\"tasks\":[[\"has-text\",\"/sponsor/i\"]]}]","[{\"selector\":\"#container\",\"action\":[\"style\",\"width:100%!important\"],\"cssable\":true},{\"selector\":\"html.can-have-sky .page-body > .section-content\",\"action\":[\"style\",\"margin-right: 0 !important;\"],\"cssable\":true},{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"adslotFilledByCriteo\"]]}]","[{\"selector\":\".glass-panel > ins.adsbygoogle\",\"action\":[\"style\",\"height: 10px !important;\"],\"cssable\":true},{\"selector\":\"[href*=\\\"sjv.io\\\"]\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"htmlAds\"]]}]","[{\"selector\":\"#dclm-blur\",\"action\":[\"style\",\"filter: none !important\"],\"cssable\":true}]","[{\"selector\":\".py-4 > p\",\"tasks\":[[\"has-text\",\"Advertisement\"],[\"upward\",1]]}]","[{\"selector\":\".TablesTitle > div:not([style=\\\"padding\\\"])\",\"action\":[\"style\",\"width: 100% !important;\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"googlesyndication\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"/adblock/i\"]]}]","[{\"selector\":\".dfp-ad-unit\",\"tasks\":[[\"upward\",1]]}]","[{\"selector\":\"#screenshots span[style=\\\"width:222px\\\"] > a[href]\",\"action\":[\"remove-class\",\"/ad/i\"]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"popMagic\"]]}]","[{\"selector\":\"[class*=\\\"MPU\\\"]\",\"action\":[\"style\",\"height: 1px !important\"],\"cssable\":true},{\"selector\":\"[id*=\\\"mpu\\\"]\",\"action\":[\"style\",\"height: 1px !important\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"\\\\\\\"admc\\\\\\\"\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"brave\"]]},{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"numberPages\"]]}]","[{\"selector\":\".logo, .blinker\",\"action\":[\"style\",\"animation: none !important;\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"afScript\"]]}]","[{\"selector\":\".adsbyvli\",\"action\":[\"style\",\"height: 1px !important; opacity: 0 !important; pointer-events: none !important;\"],\"cssable\":true}]","[{\"selector\":\".id-Page-layoutWrap, .id-SiteWrap, .id-SiteHeader-wrap\",\"action\":[\"style\",\"width: 100% !important; max-width: 100% !important;\"],\"cssable\":true}]","[{\"selector\":\".MediaStep\",\"action\":[\"style\",\"cursor: pointer !important;\"],\"cssable\":true}]","[{\"selector\":\".td-pb-span8\",\"action\":[\"style\",\"width: 100% !important;\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"chp_ads_blocker_detector\"]]}]","[{\"selector\":\"style[id$=\\\"-css\\\"]\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"article:has(a[href^=\\\"https://www.facebook.com/ads/\\\"])\",\"action\":[\"style\",\"height: 0 !important; overflow: hidden !important;\"],\"cssable\":true},{\"selector\":\"main > div div[style*=\\\"flex-direction: column;\\\"] > article > div\",\"tasks\":[[\"has\",{\"selector\":\"> div:first-child span\",\"tasks\":[[\"has-text\",\"/Anzeige|Gesponsert|Sponsored|Geborg|Maksettu kumppanuus|Sponzorováno|Sponsoreret|Χορηγούμενη|Publicidad|Sponsoroitu|Sponsorisé|Bersponsor|Sponsorizzato|広告|광고|Ditaja|Sponset|Gesponsord|Sponsorowane|Patrocinado|Реклама|Sponsrad|ได้รับการสนับสนุน|May Sponsor|Sponsorlu|赞助内容|贊助|প্রযোজিত|પ્રાયોજિત|स्पॉन्सर्ड|Sponzorirano|ಪ್ರಾಯೋಜಿತ|സ്‌പോൺസർ ചെയ്‌തത്|पुरस्‍कृत|प्रायोजित|ਪ੍ਰਾਯੋਜਿਤ|මුදල් ගෙවා ප්‍රචාරය කරන ලදි|Sponzorované|விளம்பரதாரர்கள்|స్పాన్సర్ చేసింది|Được tài trợ|Спонсорирано|Commandité|Sponsorizat|Спонзорисано/\"]]}]]}]","[{\"selector\":\"._2gSkZ\",\"action\":[\"style\",\"height: 150px !important;\"],\"cssable\":true},{\"selector\":\"header\",\"action\":[\"style\",\"top: 0 !important\"],\"cssable\":true}]","[{\"selector\":\"div[data-id] > div[data-tkid] > div[class]\",\"tasks\":[[\"has-text\",\"Sponsored\"],[\"upward\",\"div[data-id]\"]]},{\"selector\":\"span\",\"tasks\":[[\"has-text\",\"/^Ad$/\"],[\"upward\",\"div[style]\"]]}]","[{\"selector\":\"[class*=\\\"superbanner\\\"]\",\"tasks\":[[\"upward\",\"article > div:not(#main)\"]]}]","[{\"selector\":\".header\",\"action\":[\"style\",\"top: 0 !important\"],\"cssable\":true}]","[{\"selector\":\"#rightcolumn > .rbox > .rboxInner img[alt=\\\"Advertisement\\\"]\",\"tasks\":[[\"upward\",\".rbox\"]]},{\"selector\":\".wallpaperSidebarAds\",\"tasks\":[[\"upward\",\"div\"]]}]","[{\"selector\":\".overflow-hidden\",\"action\":[\"style\",\"overflow: auto !important;\"],\"cssable\":true}]","[{\"selector\":\"body.td-background-link\",\"action\":[\"style\",\"cursor:default !important;\"],\"cssable\":true}]","[{\"selector\":\"[class]\",\"tasks\":[[\"matches-css-before\",{\"name\":\"content\",\"pseudo\":\"before\",\"value\":\"ads\"}]]}]","[{\"selector\":\".container\",\"action\":[\"style\",\"width: 100% !important;\"],\"cssable\":true}]","[{\"selector\":\".ads\",\"action\":[\"style\",\"position: absolute; opacity: 0; pointer-events: none;\"],\"cssable\":true}]","[{\"selector\":\"[data-profile-url-path^=\\\"/localservices\\\"]\",\"tasks\":[[\"has-text\",\"/google screened/i\"]]}]","[{\"selector\":\".adsbygoogle\",\"action\":[\"style\",\"height: 1px !important\"],\"cssable\":true}]","[{\"selector\":\"[style]\",\"tasks\":[[\"has-text\",\"PREMIUM\"]]}]","[{\"selector\":\"button#getlink, button#gotolink\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\".adsbygoogle\",\"action\":[\"style\",\"min-height:11px!important;height:11px!important;opacity:0\"],\"tasks\":[[\"upward\",1]]},{\"selector\":\".adsbygoogle\",\"action\":[\"style\",\"width:11px;height:11px\"],\"cssable\":true}]","[{\"selector\":\"#targetdiv\",\"action\":[\"style\",\"display: inline !important;\"],\"cssable\":true}]","[{\"selector\":\"#targetdiv, #containerr\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"div[id][style=\\\"display: none;\\\"]\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"div[id$=\\\"content\\\"] img.lazy\",\"action\":[\"style\",\"opacity: 1 !important;\"],\"cssable\":true},{\"selector\":\"div[id^=\\\"post-\\\"]\",\"action\":[\"remove-class\",\"hidden_share\"]}]","[{\"selector\":\".post-content img.lazy\",\"action\":[\"style\",\"opacity: 1 !important;\"],\"cssable\":true}]","[{\"selector\":\".g-recaptcha, iframe[src*=\\\"google.com/recaptcha\\\"], .btn-captcha, .btn-black-outline\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#wpsafe-snp1\",\"action\":[\"style\",\"display: block !important\"],\"cssable\":true},{\"selector\":\"#wpsafe-snp1\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"[onclick^=\\\"showAd\\\"]\",\"action\":[\"remove-attr\",\"onclick\"]}]","[{\"selector\":\"#M1[role=\\\"main\\\"]\",\"action\":[\"style\",\"margin-top: 0px !important;\"],\"cssable\":true},{\"selector\":\"#dlcharts-list + div[class]\",\"tasks\":[[\"has\",{\"selector\":\"> h2\",\"tasks\":[[\"has-text\",\"/Gesponsert|Bezahlte Empfehlung|Anzeige/\"],[\"spath\",\" + a[href^=\\\"https://www.chip.de/downloads/\\\"]\"]]}]]},{\"selector\":\".fb > .Listing > div\",\"tasks\":[[\"has\",{\"selector\":\"> h2\",\"tasks\":[[\"has-text\",\"/Gesponsert|Bezahlte Empfehlung|Anzeige/\"],[\"spath\",\" + a[href^=\\\"https://www.chip.de/downloads/\\\"]\"]]}]]}]","[{\"selector\":\".FC__Container.min-height-250px-mu\",\"action\":[\"style\",\"max-height: 0.1px !important; height: 0.1px !important; min-height: 0px !important;\"],\"cssable\":true},{\"selector\":\":root\",\"action\":[\"style\",\"--topbanner-height-min:unset!important;--topbanner-height-max:unset!important;\"],\"cssable\":true}]","[{\"selector\":\"#G32\",\"action\":[\"style\",\"grid-template-rows: unset!important;\"],\"cssable\":true}]","[{\"selector\":\".css-1352p5e\",\"action\":[\"style\",\"height: 2400px !important;\"],\"cssable\":true},{\"selector\":\".css-1s6rfoz\",\"action\":[\"style\",\"height: 2400px !important;\"],\"cssable\":true},{\"selector\":\".css-1wm768n\",\"action\":[\"style\",\"height: 1560px !important;\"],\"cssable\":true},{\"selector\":\".css-uc3mu7\",\"action\":[\"style\",\"margin-top: 0 !important; height: 2400px !important;\"],\"cssable\":true},{\"selector\":\".gridRowPad\",\"action\":[\"style\",\"margin-top: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\".a11t--product\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\".main-content > h4 > strong\",\"tasks\":[[\"has-text\",\"Brave\"]]}]","[{\"selector\":\"[class]\",\"tasks\":[[\"matches-css-before\",{\"name\":\"content\",\"pseudo\":\"before\",\"value\":\"Advertisement\"}],[\"upward\",1]]}]","[{\"selector\":\"div > ins\",\"tasks\":[[\"upward\",\"div\"]]}]","[{\"selector\":\"#gotolink\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"two_worker_data_js\"]]}]","[{\"selector\":\".spr > .container-fluid:not([data-autopromo-name=\\\"freepik\\\"])\",\"tasks\":[[\"upward\",\".spr\"]]}]","[{\"selector\":\"#shortGoToCont.hidden\",\"action\":[\"remove-class\",\"hidden\"]},{\"selector\":\"#timerContainer > div:not(:has(#timerPercentage))\",\"action\":[\"style\",\"display: flex !important;\"],\"cssable\":true}]","[{\"selector\":\"article > [class^=\\\"tc-view\\\"] #ad-header\",\"tasks\":[[\"upward\",\"article > [class^=\\\"tc-view\\\"]\"]]}]","[{\"selector\":\"body:not(.home) #content\",\"action\":[\"style\",\"margin-top: 13px !important;\"],\"cssable\":true}]","[{\"selector\":\"#customad\",\"tasks\":[[\"upward\",\".code-block\"]]},{\"selector\":\".brxe-div > div[class=\\\"brxe-container\\\"] .adsbygoogle\",\"tasks\":[[\"upward\",\".brxe-container\"]]},{\"selector\":\"section.brxe-section > div[class=\\\"brxe-container\\\"] .adsbygoogle\",\"tasks\":[[\"upward\",\"section\"]]}]","[{\"selector\":\".lm-hide\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"/ConsoleBan|alert|AdBlocker/\"]]}]","[{\"selector\":\".banner-wrapper\",\"action\":[\"remove\",\"\"],\"tasks\":[[\"upward\",2]]},{\"selector\":\".sticky-content\",\"tasks\":[[\"has-text\",\"Rek\"]]},{\"selector\":\".sticky-content\",\"tasks\":[[\"has-text\",\"Reklama\"]]},{\"selector\":\".sticky-content\",\"tasks\":[[\"has-text\",\"klama\"]]},{\"selector\":\"[data-draggable-target]\",\"tasks\":[[\"has-text\",\"Rekl\"],[\"spath\",\":not(*:has([href*=\\\"radio\\\"]))\"]]}]","[{\"selector\":\".content3 > div[style]\",\"tasks\":[[\"has-text\",\"Advertisement\"]]}]","[{\"selector\":\".ad-zone\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\".row > [id^=\\\"sPost\\\"]\",\"action\":[\"style\",\"margin-top: 60px !important;\"],\"cssable\":true}]","[{\"selector\":\"#primary\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\".co-Widget[style=\\\"min-height: 6000px;\\\"]\",\"action\":[\"style\",\"min-height: auto !important;\"],\"cssable\":true}]","[{\"selector\":\".container > .adsbygoogle\",\"tasks\":[[\"upward\",\".container\"]]},{\"selector\":\".container > div > .adsbygoogle\",\"tasks\":[[\"upward\",\"div\"]]}]","[{\"selector\":\".channel-feed__brick .cfeed-card-contents--banner-adsense\",\"tasks\":[[\"upward\",\".channel-feed__brick\"]]}]","[{\"selector\":\".is-full .climad-badge\",\"tasks\":[[\"upward\",\".is-full\"]]}]","[{\"selector\":\"#ad-Billboard\",\"tasks\":[[\"upward\",\"[style]\"]]}]","[{\"selector\":\"[data-stack-index] > section > div > div [data-item-id] > a[link-identifier][href^=\\\"https://wrd.walmart.com\\\"]\",\"tasks\":[[\"upward\",\"section > div > div\"]]}]","[{\"selector\":\".downloadbtn\",\"action\":[\"remove-attr\",\"disabled\"]}]","[{\"selector\":\"#submitbutton[disabled]\",\"action\":[\"remove-attr\",\"disabled\"]},{\"selector\":\"a#gobutton[onclick]\",\"action\":[\"remove-attr\",\"onclick\"]}]","[{\"selector\":\"#izobrazhenie-1\",\"action\":[\"style\",\"padding-bottom: 0px !important;\"],\"cssable\":true},{\"selector\":\".group_viewport, .page__viewport\",\"action\":[\"style\",\"display: initial !important;\"],\"cssable\":true}]","[{\"selector\":\".adsbyvli\",\"action\":[\"style\",\"height: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\"ins.adsbygoogle\",\"action\":[\"style\",\"height: 1px!important;\"],\"cssable\":true}]","[{\"selector\":\".main > div.container > h2\",\"tasks\":[[\"has-text\",\"Advertisement\"]]}]","[{\"selector\":\".item > .post\",\"action\":[\"style\",\"height: auto !important;\"],\"cssable\":true},{\"selector\":\".item\",\"action\":[\"style\",\"height: auto !important;\"],\"cssable\":true}]","[{\"selector\":\".efi_enabled\",\"action\":[\"style\",\"overflow: auto !important; height: auto !important; width: auto !important; position: static !important;\"],\"cssable\":true}]","[{\"selector\":\"#main > div[class] > div div[class]\",\"tasks\":[[\"matches-css-before\",{\"name\":\"content\",\"pseudo\":\"before\",\"value\":\"^\\\"advertisement\\\"$\"}],[\"upward\",\"#main > div[class] > div\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"/htmls|google_ad_client/\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"Math\"]]}]","[{\"selector\":\"div[class] > ins.adsbygoogle\",\"tasks\":[[\"upward\",\"div[class]\"]]},{\"selector\":\"li[class] > ins.adsbygoogle\",\"tasks\":[[\"upward\",\"li[class]\"]]}]","[{\"selector\":\"div[class][data-mobid] > div[class=\\\"vm-placement\\\"][data-id]\",\"tasks\":[[\"upward\",\"div[class]\"]]}]","[{\"selector\":\"*\",\"tasks\":[[\"matches-css-before\",{\"name\":\"content\",\"pseudo\":\"before\",\"value\":\"Adv\"}]]}]","[{\"selector\":\"[data-koukoku-width]\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"body > div iframe\",\"tasks\":[[\"upward\",\"body > div\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"adsBlocked\"]]}]","[{\"selector\":\".link1\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#G32\",\"action\":[\"style\",\"grid-template-rows: unset !important;\"],\"cssable\":true}]","[{\"selector\":\"#myBtn\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"/eval[\\\\s\\\\S]*?decodeURIComponent/\"]]}]","[{\"selector\":\".dictionary-grid\",\"action\":[\"style\",\"grid-template-columns: minmax(180px,200px) minmax(400px,736px) 0 !important; grid-template-rows: 0 auto !important;\"],\"tasks\":[[\"matches-media\",\"(min-width: 1024px)\"]],\"cssable\":true},{\"selector\":\".dictionary-grid\",\"action\":[\"style\",\"grid-template-columns: minmax(180px,250px) minmax(400px,736px) 0 !important; grid-template-rows: 0 auto !important;\"],\"tasks\":[[\"matches-media\",\"(min-width: 1280px)\"]],\"cssable\":true},{\"selector\":\".dictionary-grid\",\"action\":[\"style\",\"grid-template-rows: 0 auto !important;\"],\"tasks\":[[\"matches-media\",\"(min-width: 768px)\"]],\"cssable\":true}]","[{\"selector\":\"#chapter-images div\",\"action\":[\"style\",\"padding: unset !important\"],\"cssable\":true}]","[{\"selector\":\"h3.my-4\",\"tasks\":[[\"has-text\",\"/^Advertising/\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"shouldPop\"]]}]","[{\"selector\":\"body > [class]\",\"action\":[\"style\",\"filter: none !important;\"],\"cssable\":true},{\"selector\":\"body > [id]\",\"action\":[\"style\",\"filter: none !important;\"],\"cssable\":true},{\"selector\":\"body > [id][class] > [class]\",\"tasks\":[[\"matches-css\",{\"name\":\"z-index\",\"value\":\"^2147483[0-9]{3}$\"}]]}]","[{\"selector\":\"body [class]\",\"action\":[\"style\",\"filter: none !important;\"],\"cssable\":true}]","[{\"selector\":\"div[class]\",\"tasks\":[[\"has\",{\"selector\":\"> div[class]:first-child\",\"tasks\":[[\"has-text\",\"REKLAMA\"],[\"spath\",\":not(:has(> *))\"]]}]]}]","[{\"selector\":\"\",\"tasks\":[[\"xpath\",\"//*[string-length(@href) > 1600]\"]]}]","[{\"selector\":\"div[class]\",\"tasks\":[[\"has\",{\"selector\":\"> img[src] + div > style\",\"tasks\":[[\"has-text\",\"flex: 0 0 100%\"]]}]]}]","[{\"selector\":\"div[class]\",\"tasks\":[[\"has\",{\"selector\":\"> style:first-child\",\"tasks\":[[\"has-text\",\"flex: 0 0 100%\"],[\"spath\",\" + div > div > style:first-child\"],[\"has-text\",\"flex: 0 0 100%\"],[\"spath\",\" + div\"]]}],[\"spath\",\":not(:has([data-st-area^=\\\"czyt_dalej\\\"]))\"]]}]","[{\"selector\":\"div[class*=\\\" \\\"]:has(> div:first-child > div:first-child:empty)\",\"tasks\":[[\"matches-css\",{\"name\":\"z-index\",\"value\":\"^0$\"}],[\"matches-css\",{\"name\":\"position\",\"value\":\"^relative$\"}]]}]","[{\"selector\":\"div[class*=\\\" \\\"]:has(> div:empty)\",\"tasks\":[[\"matches-css\",{\"name\":\"z-index\",\"value\":\"^0$\"}],[\"matches-css\",{\"name\":\"position\",\"value\":\"^relative$\"}]]}]","[{\"selector\":\"div[class]:has(> img[src] ~ div:empty)\",\"tasks\":[[\"matches-css\",{\"name\":\"z-index\",\"value\":\"^0$\"}],[\"matches-css\",{\"name\":\"position\",\"value\":\"^relative$\"}]]}]","[{\"selector\":\"div > h6\",\"tasks\":[[\"has-text\",\"Oferty dla Ciebie\"]]},{\"selector\":\"section > h2\",\"tasks\":[[\"has-text\",\"Oferty dla Ciebie:\"]]}]","[{\"selector\":\"#site-header\",\"action\":[\"style\",\"min-height: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\"div[class]\",\"tasks\":[[\"has\",{\"selector\":\"> img[src] + div + style\",\"tasks\":[[\"has-text\",\"flex: 0 0 100%\"]]}]]}]","[{\"selector\":\"style\",\"tasks\":[[\"has-text\",\"right:0;top:0;bottom:0;left:0;margin:auto;position:absolute;\"],[\"upward\",1]]}]","[{\"selector\":\"#bottom-sticky-container > div\",\"tasks\":[[\"matches-attr\",{\"attr\":\"class\",\"value\":\"/^[a-zA-Z]{2}$/\"}],[\"spath\",\":not([id])\"]]}]","[{\"selector\":\"*\",\"tasks\":[[\"has\",{\"selector\":\"> div:first-child:has(> div:first-child > a > img[src^=\\\"https://v.wpimg.pl/\\\"]):not([alt], [id], [width], [data-src]) + div:empty\"}]]}]","[{\"selector\":\"div\",\"tasks\":[[\"has\",{\"selector\":\"> div:only-child > * > div > .border > .container > .labelCopy\",\"tasks\":[[\"has-text\",\"REKLAMA\"]]}]]}]","[{\"selector\":\"a[href=\\\"https://www.wp.pl\\\"][data-st-area=\\\"goToSG\\\"] + div\",\"tasks\":[[\"has\",{\"selector\":\"> div > div > div\",\"tasks\":[[\"has-text\",\"REKLAMA\"]]}]]},{\"selector\":\"div\",\"tasks\":[[\"has\",{\"selector\":\"> div:first-child:has(> div:only-child > a > div:empty:only-child) + div:last-child:empty\"}]]},{\"selector\":\"div\",\"tasks\":[[\"has\",{\"selector\":\"> div:first-child:has(> iframe:only-child) + div:last-child:empty\"}]]}]","[{\"selector\":\"div\",\"tasks\":[[\"matches-css-after\",{\"name\":\"content\",\"pseudo\":\"after\",\"value\":\"R.*E.*K.*L.*A.*M.*A\"}],[\"upward\",1]]}]","[{\"selector\":\"div\",\"action\":[\"remove\",\"\"],\"tasks\":[[\"has\",{\"selector\":\"> a:first-child:has(> div:empty:only-child) + div:empty:last-child\"}]]}]","[{\"selector\":\"div\",\"tasks\":[[\"has\",{\"selector\":\"> div:first-child:has(> a:first-child > img[src^=\\\"https://v.wpimg.pl/\\\"]) + div:empty:last-child\"}]]}]","[{\"selector\":\"html, html > body\",\"action\":[\"style\",\"overflow: auto !important;\"],\"cssable\":true}]","[{\"selector\":\"#tie-body\",\"action\":[\"style\",\"background-image: none !important;\"],\"cssable\":true}]","[{\"selector\":\"[id^=\\\"div-gpt-ad\\\"]:not([style^=\\\"width: 1px; height: 1px; position: absolute; left: -10000px; top: -\\\"])\",\"action\":[\"style\",\"height: 0px !important; min-height: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"await fetch\"]]}]","[{\"selector\":\"body[style=\\\"margin-top: 90px; margin-bottom: 90px;\\\"]\",\"action\":[\"style\",\"margin-top: 0 !important; margin-bottom: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\"button[onclick^=\\\"window.open\\\"]\",\"action\":[\"remove-attr\",\"onclick\"]}]","[{\"selector\":\"#obalovydiv\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"[class^=\\\"style\\\"]\",\"tasks\":[[\"has-text\",\"Advertisement\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"/'.adsbygoogle'|text-danger|warning|Adblock|_0x/\"]]}]","[{\"selector\":\"[href*=\\\"preroll\\\"]\",\"tasks\":[[\"upward\",2]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"decodeURIComponent(escape(r))\"]]}]","[{\"selector\":\"#skip\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"adblock\"]]}]","[{\"selector\":\".fluid-close[target=\\\"_blank\\\"]\",\"action\":[\"remove-attr\",\"target\"]},{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"/popstate|popMagic/\"]]}]","[{\"selector\":\".widget-height\",\"action\":[\"style\",\"height: unset !important\"],\"cssable\":true}]","[{\"selector\":\".below-ad-wrapper\",\"action\":[\"style\",\"margin-top: 51px !important;\"],\"cssable\":true}]","[{\"selector\":\"[class^=\\\"HomepageSection\\\"]\",\"action\":[\"style\",\"grid-template-rows: unset !important;\"],\"cssable\":true}]","[{\"selector\":\"body\",\"action\":[\"remove-class\",\"top_ads_add\"]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"popUnder\"]]}]","[{\"selector\":\".entry.card div:is(#sidead, .topad)\",\"tasks\":[[\"upward\",\".entry.card\"]]}]","[{\"selector\":\"#content > form[id]:has(> center > button)\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\".modal_dialog_base\",\"tasks\":[[\"has\",{\"selector\":\"> .modal_top_header\",\"tasks\":[[\"has-text\",\"Marketing\"]]}]]},{\"selector\":\"table\",\"tasks\":[[\"has\",{\"selector\":\"> thead > .collapsableSection > td\",\"tasks\":[[\"has-text\",\"Ads\"]]}]]}]","[{\"selector\":\".pum-open-overlay\",\"action\":[\"style\",\"overflow: auto !important;\"],\"cssable\":true}]","[{\"selector\":\".mod-sidebar\",\"tasks\":[[\"has-text\",\"Advertisement\"]]},{\"selector\":\"a[href^=\\\"/out/\\\"]\",\"tasks\":[[\"upward\",1]]}]","[{\"selector\":\".result:has(.result-open-metagerkey)\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"section h6\",\"tasks\":[[\"has-text\",\"Advertising\"],[\"upward\",\"section\"]]}]","[{\"selector\":\".widget_custom_html #myVideo\",\"tasks\":[[\"upward\",\".widget_custom_html\"]]}]","[{\"selector\":\"#container\",\"action\":[\"style\",\"height: 100% !important;\"],\"cssable\":true}]","[{\"selector\":\"a.dl-link[href][onclick*=\\\"window.open\\\"]\",\"action\":[\"remove-attr\",\"href\"]},{\"selector\":\"a.dl-stub:not([href])\",\"action\":[\"style\",\"cursor: pointer !important;\"],\"cssable\":true}]","[{\"selector\":\".min-h-\\\\[250px\\\\]\",\"action\":[\"style\",\"min-height: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\".list_ads\",\"action\":[\"style\",\"height: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\".lst_ads\",\"action\":[\"style\",\"height: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\"main > div > div:empty\",\"tasks\":[[\"matches-css\",{\"name\":\"min-height\",\"value\":\"^250px$\"}],[\"matches-css\",{\"name\":\"min-width\",\"value\":\"^80%$\"}]]}]","[{\"selector\":\"div.fixed[style^=\\\"z-index:\\\"]\",\"tasks\":[[\"has-text\",\"گوشی خود را بچرخانید\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"ai_adb\"]]}]","[{\"selector\":\"a.btn-ad-iframe:not(a[href*=\\\"empire-\\\"])\",\"action\":[\"remove-attr\",\"href\"]}]","[{\"selector\":\"#timed\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"button\",\"action\":[\"remove-attr\",\"disabled\"]},{\"selector\":\"button\",\"action\":[\"remove-class\",\"hidden\"]}]","[{\"selector\":\"body > div[style]\",\"tasks\":[[\"has-text\",\"Ads\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"liedetector\"]]}]","[{\"selector\":\".ad-unit\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\".widget .adsSidebarContainer\",\"tasks\":[[\"upward\",\".widget\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"end_click\"]]}]","[{\"selector\":\":is(.owl-item, .thumb-item-flow):has(a[href^=\\\"https://www.polybuzz.ai/\\\"])\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"div[aria-label=\\\"Why this ad?\\\"]\",\"tasks\":[[\"upward\",\"[data-pla=\\\"1\\\"]\"]]}]","[{\"selector\":\".body-container\",\"action\":[\"style\",\"background-image: unset !important; cursor: auto !important;\"],\"cssable\":true},{\"selector\":\"[style*=\\\"desktop-url\\\"]\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"#header-new\",\"action\":[\"style\",\"margin-top: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\".css-1uhcmhp\",\"action\":[\"style\",\"grid-template-rows: 0 auto !important;\"],\"tasks\":[[\"matches-media\",\"(min-width: 80em)\"]],\"cssable\":true},{\"selector\":\"div > article[data-q=\\\"search-result\\\"] > a[data-q=\\\"search-result-anchor\\\"] > div > figure.listing-tile-thumbnail-image + div\",\"tasks\":[[\"has-text\",\"Featured\"],[\"upward\",\"article[data-q=\\\"search-result\\\"]\"]]}]","[{\"selector\":\"#deviantartcom_desktop-devpage-sidebar-300x250-atf\",\"tasks\":[[\"upward\",\"div[role=\\\"complementary\\\"] > div\"]]}]","[{\"selector\":\"[id^=\\\"google_ads_iframe\\\"]\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"a[href^=\\\"https://www.panda-novel.com/advertising\\\"]\",\"tasks\":[[\"upward\",\".index-swiper\"]]}]","[{\"selector\":\"#my-content\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\".modal-open\",\"action\":[\"style\",\"overflow: auto !important; padding-right: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\".serieslist > ul > li\",\"tasks\":[[\"has-text\",\"(AD)\"]]},{\"selector\":\"a[href][title^=\\\"(AD)\\\"]\",\"tasks\":[[\"upward\",\".bs\"]]}]","[{\"selector\":\".relacionados .aawp\",\"tasks\":[[\"upward\",\".relacionados\"]]},{\"selector\":\"body\",\"action\":[\"style\",\"padding-bottom: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\"a.download\",\"action\":[\"style\",\"visibility: hidden;\"],\"cssable\":true}]","[{\"selector\":\"center[style]\",\"tasks\":[[\"has-text\",\"advertisement\"]]}]","[{\"selector\":\"a[rel*=\\\"sponsored\\\"]\",\"tasks\":[[\"upward\",\".normal-page__content > div\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"clientHeight\"]]}]","[{\"selector\":\"aside\",\"action\":[\"style\",\"background: transparent !important;\"],\"cssable\":true}]","[{\"selector\":\".tweet-card .v-responsive.media-carousel-image .v-responsive__content img[alt]\",\"tasks\":[[\"not\",{\"selector\":\"\",\"tasks\":[[\"matches-attr\",{\"attr\":\"alt\",\"value\":\"/.*\\\\shttps:\\\\/\\\\/t\\\\.co\\\\/[\\\\w]{10}$/\"}]]}],[\"upward\",\".tweet-card\"]]}]","[{\"selector\":\"a img:not([src=\\\"images/main_logo_inverted.png\\\"])\",\"action\":[\"style\",\"visibility: hidden !important;\"],\"tasks\":[[\"matches-css\",{\"name\":\"height\",\"value\":\"^([2-4]{1}[0-9]{2}(\\\\.[0-9]+)?px|0px)$\"}]]},{\"selector\":\"a:has(img[src*=\\\"/download\\\"])\",\"action\":[\"style\",\"width: 300px !important; height: 300px !important; display: block !important;\"],\"cssable\":true},{\"selector\":\"a[href][target=\\\"_blank\\\"], [src^=\\\"//ad.a-ads.com/\\\"]\",\"action\":[\"style\",\"visibility:hidden !important\"],\"cssable\":true}]","[{\"selector\":\"#main_canvas > div:not(div[id^=\\\"google\\\"])\",\"action\":[\"style\",\"width: 100% !important;\"],\"cssable\":true}]","[{\"selector\":\".ad-slot-header__wrapper\",\"action\":[\"style\",\"display: none !important; top: 0 !important\"],\"cssable\":true}]","[{\"selector\":\".site-wrapper\",\"action\":[\"style\",\"opacity:1!important;visibility:visible!important\"],\"cssable\":true},{\"selector\":\"body\",\"action\":[\"style\",\"overflow:auto!important\"],\"cssable\":true}]","[{\"selector\":\"\",\"tasks\":[[\"xpath\",\"//*[(text()='Advertisement')]\"],[\"upward\",1]]}]","[{\"selector\":\"h6.text-muted\",\"tasks\":[[\"has-text\",\"Advertisement\"]]}]","[{\"selector\":\"#site-navbar-container, #site-top-nav-container\",\"action\":[\"style\",\"padding-top: 10px !important;\"],\"cssable\":true},{\"selector\":\".loadingLI\",\"tasks\":[[\"upward\",\".tncms-block\"]]}]","[{\"selector\":\".pufftext > .sponsored\",\"tasks\":[[\"upward\",3]]},{\"selector\":\".pufftext\",\"tasks\":[[\"has-text\",\"/SPONSORED/\"],[\"upward\",2]]}]","[{\"selector\":\"#content-main a[title][href*=\\\"?staticParams=\\\"]\",\"tasks\":[[\"upward\",\"span\"]]}]","[{\"selector\":\"div.bar_container\",\"tasks\":[[\"has\",{\"selector\":\"> div.bar_headline\",\"tasks\":[[\"has-text\",\"Advertising\"]]}]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"antiAdBlockerHandler\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"AdBlockEnabled\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"push\"]]}]","[{\"selector\":\"header#masthead\",\"action\":[\"style\",\"top: -110px !important;\"],\"cssable\":true}]","[{\"selector\":\"amp-iframe:has([src^=\\\"https://widget.sellwild.com\\\"])\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"div[data-controller=\\\"downloads.front.view.download\\\"] a[data-action=\\\"download\\\"][data-wait=\\\"true\\\"]\",\"action\":[\"remove-attr\",\"data-wait\"]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"/innerHTML.*appendChild/\"]]}]","[{\"selector\":\"#cnc_branding_creative_wrapper\",\"action\":[\"style\",\"min-height: 0px !important; height: 0px !important; visibility: hidden !important;\"],\"cssable\":true},{\"selector\":\".cnc-ads\",\"action\":[\"style\",\"min-height: 0px !important; height: 0px !important; visibility: hidden !important;\"],\"cssable\":true}]","[{\"selector\":\"a.box-title\",\"tasks\":[[\"has-text\",\"Ads\"]]}]","[{\"selector\":\"main\",\"action\":[\"style\",\"padding-top: 5em !important;\"],\"cssable\":true}]","[{\"selector\":\"body.pageskin\",\"action\":[\"style\",\"margin-top: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\"ins.adsbygoogle\",\"action\":[\"style\",\"height: 1px !important;\"],\"cssable\":true}]","[{\"selector\":\".downloadbtn\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"[data-testid=\\\"primaryColumn\\\"] [data-testid=\\\"cellInnerDiv\\\"] > div:has([data-testid$=\\\"-impression-pixel\\\"])\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"body\",\"action\":[\"remove-class\",\"ads-not-loaded\"]}]","[{\"selector\":\"ins.adsbygoogle\",\"action\":[\"style\",\"clip-path: circle(0) !important;\"],\"cssable\":true}]","[{\"selector\":\".mntl-leaderboard-spacer\",\"action\":[\"style\",\"min-height: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\"#taboola-alternating-below-article\",\"action\":[\"remove\",\"\"]},{\"selector\":\".banner-min-height\",\"action\":[\"remove\",\"\"]},{\"selector\":\".fixed.social-bar\",\"action\":[\"remove\",\"\"]},{\"selector\":\".mobile-banner-sticky-container\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\".su-note\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\".reward-btn\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\".reward-message\",\"action\":[\"style\",\"display: none !important;\"],\"cssable\":true}]","[{\"selector\":\"#player\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\".adhesiveHeaderAdFixed header\",\"action\":[\"style\",\"top: 0 !important;\"],\"tasks\":[[\"matches-media\",\"(min-width: 1000px)\"]],\"cssable\":true}]","[{\"selector\":\"#b3c\",\"action\":[\"style\",\"height: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\"#pageWrapper\",\"action\":[\"style\",\"display: initial !important;\"],\"cssable\":true}]","[{\"selector\":\".gooWidget\",\"action\":[\"style\",\"opacity: 0 !important; visibility: collapse !important;\"],\"cssable\":true},{\"selector\":\".google-ad-leaderboard\",\"action\":[\"style\",\"opacity: 0 !important;\"],\"cssable\":true},{\"selector\":\"[id^=\\\"adtester-container\\\"]\",\"action\":[\"style\",\"position: absolute !important;\"],\"cssable\":true},{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"document.createTextNode\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"/\\\\{delete window\\\\[/\"]]}]","[{\"selector\":\"#alert-popup\",\"action\":[\"remove\",\"\"]},{\"selector\":\".js-modal-url[data-target=\\\"#alert-popup\\\"]\",\"action\":[\"remove-attr\",\"data-target\"]}]","[{\"selector\":\".opera-container\",\"action\":[\"style\",\"visibility: collapse !important;\"],\"cssable\":true},{\"selector\":\"img[alt=\\\"Buff Banner\\\"]\",\"action\":[\"style\",\"visibility: collapse !important;\"],\"cssable\":true}]","[{\"selector\":\"body.modal-open\",\"action\":[\"style\",\"overflow: auto!important\"],\"cssable\":true}]","[{\"selector\":\".thumb-list > .video-thumb\",\"action\":[\"style\",\"margin-right: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\".bunny-button-resume\",\"action\":[\"style\",\"display: grid !important;\"],\"cssable\":true},{\"selector\":\".bunny-container\",\"action\":[\"style\",\"display: flex !important;\"],\"cssable\":true},{\"selector\":\".bunny-icon[disabled]\",\"action\":[\"remove-attr\",\"disabled\"]}]","[{\"selector\":\".table2\",\"tasks\":[[\"has-text\",\"Sponsored\"]]},{\"selector\":\"TR\",\"tasks\":[[\"has-text\",\"Stream:\"]]}]","[{\"selector\":\".adsbyvli\",\"tasks\":[[\"upward\",\"div[style^=\\\"width: 300px; height: 250px\\\"]\"]]}]","[{\"selector\":\"#js-mount-point-header.with-ad\",\"action\":[\"style\",\"min-height: auto !important\"],\"cssable\":true},{\"selector\":\"div[class^=\\\"sc-\\\"] > div[class^=\\\"sc-\\\"]:has(> div[style*=\\\"width: 728px;\\\"]:only-child > iframe[name=\\\"footer\\\"][width=\\\"728\\\"][height=\\\"90\\\"])\",\"tasks\":[[\"matches-css\",{\"name\":\"padding-bottom\",\"value\":\"^56px$\"}]]},{\"selector\":\"iframe[name=\\\"dashboard_home\\\"]\",\"tasks\":[[\"upward\",\"div[class^=\\\"sc-\\\"][span=\\\"1\\\"]\"]]},{\"selector\":\"section > div[class^=\\\"sc-\\\"]:last-child:has(> div[style*=\\\"width: 728px;\\\"]:only-child > iframe[name=\\\"footer\\\"][width=\\\"728\\\"][height=\\\"90\\\"])\",\"tasks\":[[\"matches-css\",{\"name\":\"margin-bottom\",\"value\":\"^-16px$\"}]]}]","[{\"selector\":\".Skybox--minHeight, .Skybox--minHeightBoth\",\"action\":[\"style\",\"--global-nav-v2-offset: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\"html[data-orlock-url]\",\"action\":[\"remove-attr\",\"data-orlock-url\"]}]","[{\"selector\":\"#players a[href][target=\\\"_blank\\\"]\",\"action\":[\"remove-attr\",\"/href|target/\"]},{\"selector\":\"style\",\"tasks\":[[\"has-text\",\"blink_me_ad\"],[\"upward\",2]]}]","[{\"selector\":\".ad-body\",\"action\":[\"remove\",\"\"]},{\"selector\":\".nvheader > span\",\"tasks\":[[\"has-text\",\"Advertisement\"]]}]","[{\"selector\":\"div[class][id]:not(.logo)\",\"tasks\":[[\"if-not\",\"*\"],[\"has-text\",\"/^$/\"]]}]","[{\"selector\":\".downloadLink\",\"action\":[\"style\",\"max-height: initial !important; overflow: revert !important\"],\"cssable\":true}]","[{\"selector\":\".result__ext:has([data-testid=\\\"adResult\\\"])\",\"action\":[\"style\",\"max-height: 1px !important; opacity: 0 !important; pointer-events: none !important;\"],\"cssable\":true},{\"selector\":\"div[data-testid=\\\"pam.container\\\"]\",\"action\":[\"style\",\"max-height: 1px !important; opacity: 0 !important; pointer-events: none !important;\"],\"cssable\":true}]","[{\"selector\":\"div:is(.shadow, .flex.w-full.justify-center[style=\\\"\\\"]):has(a[href=\\\"/pricing\\\"] img[alt=\\\"Please support civitai and creators by disabling adblock\\\"])\",\"action\":[\"remove\",\"\"]},{\"selector\":\"div[id][class^=\\\"mantine-\\\"].flex.relative.box-content\",\"action\":[\"style\",\"min-height: 0px !important; visibility: collapse !important; padding: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\".header\",\"action\":[\"style\",\"margin-top: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\"body[data-billboard=\\\"true\\\"]\",\"action\":[\"remove-attr\",\"data-billboard\"]}]","[{\"selector\":\"body > div[style]:not([id])\",\"action\":[\"style\",\"position: static !important; background-color: rgba(0, 0, 0, 0) !important\"],\"cssable\":true},{\"selector\":\"html, body\",\"action\":[\"style\",\"overflow: visible !important;\"],\"cssable\":true},{\"selector\":\"style\",\"action\":[\"remove\",\"\"],\"tasks\":[[\"has-text\",\".reading-content img\"]]}]","[{\"selector\":\".adsense\",\"action\":[\"style\",\"padding: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\"a[href^=\\\"https://thehackernews.uk/\\\"]\",\"tasks\":[[\"matches-attr\",{\"attr\":\"href\",\"value\":\"/https:\\\\/\\\\/thehackernews\\\\.uk\\\\/[a-zA-Z0-9]{4,}/\"}],[\"spath\",\":not([href*=\\\"-\\\"]):not([class*=\\\"button\\\"]):not([class*=\\\"latest\\\"])\"]]}]","[{\"selector\":\"[data-pid^=\\\"ad-\\\"]\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\".mb32\",\"tasks\":[[\"has-text\",\"Advertisement\"]]}]","[{\"selector\":\".cmplz-blocked-content-container\",\"action\":[\"remove-class\",\"cmplz-blocked-content-container\"]}]","[{\"selector\":\".email-adblck-outline\",\"action\":[\"remove\",\"\"]},{\"selector\":\".email-open-read.email-open\",\"action\":[\"style\",\"display:flex !important\"],\"cssable\":true}]","[{\"selector\":\"#openLinks\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"main > div > [id].scroll-mt-20\",\"tasks\":[[\"has\",{\"selector\":\".items-center + div\",\"tasks\":[[\"has-text\",\"/^Sponsored$/\"]]}]]}]","[{\"selector\":\"div[class*=\\\"ads\\\"]\",\"tasks\":[[\"has-text\",\"/Advertisement/i\"]]}]","[{\"selector\":\"[href*=\\\"?key\\\"][target=\\\"_blank\\\"]\",\"action\":[\"remove-attr\",\"href\"]}]","[{\"selector\":\"[id=\\\"aswift_0_host\\\"], [id=\\\"aswift_1_host\\\"], [id=\\\"aswift_2_host\\\"], [id=\\\"aswift_3_host\\\"], [id=\\\"aswift_4_host\\\"], [id=\\\"aswift_5_host\\\"]\",\"action\":[\"style\",\"opacity: 0 !important; pointer-events: none !important;\"],\"cssable\":true}]","[{\"selector\":\"div[tabindex] > button\",\"tasks\":[[\"has-text\",\"Buy $\"]]}]","[{\"selector\":\".widget_text\",\"tasks\":[[\"has-text\",\"Advertisement\"]]}]","[{\"selector\":\".vjs-control-bar\",\"action\":[\"style\",\"display: flex !important;\"],\"cssable\":true}]","[{\"selector\":\".tjp-single__content-ads\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\".sponsorship\",\"action\":[\"remove-class\",\"sponsorship\"]}]","[{\"selector\":\"body[data-scroll-locked]\",\"action\":[\"remove-attr\",\"data-scroll-locked\"]},{\"selector\":\"body[style=\\\"pointer-events: none;\\\"]\",\"action\":[\"style\",\"pointer-events: auto !important;\"],\"cssable\":true}]","[{\"selector\":\"[data-popunder-enabled]\",\"action\":[\"remove-attr\",\"data-popunder-enabled\"]}]","[{\"selector\":\".article_content > [class] > [class]:has(.iframe_embed_container)\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"header.elevation-3\",\"action\":[\"style\",\"top: 0px !important;\"],\"cssable\":true},{\"selector\":\"main\",\"action\":[\"style\",\"--v-layout-top: 64px !important;\"],\"cssable\":true}]","[{\"selector\":\"body\",\"action\":[\"style\",\"overflow: auto !important; position: initial !important;\"],\"cssable\":true}]","[{\"selector\":\"header.intro\",\"action\":[\"style\",\"margin-bottom: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\".js-side-ads-movie-container\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\".preShell\",\"action\":[\"style\",\"height: 0 !important;\"],\"cssable\":true},{\"selector\":\".zad.billboard\",\"action\":[\"style\",\"min-height: 1px !important;\"],\"cssable\":true},{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"iframeTestTimeMS\"]]}]","[{\"selector\":\"body\",\"action\":[\"style\",\"background-image: unset !important; cursor: auto !important;\"],\"cssable\":true}]","[{\"selector\":\"#header-collapse-trigger\",\"action\":[\"style\",\"top: 0 !important; margin-top: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\"\",\"tasks\":[[\"matches-path\",\"/^\\\\/($|abss\\\\/)/\"],[\"spath\",\" .postContent a[href^=\\\"/\\\"]:not([href*=\\\"/forum/\\\"])\"],[\"matches-attr\",{\"attr\":\"href\",\"value\":\"/^\\\\/[-a-z]+\\\\?[a-z]{2,}=/\"}]]},{\"selector\":\"\",\"tasks\":[[\"matches-path\",\"/^\\\\/($|abss\\\\/)/\"],[\"spath\",\" a:is([href^=\\\"/\\\"], [href*=\\\"audiobookbay.lu/\\\"])\"],[\"matches-attr\",{\"attr\":\"href\",\"value\":\"/(^|audiobookbay\\\\.lu)\\\\/[-a-z0-9]+$/\"}],[\"spath\",\" img\"]]}]","[{\"selector\":\"\",\"action\":[\"style\",\"background: none !important;\"],\"tasks\":[[\"not\",{\"selector\":\"\",\"tasks\":[[\"matches-path\",\"/amafav/\"]]}],[\"spath\",\" .image_box[style*=\\\"amazon.co\\\"]\"]]},{\"selector\":\"\",\"tasks\":[[\"not\",{\"selector\":\"\",\"tasks\":[[\"matches-path\",\"/amafav/\"]]}],[\"spath\",\" a[href^=\\\"https://www.amazon.co.jp\\\"][target=\\\"_blank\\\"]\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"/eval\\\\(.+?decodeURIComponent/\"]]}]","[{\"selector\":\"script[data-cfasync]\",\"tasks\":[[\"has-text\",\"popundersPerIP\"]]}]","[{\"selector\":\"a[href^=\\\"https://skinrave.gg/rewards?\\\"]\",\"action\":[\"style\",\"height: 0px !important; margin-bottom: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\".Page-body[data-header-hat=\\\"true\\\"] .Page-header\",\"action\":[\"style\",\"top: 0px !important;\"],\"cssable\":true},{\"selector\":\".Page-body[data-header-hat=\\\"true\\\"]\",\"action\":[\"style\",\"padding-top: var(--headerHeight) !important;\"],\"cssable\":true}]","[{\"selector\":\"#trd-header\",\"action\":[\"style\",\"top: 0 !important;\"],\"cssable\":true},{\"selector\":\"body[data-pushdown-enabled=\\\"true\\\"]\",\"action\":[\"style\",\"margin-top: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\"#header-adv-banner\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\".main-header\",\"action\":[\"style\",\"top: 0 !important\"],\"cssable\":true}]","[{\"selector\":\"a[download-button]\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#o-site-hr__leaderboard-wallpaper.u-show-for-xlarge\",\"action\":[\"remove\",\"\"]},{\"selector\":\"[data-ad-name]\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"html\",\"action\":[\"style\",\"background-image: none !important;\"],\"cssable\":true}]","[{\"selector\":\"div[id^=\\\"leading_video_player_autoplay_\\\"][id$=\\\"_main_wrapper\\\"]\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"a[href]#clickfakeplayer\",\"action\":[\"remove-attr\",\"href\"]}]","[{\"selector\":\"[id^=\\\"rewarded_ad_\\\"]:not(#rewarded_ad_blocker)\",\"action\":[\"style\",\"display: block !important; visibility: visible !important;\"],\"cssable\":true}]","[{\"selector\":\".sidebar-tabs-panels\",\"action\":[\"style\",\"max-height: 700px !important;\"],\"cssable\":true}]","[{\"selector\":\"[class*=\\\"has-interstitial-ads\\\"]\",\"action\":[\"remove-class\",\"/^has-interstitial-ads/\"]},{\"selector\":\"body.has-interstitial-ads .has-interstitial-ads-page, body.has-interstitial-ads .has-interstitial-ads-page *\",\"action\":[\"style\",\"visibility: visible !important;\"],\"cssable\":true}]","[{\"selector\":\"body::before\",\"action\":[\"style\",\"background: none !important;\"],\"cssable\":true},{\"selector\":\"html\",\"action\":[\"style\",\"cursor: auto !important;\"],\"cssable\":true}]","[{\"selector\":\".header\",\"action\":[\"style\",\"top: 0px !important;\"],\"cssable\":true},{\"selector\":\"h1\",\"action\":[\"style\",\"margin-top:20px !important;\"],\"cssable\":true},{\"selector\":\"main[role=\\\"main\\\"]\",\"action\":[\"style\",\"margin-top:30px !important;\"],\"cssable\":true}]","[{\"selector\":\".header, .leaflet-top.leaflet-left\",\"action\":[\"style\",\"top: 0 !important;\"],\"cssable\":true},{\"selector\":\".map\",\"action\":[\"style\",\"top: 52px !important;\"],\"cssable\":true}]","[{\"selector\":\"main div.MuiBox-root > span.MuiTypography-subtitle2\",\"tasks\":[[\"has-text\",\"Advertisement\"],[\"upward\",1]]}]","[{\"selector\":\".play-Imagemaker\",\"action\":[\"style\",\"height: 100% !important;\"],\"cssable\":true}]","[{\"selector\":\".vjs-poster-onscreen\",\"action\":[\"style\",\"visibility: hidden !important;\"],\"cssable\":true}]","[{\"selector\":\"#disqus_thread\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"body::after\",\"action\":[\"style\",\"background: unset !important;\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"/history\\\\.pushState/\"]]}]","[{\"selector\":\"div[class=\\\"alert alert-info m-0 p-0\\\"]\",\"tasks\":[[\"has-text\",\"/uBlock|AdGuard|advertisments/i\"]]}]","[{\"selector\":\"p.chapter_content\",\"action\":[\"style\",\"display: block !important; visibility: visible !important; opacity: 1 !important; transform: none !important;\"],\"cssable\":true}]","[{\"selector\":\"body::before\",\"action\":[\"style\",\"background-image: unset !important;\"],\"cssable\":true}]","[{\"selector\":\".cNDPHQ, .fKCJyZ\",\"action\":[\"style\",\"top: 0px !important; transform: unset !important;\"],\"cssable\":true}]","[{\"selector\":\"div[class*=\\\"styles_withAd\\\"]\",\"action\":[\"style\",\"padding-top: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\".p-pageWrapper\",\"action\":[\"style\",\"margin-bottom: 0px !important;\"],\"cssable\":true},{\"selector\":\"a.link.link--external[href][data-proxy-href]\",\"action\":[\"remove-attr\",\"data-proxy-href\"]}]","[{\"selector\":\".ads_horizontal_reader\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"#top_ad_container + div\",\"action\":[\"style\",\"padding-top: 4rem !important;\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"NREUM\"]]}]","[{\"selector\":\"[data-aop=\\\"stripe.sponsored.navigation_stripenavigation\\\"]\",\"tasks\":[[\"upward\",2]]},{\"selector\":\"[data-aop=\\\"stripe.store.navigation_stripenavigation\\\"]\",\"tasks\":[[\"upward\",2]]}]","[{\"selector\":\"[src^=\\\"assets/bn\\\"]\",\"tasks\":[[\"upward\",\"[style]\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"g02.\"]]}]","[{\"selector\":\"#play_button\",\"action\":[\"style\",\"display:block!important;\"],\"cssable\":true},{\"selector\":\"a.button-link.mybutton\",\"tasks\":[[\"has-text\",\"Play\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"decodeURIComponent\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"return a.split\"]]}]","[{\"selector\":\"div[wire\\\\:click=\\\"watching\\\"]\",\"action\":[\"style\",\"display: flex !important;\"],\"cssable\":true}]","[{\"selector\":\"a[id^=\\\"download-btn\\\"]\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\".ue-app-container\",\"action\":[\"style\",\"margin-top: 60px !important;\"],\"cssable\":true},{\"selector\":\"[class^=\\\"Header_headerContainer\\\"]\",\"action\":[\"style\",\"top: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\"body > #external_container\",\"action\":[\"style\",\"height:100% !important\"],\"cssable\":true},{\"selector\":\"body\",\"action\":[\"style\",\"margin:0 !important\"],\"cssable\":true}]","[{\"selector\":\"[href=\\\"/advertise\\\"]\",\"tasks\":[[\"upward\",1]]}]","[{\"selector\":\".downloadbtn\",\"action\":[\"style\",\"display: block !important\"],\"cssable\":true}]","[{\"selector\":\"div\",\"tasks\":[[\"has\",{\"selector\":\"+ script\",\"tasks\":[[\"has-text\",\"challenge\"]]}],[\"spath\",\":has(a :is(img[src*=\\\"/\\\"][src*=\\\"_\\\"][alt], [style]))\"]]},{\"selector\":\"div[id]:has(> [data-freestar-ad])\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\".sticky ~ header\",\"action\":[\"style\",\"top: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\".m-188zyzr\",\"tasks\":[[\"matches-css\",{\"name\":\"width\",\"value\":\"^728px$\"}]]},{\"selector\":\"span\",\"tasks\":[[\"has-text\",\"Advertisement\"],[\"upward\",3]]}]","[{\"selector\":\"a.setpopupcookie[href^=\\\"get/video/\\\"]\",\"action\":[\"remove-attr\",\"href\"]}]","[{\"selector\":\"a[href][target^=\\\"_blank\\\"]\",\"action\":[\"style\",\"pointer-events:none!important\"],\"cssable\":true}]","[{\"selector\":\"[data-ads_url]\",\"action\":[\"remove-attr\",\"data-ads_url\"]}]","[{\"selector\":\"#main-content\",\"action\":[\"style\",\"margin-top: 125px !important;\"],\"cssable\":true}]","[{\"selector\":\".navigation--has-subnav\",\"action\":[\"style\",\"top:0 !important\"],\"cssable\":true}]","[{\"selector\":\"#claimform\",\"action\":[\"style\",\"display:block !important\"],\"cssable\":true}]","[{\"selector\":\"style\",\"action\":[\"remove\",\"\"],\"tasks\":[[\"has-text\",\".unlockr-no-scroll\"]]}]","[{\"selector\":\".azz_div\",\"action\":[\"style\",\"height: unset !important;\"],\"cssable\":true}]","[{\"selector\":\"#Header\",\"action\":[\"style\",\"top: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\".site-header\",\"action\":[\"style\",\"top: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\".min-h-\\\\[184px\\\\]\",\"action\":[\"style\",\"min-height: 0 !important;\"],\"cssable\":true},{\"selector\":\"div[class^=\\\"Tabs_tabs__\\\"]\",\"action\":[\"style\",\"top: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\"html\",\"action\":[\"style\",\"--bottom-banner-height: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\".video-list-content\",\"action\":[\"remove-class\",\"with-happy\"]}]","[{\"selector\":\"html::before\",\"action\":[\"style\",\"content: ' ⚠️ این وبسایت توسط جامعهٔ PersianBlocker یک وبسایت ضدکاربر تشخیص داده شده است؛ یعنی با جلوگیری از استفاده از افزونه‌های ضدتبلیغات، آزادی شماره صفرم شما (هر کاربر باید آزادی اینکه چه چیز را ببیند یا نبیند داشته باشد) را محدود کرده است. پیشنهاد می‌شود از وبسایت‌های جایگزین استفاده کنید. PersianBlocker 🄯 ⚠️ ' !important; color: #1E88E5 !important; font-weight: bold !important; font-size: x-large !important; overflow: visible !important; z-index: 856985698569 !important; position: fixed !important; background-color: white !important; border: 8px solid red !important; border-radius: 12px !important; padding: 1em !important;\"],\"cssable\":true}]","[{\"selector\":\".sticky ~ header\",\"action\":[\"style\",\"top: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\"#Sidebar ~ #Content:has(.adsbygoogle)\",\"action\":[\"style\",\"margin-right: 0 !important\"],\"cssable\":true},{\"selector\":\"#wb_right:has(.adsbygoogle)\",\"action\":[\"style\",\"right: 0 !important\"],\"cssable\":true}]","[{\"selector\":\"body > #ad-novelpia\",\"action\":[\"style\",\"display: block !important; visibility: visible !important; opacity: 1 !important; width: 1px !important; height: 1px !important;\"],\"cssable\":true}]","[{\"selector\":\"main\",\"action\":[\"style\",\"margin-top: 10px !important\"],\"cssable\":true}]","[{\"selector\":\"a[onclick^=\\\"trackURL\\\"]\",\"action\":[\"remove-attr\",\"onclick\"]},{\"selector\":\"a[onmousedown^=\\\"return enc(this,'https://track.rediff.com\\\"]\",\"action\":[\"remove-attr\",\"onmousedown\"]}]","[{\"selector\":\"a.outbound[data-outbound-url]\",\"action\":[\"remove-attr\",\"data-outbound-url\"]}]","[{\"selector\":\"#main a[href][data-sb^=\\\"/url?\\\"]\",\"action\":[\"remove-attr\",\"data-sb\"]}]","[{\"selector\":\"html > head > :is([name=\\\"canonical\\\"], [rel=\\\"canonical\\\"]):not([content*=\\\"/details/\\\"])\",\"tasks\":[[\"upward\",1],[\"spath\",\" > script[src*=\\\"optimizely\\\"]\"]]}]","[{\"selector\":\"a[href][data-link-out]\",\"action\":[\"remove-attr\",\"data-link-out\"]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"vglnk\"]]}]","[{\"selector\":\".login-page\",\"action\":[\"style\",\"-webkit-animation: none !important\"],\"cssable\":true}]","[{\"selector\":\".icon_animation samp\",\"action\":[\"style\",\"animation: none !important;\"],\"cssable\":true}]"];
31
- const argsSeqs = [0,1,2,3,-4,373,-5,373,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,-24,25,24,26,27,28,29,-29,335,-29,346,-29,-654,-657,-658,-661,-670,-672,673,-29,-654,-657,-658,-661,672,-29,-654,-657,-658,-660,-661,-662,-663,673,-29,-654,-657,-658,-661,673,-29,-654,-657,658,-29,-654,-657,-658,-659,661,-29,-654,-657,-658,-660,-662,-668,673,-29,-654,-657,666,-29,-654,-657,-660,661,-29,-654,-657,-658,-659,-662,667,-29,-654,-657,-658,659,-29,-654,-657,-658,-659,662,-29,-654,-657,662,-29,-654,658,-29,645,-29,793,30,31,32,33,34,-35,36,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,-58,-81,84,59,60,61,-62,63,62,63,64,65,66,67,68,-69,116,70,71,72,73,74,75,76,77,78,79,80,-81,82,-83,84,85,86,87,-88,89,-88,90,91,92,-93,190,93,-93,221,-93,382,-93,563,94,95,96,97,98,99,100,101,102,-102,170,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,-120,568,121,122,123,124,-125,771,125,126,127,128,129,130,131,132,133,134,135,-136,758,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,-158,159,159,-159,204,160,161,162,163,-164,165,-164,168,164,166,167,169,171,172,173,174,-175,891,176,177,178,179,180,181,182,183,-184,185,-185,186,187,188,189,191,192,193,194,-194,205,195,196,197,198,199,200,201,202,203,206,207,-207,497,208,209,210,211,-212,213,212,-212,504,-212,552,-212,250,214,215,216,217,218,219,220,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,-245,872,246,247,248,-248,267,249,-250,251,-250,283,250,-250,295,-250,345,-250,-412,525,-250,412,252,-252,348,253,-253,308,254,-254,-259,260,255,256,-256,257,258,-259,301,-261,262,-262,317,-263,371,264,-265,371,266,268,269,270,271,272,273,274,275,-276,278,276,-276,296,-276,287,-276,518,-276,608,-276,638,277,279,280,281,282,-283,333,284,285,286,287,288,289,290,-291,326,292,293,294,297,298,299,300,302,-303,304,-303,327,304,-304,321,305,-305,306,307,309,-309,311,310,-311,312,313,314,315,316,318,319,320,321,322,-323,324,324,325,326,328,329,330,331,332,334,335,336,337,338,339,340,341,342,343,344,347,348,349,350,351,352,353,354,355,-356,357,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,374,375,376,377,378,379,380,381,383,384,385,386,387,388,389,390,-390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,-411,412,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,-445,564,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,498,499,500,501,502,503,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,-542,543,542,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,565,566,567,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,-596,597,598,599,600,601,602,603,-603,647,604,605,606,607,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,-641,642,642,643,644,645,646,648,649,650,651,652,653,-655,-656,671,-655,656,655,657,658,660,661,-661,668,662,-662,664,665,668,669,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,759,760,761,762,763,764,765,766,767,768,769,770,-770,841,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,-813,853,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891];
32
- const hostnamesMap = new Map([["aternos.org",1],["poophq.com",2],["veev.to",2],["0cbcq8mu.com",3],["2cf0xzdu.com",3],["4k2h4w04.xyz",3],["a6iqb4m8.xyz",3],["afl3ua5u.xyz",3],["jmzkzesy.xyz",3],["dogdrip.net",4],["infinityfree.com",6],["smsonline.cloud",8],["07c225f3.online",9],["content-loader.com",9],["css-load.com",9],["html-load.com",9],["img-load.com",9],["bing.com",10],["orange.fr",11],["drstevenlin.com",12],["yts.*",12],["romaniataramea.com",12],["straatosphere.com",12],["discussingfilm.net",12],["rmweb.co.uk",12],["apnews.com",13],["carbuzz.com",14],["~ebay.com",15],["los40.com",16],["reuters.com",17],["begadistrictnews.com.au",18],["bendigoadvertiser.com.au",18],["goulburnpost.com.au",18],["maitlandmercury.com.au",18],["newcastleherald.com.au",18],["examiner.com.au",19],["theadvocate.com.au",19],["thecourier.com.au",19],["~praxistipps.chip.de",20],["hero-magazine.com",21],["digg.com",22],["autoblog.com",23],["researchgate.net",24],["~uschovna.cz",25],["uschovna.cz",26],["kitguru.net",28],["vladan.fr",28],["commands.gg",28],["stardewids.com",28],["unito.life",29],["ilbianconero.com",30],["profit.ro",31],["walletinvestor.com",32],["palatifini.it",32],["dmzj.com",32],["leechpremium.link",32],["beautypackaging.com",32],["coatingsworld.com",32],["contractpharma.com",32],["happi.com",32],["inkworldmagazine.com",32],["labelandnarrowweb.com",32],["mpo-mag.com",32],["nutraceuticalsworld.com",32],["odtmag.com",32],["printedelectronicsnow.com",32],["4j.com",32],["cinema.maalaimalar.com",32],["publish0x.com",32],["fansonlinehub.com",32],["hotmediahub.com",32],["terabox.fun",32],["teralink.me",32],["terashare.me",32],["teraearn.com",32],["techishant.in",33],["aman-dn.blogspot.com",35],["cyberlynews.com",32],["quizrent.com",32],["hindustantimes.com",32],["myflixer.*",32],["advertiserandtimes.co.uk",32],["primeos.in",32],["moviesjoy.*",32],["sportstiger.com",32],["eltiempo.es",32],["tribuna.com",32],["vuinsider.com",32],["wp.pl",37],["money.pl",45],["o2.pl",51],["parenting.pl",60],["pudelek.pl",66],["autokult.pl",70],["gadzetomania.pl",70],["fotoblogia.pl",70],["komorkomania.pl",70],["polygamia.pl",70],["abczdrowie.pl",76],["benchmark.pl",84],["kafeteria.pl",88],["pysznosci.pl",93],["dobreprogramy.pl",100],["genialne.pl",105],["autocentrum.pl",111],["jastrzabpost.pl",105],["deliciousmagazine.pl",115],["review.firstround.com",32],["truthsocial.com",32],["schools.snap.app",32],["linkneverdie.net",32],["carbonite.co.za",118],["petri.com",32],["beaumontenterprise.com",120],["bigrapidsnews.com",120],["ctinsider.com",120],["ctpost.com",120],["darientimes.com",120],["expressnews.com",120],["greenwichtime.com",120],["houstonchronicle.com",120],["lmtonline.com",120],["manisteenews.com",120],["michigansthumb.com",120],["middletownpress.com",120],["milfordmirror.com",120],["mrt.com",120],["myjournalcourier.com",120],["ncadvertiser.com",120],["newstimes.com",120],["nhregister.com",120],["ourmidland.com",120],["registercitizen.com",120],["sfchronicle.com",120],["sheltonherald.com",120],["stamfordadvocate.com",120],["theheraldreview.com",120],["thehour.com",120],["theintelligencer.com",120],["theridgefieldpress.com",120],["thetelegraph.com",120],["timesunion.com",120],["trumbulltimes.com",120],["wiltonbulletin.com",120],["yourconroenews.com",120],["cybernews.com",32],["cyberstumble.com",122],["gigantti.fi",123],["kingarthurbaking.com",124],["~job.mt.de",125],["~job.nw.de",125],["beckershospitalreview.com",126],["thequint.com",127],["prepostseo.com",129],["novelgames.com",130],["tcsjerky.com",131],["~instagram.com",132],["gamingbible.com",133],["eitb.eus",134],["riteaid.com",135],["radiox.co.uk",136],["itmedia.co.jp",137],["bellinghamherald.com",138],["bnd.com",138],["bradenton.com",138],["centredaily.com",138],["charlotteobserver.com",138],["flkeysnews.com",138],["fresnobee.com",138],["heraldonline.com",138],["heraldsun.com",138],["idahostatesman.com",138],["islandpacket.com",138],["kansas.com",138],["kansascity.com",138],["kentucky.com",138],["ledger-enquirer.com",138],["macon.com",138],["mahoningmatters.com",138],["mcclatchydc.com",138],["mercedsunstar.com",138],["miamiherald.com",138],["modbee.com",138],["myrtlebeachonline.com",138],["newsobserver.com",138],["sacbee.com",138],["sanluisobispo.com",138],["star-telegram.com",138],["sunherald.com",138],["thestate.com",139],["variety.com",140],["mediaite.com",141],["muropaketti.com",142],["jayisgames.com",143],["scotsman.com",144],["brightygames.com",145],["yoho.games",145],["sisigames.com",146],["decathlon.in",147],["metastats.net",148],["goku.sx",149],["eksisozluk.com",150],["indiatimes.com",151],["abcam.com",154],["buytesmart.com",155],["vidaextra.com",156],["www.reddit.com",157],["new.reddit.com",159],["sh.reddit.com",160],["www.al.com",161],["www.cleveland.com",161],["www.lehighvalleylive.com",161],["www.masslive.com",161],["www.mlive.com",161],["www.nj.com",161],["www.oregonlive.com",161],["www.pennlive.com",161],["www.silive.com",161],["www.syracuse.com",161],["sklep.trzynastkaplus.pl",162],["reclameaqui.com.br",163],["gifmagic.com",164],["lastampa.it",165],["nytimes.com",166],["typingtest.com",168],["gazzetta.gr",169],["steamidfinder.com",170],["abeautifuldominion.com",171],["some.porn",172],["play.diziyou1.com",173],["play.diziyou2.com",173],["play.diziyou3.com",173],["play.diziyou4.com",173],["play.diziyou5.com",173],["play.diziyou6.com",173],["play.diziyou7.com",173],["play.diziyou8.com",173],["play.diziyou9.com",173],["play.diziyou10.com",173],["play.diziyou11.com",173],["play.diziyou12.com",173],["play.diziyou13.com",173],["play.diziyou14.com",173],["play.diziyou15.com",173],["play.diziyou16.com",173],["play.diziyou17.com",173],["play.diziyou18.com",173],["play.diziyou19.com",173],["play.diziyou20.com",173],["play.diziyou21.com",173],["play.diziyou22.com",173],["play.diziyou23.com",173],["play.diziyou24.com",173],["play.diziyou25.com",173],["play.diziyou26.com",173],["play.diziyou27.com",173],["play.diziyou28.com",173],["play.diziyou29.com",173],["play.diziyou30.com",173],["play.diziyou31.com",173],["play.diziyou32.com",173],["play.diziyou33.com",173],["play.diziyou34.com",173],["play.diziyou35.com",173],["play.diziyou36.com",173],["play.diziyou37.com",173],["play.diziyou38.com",173],["play.diziyou39.com",173],["play.diziyou40.com",173],["play.diziyou41.com",173],["play.diziyou42.com",173],["play.diziyou43.com",173],["play.diziyou44.com",173],["play.diziyou45.com",173],["play.diziyou46.com",173],["play.diziyou47.com",173],["play.diziyou48.com",173],["play.diziyou49.com",173],["play.diziyou50.com",173],["youtube.com",174],["tvspielfilm.de",175],["sport1.de",176],["pornhub.*",177],["economictimes.indiatimes.com",178],["samayam.com",179],["m.economictimes.com",181],["m.timesofindia.com",183],["aranzulla.it",184],["uol.com.br",185],["businesstoday.in",186],["indiatoday.in",188],["intoday.in",188],["facebook.com",190],["facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion",190],["web.facebook.com",191],["www.facebook.com",191],["ndtv.com",192],["investing.com",194],["greensboro.com",194],["photobucket.com",195],["yusepjaelani.blogspot.com",194],["web2.0rechner.de",194],["web2.0calc.*",194],["beermoneyforum.com",197],["streamingcommunity.*",199],["alliptvlinks.com",194],["bitchute.com",194],["wetteronline.*",201],["m.aajtak.in",202],["amazon.*",203],["web.de",204],["golem.de",205],["bild.de",206],["usatoday.com",207],["quora.com",208],["gamestorrents.*",209],["gogoanimes.*",209],["limetorrents.*",210],["piratebayz.*",209],["mediafire.com",212],["rule34.xxx",213],["popculture.com",214],["mind42.com",215],["elmundo.es",216],["hltv.org",217],["primewire.*",218],["torrentz2.*",219],["torlock.*",220],["torlock2.*",220],["wunderground.com",221],["mylink.*",222],["my1ink.*",222],["myl1nk.*",222],["myli3k.*",222],["freebeacon.com",223],["chan.sankakucomplex.com",224],["nytimes3xbfgragh.onion",225],["cooking.nytimes.com",226],["userupload.*",227],["animepahe.*",228],["kwik.*",228],["ouo.*",228],["urlpay.net",228],["newtorrentgame.com",228],["kropic.com",228],["hpaudiobooks.*",228],["xxxmax.net",228],["ebookbb.com",228],["alexsports.*",228],["poscitech.*",229],["sportsonline.*",230],["yts.mx",232],["imgtaxi.com",233],["hqq.*",234],["waaw.*",234],["alrincon.com",235],["1337x.*",236],["x1337x.*",236],["1337x.unblock2.xyz",238],["1337x.unblocked.*",238],["1337x.unblockit.*",238],["pussyspace.com",239],["pussyspace.net",239],["tnaflix.com",240],["stomp.straitstimes.com",241],["feet9.com",242],["mylust.com",243],["pixhost.*",244],["nme.com",245],["idealhome.co.uk",246],["look.co.uk",246],["focus.de",247],["vsco.co",248],["twitter.com",249],["twitter3e4tixl4xyajtrzo62zg5vztmjuricljdp2c5kshju4avyoid.onion",251],["x.com",249],["op.gg",252],["jeuxvideo.com",253],["pcbolsa.com",254],["reddit.com",255],["reddittorjg6rue252oqsxryoxengawnmo46qy4kyii5wtqnwfj4ooad.onion",255],["hdmotori.it",256],["strikeout.*",257],["peliculasmx.net",258],["btc-echo.de",259],["cricstream.me",260],["bowfile.com",260],["crackllc.com",261],["designmodo.com",261],["hackstore.*",261],["compucalitv.com",261],["procrackerz.org",261],["megawarez.org",261],["dailydot.com",262],["mypornstarbook.net",263],["ashemaletube.com",264],["ashemaletube.*",265],["igg-games.com",266],["gamepedia.com",267],["appvn.com",268],["ccn.com",269],["ettv.*",270],["xrares.com",271],["link.goto.com.np",272],["movies123.*",273],["0123movies.*",275],["5movies.*",276],["megadede.*",275],["adivineencounter.com",278],["alcasthq.com",278],["au-di-tions.com",278],["badgehungry.com",278],["bloggingawaydebt.com",278],["chipandco.com",278],["cornerstoneconfessions.com",278],["dearcreatives.com",278],["divinelifestyle.com",278],["eslauthority.com",278],["heresyoursavings.com",278],["investingchannel.com",278],["irresistiblepets.net",278],["justjared.com",278],["kompas.com",278],["lovegrowswild.com",278],["mjsbigblog.com",278],["mommybunch.com",278],["mustardseedmoney.com",278],["myfunkytravel.com",278],["mywomenstuff.com",278],["onetimethrough.com",278],["panlasangpinoymeatrecipes.com",278],["peru21.pe",278],["savespendsplurge.com",278],["savvyhoney.com",278],["silverpetticoatreview.com",278],["tamaratattles.com",278],["the-military-guide.com",278],["the2seasons.com",278],["therelaxedhomeschool.com",278],["thetechieguy.com",278],["waterheaterleakinginfo.com",278],["zeroto60times.com",278],["cut-fly.com",279],["foxseotools.com",279],["classicreload.com",280],["piratebay.*",281],["pirateproxy.*",281],["wowescape.com",282],["games2rule.com",284],["bigescapegames.com",286],["pornve.com",287],["pixlr.com",288],["elixx.*",289],["hardmob.com.br",290],["gameguardian.net",291],["safe.elektroupdate.com",291],["mirrorace.*",292],["elizabeth-mitchell.org",293],["plagiarismchecker.co",294],["temp-mail.org",296],["medievalists.net",297],["u.gg",298],["celebjihad.com",299],["xnxxjapon.com",300],["solarmovie.*",301],["dramacool.*",302],["webserver.one",303],["t-online.de",304],["~email.t-online.de",306],["convallariaslibrary.com",308],["gourmetscans.net",308],["frag-mutti.de",309],["ovagames.com",310],["food.ndtv.com",311],["ustream.*",312],["ableitungsrechner.net",313],["watchfreexxx.net",314],["pandamovie.*",315],["pandamovies.me",315],["pornkino.cc",315],["speedporn.*",315],["xxxscenes.net",315],["youwatchporn.com",315],["onle.co",317],["loskatchorros.com.br",317],["how2electronics.com",317],["univers-simu.com",317],["stokerpiller.dk",317],["onlinestudentseva.com",317],["dexterclearance.com",317],["extratorrent.*",318],["oko.sh",319],["fuqer.com",320],["filerio.in",321],["duden.de",322],["cinetux.*",323],["streameast.*",324],["mlwbd.*",325],["washingtonpost.com",326],["marketmovers.it",327],["newssokuhou666.blog.fc2.com",327],["youkaiwatch2345.blog.fc2.com",327],["5ggyan.com",328],["bigbtc.win",330],["cryptofun.space",330],["games4king.com",331],["artribune.com",332],["oscobo.com",333],["ufacw.com",334],["segurosdevida.site",336],["choiceappstore.xyz",336],["bantenexis.com",336],["tutorialsaya.com",334],["indobo.com",334],["informaxonline.com",334],["gifans.com",336],["mcrypto.club",337],["luckydice.net",336],["adarima.org",336],["1apple.xyz",336],["shorttrick.in",336],["iptvjournal.com",336],["inbbotlist.com",336],["apkmaven.*",339],["theusaposts.com",336],["garoetpos.com",336],["techedubyte.com",336],["cdrab.com",341],["offerinfo.net",336],["winlator.com",336],["gosexpod.com",343],["flashingjungle.com",344],["nakedneighbour.com",345],["bestjavporn.com",346],["leechall.*",347],["ff14angler.com",348],["flsaudio.com",349],["bitcointalk.org",350],["adshrink.it",351],["turkanime.*",352],["allcalidad.*",353],["cinemaxxl.de",354],["player.pl",355],["bde4.*",356],["9gag.com",357],["filmytoday.com",358],["fandom.com",359],["sensualgirls.org",360],["wallpaperwaifu.com",361],["gamesradar.com",362],["techradar.com",362],["tomsguide.com",362],["tomshardware.com",362],["whathifi.com",362],["her.ie",363],["javhoho.com",363],["techhelpbd.com",363],["greentumble.com",363],["newsonthegotoday.com",364],["boyfriendtv.com",365],["makemoneywithurl.com",366],["dvdgayonline.com",367],["94.103.83.138",367],["multimovies.*",367],["ddaynormandy.forumgaming.fr",368],["neogeo-system.com",368],["medicalnewstoday.com",369],["fiches-auto.fr",370],["subsvip.com",371],["javcl.com",372],["javfull.net",372],["allgamesejogos.*",373],["bemestarglobal.*",373],["gamesgo.*",373],["lojadebicicleta.com.br",373],["redecanais.*",374],["pcmag.com",376],["enterinit.com",377],["catcare.store",378],["yalifin.xyz",379],["lrncook.xyz",379],["cryptokinews.com",378],["lifesurance.info",378],["tech8s.net",381],["drop.carbikenation.com",381],["linkss.rcccn.in",381],["link.djbassking.live",381],["tech5s.co",381],["game5s.com",381],["vezeta.net",382],["waiwj.net",382],["xcbtm.net",382],["wttai.net",382],["ngviral.com",382],["vgviral.com",382],["nosviral.com",382],["mentalfile.com",382],["qaluri.com",382],["jokgame.com",382],["placementsmela.com",384],["reminimod.co",384],["highkeyfinance.com",384],["amanguides.com",384],["adcrypto.net",386],["admediaflex.com",386],["aduzz.com",386],["bitcrypto.info",386],["datacheap.io",386],["hbz.us",386],["savego.org",386],["owsafe.com",386],["sportweb.info",386],["ryuugames.com",387],["sportsonfr.com",384],["gurumu.net",384],["kreatifparenting.com",384],["panda.freemodsapp.in",384],["iconicblogger.com",384],["rsrlink.in",384],["investcrust.com",384],["litonmods.com",384],["filesupload.in",386],["technoinformations.com",386],["worldmak.com",386],["financacerta.com",389],["encurtads.net",389],["classicoder.com",384],["apkandroidhub.in",391],["studyis.xyz",394],["dulichkhanhhoa.net",394],["noithatmyphu.vn",394],["jardima.com",394],["getintoway.com",386],["blog.nationapk.com",384],["krishiloksewa.com",384],["modzilla.in",384],["itechmafiia.com",384],["mb.feedale.com",384],["adrino1.bonloan.xyz",396],["vi-music.app",396],["instanders.app",396],["rokni.xyz",397],["keedabankingnews.com",397],["tea-coffee.net",399],["spatsify.com",399],["newedutopics.com",399],["getviralreach.in",399],["edukaroo.com",399],["funkeypagali.com",399],["careersides.com",399],["nayisahara.com",399],["wikifilmia.com",399],["infinityskull.com",399],["viewmyknowledge.com",399],["iisfvirtual.in",399],["starxinvestor.com",399],["jkssbalerts.com",399],["appkamods.com",400],["imagereviser.com",402],["nichapk.com",403],["easyworldbusiness.com",403],["riveh.com",403],["upshrink.com",406],["junkyponk.com",407],["healthfirstweb.com",407],["vocalley.com",407],["yogablogfit.com",407],["howifx.com",407],["en.financerites.com",408],["mythvista.com",407],["livenewsflix.com",407],["cureclues.com",407],["apekite.com",407],["veganab.co",410],["camdigest.com",410],["bartendingexpert.com",411],["blog.potterworld.co",413],["hipsonyc.com",413],["tech.pubghighdamage.com",413],["blog.itijobalert.in",413],["techkhulasha.com",413],["meclipstudy.in",415],["bookszone.in",417],["graphicuv.com",419],["learnmany.in",419],["hit-films.com",419],["shortix.co",420],["uptechnologys.com",422],["sevenjournals.com",422],["financenova.online",423],["utkarshonlinetest.com",423],["financewada.com",423],["v2links.me",424],["fc-lc.*",425],["jobzhub.store",426],["fitdynamos.com",426],["labgame.io",426],["m.jobinmeghalaya.in",427],["healthy4pepole.com",428],["to-travel.net",428],["homeculina.com",429],["ineedskin.com",429],["kenzo-flowertag.com",429],["lawyex.co",429],["mdn.lol",429],["awgrow.com",430],["btcbitco.in",431],["btcsatoshi.net",431],["cempakajaya.com",433],["crypto4yu.com",431],["manofadan.com",433],["readbitcoin.org",431],["wiour.com",431],["blog24.me",434],["coin-free.com",436],["tremamnon.com",438],["bitcotasks.com",433],["videolyrics.in",433],["tagecoin.com",440],["allfaucet.xyz",433],["claimcoins.site",433],["cryptosh.pro",433],["bitsmagic.fun",433],["ourcoincash.xyz",442],["masterduelmeta.com",444],["promo-visits.site",445],["shorterall.com",445],["homeairquality.org",446],["reidoplacar.com",447],["paidinsurance.in",448],["conghuongtu.net",448],["coinseidon.com",448],["djpunjab2.in",449],["djqunjab.in",449],["foodxor.com",449],["geniussolutions.co",449],["mealcold.com",449],["mixrootmods.com",449],["fartechy.com",449],["nishankhatri.xyz",451],["sugarona.com",452],["blog.disheye.com",453],["tinys.click",454],["apkupload.in",454],["ezeviral.com",454],["dailynew.online",454],["pngreal.com",454],["ytpng.net",454],["askpaccosi.com",454],["bitzite.com",455],["aiimgvlog.fun",456],["appsbull.com",457],["diudemy.com",457],["maqal360.com",457],["sahlmarketing.net",458],["blog.panytourism.online",460],["zubatecno.com",460],["battleroyal.online",460],["mayaremix.in",461],["unfoldedstars.com",461],["neverdims.com",461],["bit4me.info",461],["deltabtc.xyz",461],["mbjremix.com",461],["ottlatest.com",461],["techusnews.com",462],["universitiesonline.xyz",462],["intercelestial.com",463],["linegee.net",464],["filmypoints.in",465],["financeyogi.net",466],["finclub.in",466],["freethailottery.live",467],["progfu.com",467],["loanteacher.in",468],["gorating.in",468],["trickms.com",470],["letest25.co",472],["truevpnlover.com",472],["financebolo.com",472],["rphost.in",473],["easywithcode.tech",475],["vedamdigi.tech",476],["redfea.com",478],["pranarevitalize.com",478],["techyinfo.in",478],["fitnessholic.net",478],["cancelguider.online",479],["loan.punjabworks.com",480],["petrainer.in",482],["moderngyan.com",483],["sattakingcharts.in",483],["bgmi32bitapk.in",483],["bankshiksha.in",483],["earn.mpscstudyhub.com",483],["earn.quotesopia.com",483],["money.quotesopia.com",483],["best-mobilegames.com",483],["learn.moderngyan.com",483],["bharatsarkarijobalert.com",483],["quotesopia.com",483],["creditsgoal.com",483],["loan.creditsgoal.com",485],["rupyaworld.com",485],["vahantoday.com",485],["techawaaz.in",485],["loan.bgmi32bitapk.in",486],["currentrecruitment.com",487],["investorveda.com",487],["coingraph.us",488],["impact24.us",488],["foodupe.com",489],["bloggingdaze.com",490],["dsmusic.in",491],["techurlshort.in",492],["sub4unlock.com",493],["cybercityhelp.in",494],["akcartoons.in",496],["hosttbuzz.com",497],["policiesreview.com",497],["techacode.com",498],["travel.vebma.com",499],["mrproblogger.com",500],["themezon.net",500],["headlinerpost.com",501],["drinkspartner.com",501],["apcvpc.com",501],["posterify.net",501],["manishclasses.in",501],["shrinkforearn.in",502],["blog.workedbd.com",503],["advisecreate.fun",503],["uses-in-hindi.com",503],["maxxfour.com",503],["cybertyrant.com",503],["gdspike.com",503],["profitshort.com",503],["courselinkfree.us",503],["technorozen.com",503],["hubdrive.me",503],["hosty.uprwssp.org",504],["cinedesi.in",505],["thevouz.in",505],["tejtime24.com",505],["whatgame.xyz",506],["mooonten.com",506],["msic.site",506],["fx-22.com",506],["gold-24.net",506],["forexrw7.com",506],["kbconlinegame.com",507],["hamrojaagir.com",507],["odijob.com",507],["jeuxenligne.xyz",508],["dl.apkmoddone.com",509],["phongroblox.com",509],["bkgnews.in",510],["ontechhindi.com",510],["exactpay.online",511],["mahitimanch.in",512],["5ghindi.in",512],["rfiql.com",513],["gujjukhabar.in",513],["smartfeecalculator.com",513],["djxmaza.in",513],["thecubexguide.com",513],["jytechs.in",513],["dropgalaxy.*",514],["financemonk.net",514],["hypershort.com",515],["djremixganna.com",516],["potud.com",517],["winezones.in",517],["governmentjobvacancies.com",517],["marketrook.com",517],["swachataparnibandh.com",517],["techhype.in",518],["techsite.in",518],["datavaults.co",519],["go.zovo.ink",520],["newsbreak24.de",521],["businessinsider.de",522],["echo-online.de",523],["txxx.*",524],["txxxporn.tube",526],["upornia.com",527],["familyporner.com",528],["javbake.com",529],["javcensored.net",529],["javdoge.com",529],["javsexfree.com",529],["javuncensored.watch",529],["pussymaturephoto.com",530],["jpvhub.com",531],["bunkr.*",532],["comicxxx.eu",533],["sexmadeathome.com",533],["pornocomics.*",533],["amateurs-fuck.com",533],["sex-amateur-clips.com",533],["falatron.com",533],["pornoplum.com",534],["vulgarmilf.com",534],["oldgirlsporn.com",534],["maturell.com",534],["nakedolders.com",534],["widewifes.com",534],["hentaihere.com",535],["xnxx-sexfilme.com",536],["pahe.*",537],["actvid.*",538],["nu6i-bg-net.com",539],["androjungle.com",540],["bokugents.com",540],["idlixvip.*",541],["honkailab.com",542],["arkadium.com",543],["abysscdn.com",544],["fullfreeimage.com",544],["hihihaha1.xyz",544],["hihihaha2.xyz",544],["playhydrax.com",544],["rufiiguta.com",544],["hk.yahoo.com",545],["l2db.info",546],["forumconstruire.com",547],["vrcmods.com",548],["ilmeteo.it",549],["splitshire.com",550],["addictinggames.com",551],["foxnews.com",552],["sexodi.com",553],["sms24.*",554],["iseekgirls.com",555],["m.drtuber.com",556],["aemenstore.com",557],["byboe.com",557],["cazzette.com",557],["dreamcheeky.com",557],["fidlarmusic.com",557],["hookeaudio.com",557],["jncojeans.com",557],["kiemlua.com",558],["kingsleynyc.com",557],["lucidcam.com",557],["nguyenvanbao.com",557],["nousdecor.com",557],["pennbookcenter.com",557],["publicananker.com",557],["restorbio.com",557],["rezence.com",557],["staaker.com",557],["tricksplit.io",560],["apkcombo.com",560],["ctrlv.*",561],["atozmath.com",562],["indianwebseries.*",563],["simply-debrid.com",564],["cutty.app",564],["w3schools.com",565],["healthline.com",566],["vix.com",567],["responsivevoice.org",568],["cgtips.org",569],["shortenbuddy.com",570],["comicbook.com",571],["hentaicloud.com",572],["drphil.com",573],["bookriot.com",574],["pholder.com",575],["cookpad.com",576],["urbanmilwaukee.com",576],["phica.net",576],["xxxdan.com",577],["businesstimes.com.sg",578],["teknomuda.com",579],["isi7.net",581],["alltechnerd.com",582],["citynews.ca",583],["6abc.com",584],["abc11.com",584],["abc13.com",584],["abc30.com",584],["abc7.com",584],["abc7chicago.com",584],["abc7news.com",584],["abc7ny.com",584],["abcotvs.net",584],["videohelp.com",585],["top.gg",586],["arrowos.net",587],["tvshows4mobile.*",587],["br0wsers.com",588],["nifteam.info",589],["thejournal.ie",590],["needgayporn.com",591],["rule34.paheal.net",592],["palcomix.com",593],["pikkado.com",594],["nypost.com",595],["girlsofdesire.org",596],["akuu-sflin.blogspot.com",597],["jzzo.com",598],["ladbible.com",599],["loadout.tf",600],["projectfreetv.*",601],["hdss.*",601],["moviesflix.*",601],["10starhd.*",601],["2embed.*",601],["xcloud.*",602],["~xcloud.eu",602],["~xcloud.host",602],["elmalajeno.com",603],["imgur.com",604],["getsexgames.com",605],["adultgamestop.bigtopsites.com",606],["pornojenny.net",607],["pornolisa.com",607],["kickass.*",608],["javynow.com",609],["techjunkie.com",610],["reliabletv.me",611],["ytanime.tv",612],["sportskart.*",612],["garrysmods.org",613],["tyla.com",614],["sportbible.com",615],["gamingbible.co.uk",614],["dekki.com",617],["cambb.xxx",618],["xtube.com",619],["discovermagazine.com",620],["elitepvpers.com",621],["bhaskar.com",622],["divyabhaskar.co.in",622],["playonlinux.com",623],["kaotic.com",624],["cargurus.com",625],["haonguyen.top",626],["thumpertalk.com",627],["zshort.*",628],["eschenker.dbschenker.com",629],["porntn.com",630],["hotcleaner.com",631],["movie.momo-net.com",632],["xxxtime.sextgem.com",633],["gay4porn.com",634],["myabandonware.com",635],["mrunblock.*",636],["alrakoba.net",637],["netpornix.*",638],["hitproversion.com",639],["shemalestube.com",640],["sbplay.*",641],["foreca.com",642],["moviemakeronline.com",643],["kelasexcel.id",644],["maxstream.video",645],["uprot.net",646],["techpowerup.com",647],["qz.com",648],["247sports.com",649],["samehadaku.*",650],["gab.com",651],["kumparan.com",652],["videovard.*",653],["tumblr.com",654],["techymedies.com",655],["unsplash.com",656],["chess.com",657],["nodejs.libhunt.com",658],["blick.ch",659],["theloadout.com",660],["pcgamesn.com",660],["schoolcheats.net",661],["1cloudfile.com",662],["torrentdownloads.dirproxy.com",663],["torrentdownload.info",664],["animenhentai.com",665],["designtagebuch.de",666],["rp5.*",667],["mydramalist.com",668],["stooq.*",669],["dvdgayporn.com",670],["hdmovie5.*",670],["hdmovie2.*",670],["funnywifiname.net",670],["jattfilms.*",670],["jattfilms.cfd",670],["mrbobd.com",670],["vegamovvies.to",670],["hdmoviie2.*",670],["1stream.*",671],["calculator-online.net",672],["onionplay.*",673],["shinchu.*",674],["networkhint.com",674],["sturls.com",675],["rephrase.info",676],["nowtolove.com.au",677],["washingtoninformer.com",678],["watch.cricstream.*",679],["cricstreams.re",679],["xenvn.com",680],["ibomma.*",681],["scrolller.com",682],["dirp.me",683],["pinterest.*",684],["distrowatch.org",685],["autofaucet.dutchycorp.space",686],["chinhnhacoban.com",687],["vnpttelle.com",687],["plotaroute.com",688],["techsignin.com",689],["ac-illust.com",690],["photo-ac.com",690],["mrgay.com",691],["buondua.com",692],["lbprate.com",693],["digminecraft.com",694],["logikfx.com",695],["etsy.com",696],["playerx.stream",697],["h-flash.com",698],["fashionunited.*",699],["vimm.net",700],["thedigitalfix.com",701],["dvdplay.*",702],["dubznetwork.com",703],["redirect.dafontvn.com",704],["gsmware.com",705],["poki.*",706],["chimicamo.org",707],["earnme.club",708],["jrlinks.in",708],["usanewstoday.club",708],["eztv.*",709],["ricettafitness.com",710],["comidacaseira.me",712],["welt.de",713],["autotrader.co.uk",714],["mangaraw.org",715],["theswagsports.com",716],["pkpics.club",717],["apkmodhub.in",718],["digilibraries.com",719],["slidesgo.com",720],["dktechnicalmate.com",721],["indiakablog.com",721],["givee.club",722],["fucktube4k.com",723],["mail.com",724],["gmx.*",725],["tamrieltradecentre.com",726],["missav.*",727],["missav123.com",727],["missav888.com",727],["dads-banging-teens.com",728],["home-xxx-videos.com",728],["mature-chicks.com",728],["time.com",729],["distrowatch.com",730],["beatsnoop.com",731],["fetchpik.com",731],["anisearch.*",732],["veryfreeporn.com",733],["bishopsstortfordindependent.co.uk",734],["cambridgeindependent.co.uk",734],["dissexpress.co.uk",734],["fenlandcitizen.co.uk",734],["granthamjournal.co.uk",734],["lynnnews.co.uk",734],["kentonline.co.uk",734],["newarkadvertiser.co.uk",734],["rutland-times.co.uk",734],["spaldingtoday.co.uk",734],["stamfordmercury.co.uk",734],["suffolknews.co.uk",734],["velvetmag.co.uk",734],["teachoo.com",735],["itstillworks.com",736],["leaknud.com",737],["colonist.io",738],["wa.de",739],["mboost.me",740],["sumikai.com",741],["adslink.pw",742],["jpopsingles.eu",743],["instagram.com",744],["brisbanetimes.com.au",745],["smh.com.au",745],["theage.com.au",745],["watoday.com.au",745],["flipkart.com",746],["rtl.de",747],["yourdictionary.com",748],["desktopnexus.com",749],["theblock.co",750],["root-nation.com",751],["italpress.com",751],["genshin.gg",752],["mathway.com",753],["viefaucet.com",754],["google.com",755],["rechtschreibpruefung24.de",756],["tirexo.*",757],["adzz.in",758],["model-viewer.com",759],["playstore.pw",760],["adsy.pw",761],["rocketnews24.com",762],["soranews24.com",762],["youpouch.com",763],["afly.pro",765],["bloggingguidance.com",766],["snaptik.app",767],["www.chip.de",768],["chip.de",769],["praxistipps.chip.de",770],["praxistipps.focus.de",771],["netmoms.de",770],["tvtv.ca",773],["tvtv.us",773],["swisscows.com",774],["javopen.co",775],["derivative-calculator.net",776],["integral-calculator.com",776],["proappapk.com",777],["infokik.com",778],["freepik.com",779],["writedroid.*",780],["thetimes.co.uk",781],["additudemag.com",782],["techpp.com",783],["azrom.net",784],["topsporter.net",785],["sportshub.to",785],["seznamzpravy.cz",786],["guru3d.com",787],["roblox-scripts.co",788],["theodysseyonline.com",789],["adseek.site",790],["infoseek.co.jp",791],["socialcounts.org",792],["tlgrm.eu",793],["telegramchannels.me",794],["nn.de",795],["www.walmart.com",796],["thefileslocker.net",797],["n.fcd.su",798],["oxy.*",799],["~oxy.edu",799],["esopress.com",800],["karvitt.com",801],["realpornclips.com",802],["bitchesgirls.com",803],["efukt.com",804],["rookieroad.com",805],["naijafav.top",806],["novinky.cz",807],["webnovelpub.com",808],["novelpub.com",809],["lightnovelspot.com",811],["myanimelist.net",812],["gloryshole.com",813],["tokenmix.pro",814],["link.idblog.eu.org",815],["link.smallseostat.com",816],["bitcosite.com",817],["glosbe.com",818],["mangabuddy.com",819],["elamigos-games.com",820],["elamigos-games.net",820],["elamigosgames.org",820],["imgbox.com",821],["~wp.pl",822],["~money.pl",825],["~komorkomania.pl",827],["~autokult.pl",827],["~o2.pl",827],["~parenting.pl",827],["~abczdrowie.pl",827],["~pudelek.pl",827],["open.fm",828],["vibez.pl",829],["sportowefakty.wp.pl",830],["fitness.wp.pl",830],["smaczneblogi.pl",831],["forum.kardiolo.pl",832],["~www.wp.pl",831],["horoskop.wp.pl",834],["www.wp.pl",835],["pilot.wp.pl",837],["domodi.pl",838],["turystyka.wp.pl",839],["~tv.wp.pl",840],["mag.shock2.info",841],["hints.littlealchemy2.com",842],["hacoos.com",843],["thefastcode.com",844],["besargaji.com",845],["chrysler-club.net",846],["azaleasdolls.com",847],["zefoy.com",848],["bellesa.co",849],["pepperlive.info",850],["adultcomixxx.com",851],["apk-gamers.com",851],["skiplinks.xyz",851],["streamvid.net",852],["miniwebtool.com",852],["sexvideos.host",853],["the-sun.com",854],["lovetoknow.com",855],["thedailybeast.com",856],["parentcircle.com",857],["vidello.net",858],["weatherwx.com",859],["crewbase.net",860],["phineypet.com",860],["cellmapper.net",861],["freewebcart.com",862],["securityweek.com",862],["curs-germana.com",862],["vlr.gg",863],["metager.org",864],["comohoy.com",865],["cdromance.com",866],["mapcrunch.com",867],["domaha.tv",868],["xxxrip.net",868],["sextor.org",868],["sex-torrent.net",868],["hentaipaw.com",869],["peakpx.com",870],["pxfuel.com",870],["pikist.com",871],["androidauthority.com",872],["app.blubank.com",873],["truyentranhfull.net",874],["empire-anime.*",875],["empire-streaming.*",875],["empire-anime.com",875],["empire-streamz.fr",875],["empire-stream.*",875],["taisachonthi.com",876],["yurasu.xyz",877],["isekaipalace.com",877],["woowebtools.com",878],["iwatchfriendsonline.net",879],["creativebloq.com",880],["sofmag.com",881],["khoaiphim.com",882],["nicomanga.com",883],["www.google.com",884],["totalcsgo.com",885],["gumtree.com.au",886],["gumtree.com",887],["deviantart.com",888],["nasonga.co.ke",889],["pandasnovel.com",890],["bangpremier.com",891],["bankbazaar.com",892],["asura.gg",893],["asurascans.com",893],["romsmania.games",894],["freeroms.com",895],["dll-files.com",896],["modrinth.com",897],["codelivly.com",898],["www.mindbodygreen.com",899],["sotwe.com",900],["download.megaup.net",901],["rain-alarm.com",902],["cnn.com",903],["dvm360.com",904],["trakt.tv",905],["client.falixnodes.net",906],["thestar.com",907],["dailymail.co.uk",908],["m.baomoi.com",909],["gtainside.com",910],["movies4u.*",911],["movies4u3.*",911],["gamerxyt.com",911],["biblestudytools.com",912],["christianheadlines.com",912],["ibelieve.com",912],["nizarstream.com",913],["screenhub.com.au",914],["insideevs.com",915],["community.pcgamingwiki.com",916],["dzapk.com",917],["zive.cz",918],["client.pylexnodes.net",919],["win.gg",920],["filmizlehdfilm.com",921],["filmizletv.*",921],["fullfilmizle.cc",921],["gofilmizle.net",921],["estudyme.com",922],["freex2line.online",923],["accuweather.com",924],["fplstatistics.co.uk",925],["thespruce.com",926],["skai.gr",927],["sonixgvn.net",928],["francoischarron.com",929],["sabornutritivo.com",930],["tecnologiati.online",930],["bettycrocker.com",931],["filext.com",932],["360haven.com",933],["apkmirror.com",934],["vidsrc.*",935],["gdflix.*",936],["1337x.ninjaproxy1.com",938],["work.ink",939],["fmovies.*",940],["f2movies.to",940],["fullxh.com",941],["galleryxh.site",941],["megaxh.com",941],["movingxh.world",941],["seexh.com",941],["unlockxh4.com",941],["valuexh.life",941],["xhaccess.com",941],["xhadult2.com",941],["xhadult3.com",941],["xhadult4.com",941],["xhadult5.com",941],["xhamster.*",941],["xhamster1.*",941],["xhamster10.*",941],["xhamster11.*",941],["xhamster12.*",941],["xhamster13.*",941],["xhamster14.*",941],["xhamster15.*",941],["xhamster16.*",941],["xhamster17.*",941],["xhamster18.*",941],["xhamster19.*",941],["xhamster20.*",941],["xhamster2.*",941],["xhamster3.*",941],["xhamster4.*",941],["xhamster42.*",941],["xhamster46.com",941],["xhamster5.*",941],["xhamster7.*",941],["xhamster8.*",941],["xhamsterporno.mx",941],["xhbig.com",941],["xhbranch5.com",941],["xhchannel.com",941],["xhdate.world",941],["xhlease.world",941],["xhmoon5.com",941],["xhofficial.com",941],["xhopen.com",941],["xhplanet1.com",941],["xhplanet2.com",941],["xhreal2.com",941],["xhreal3.com",941],["xhspot.com",941],["xhtotal.com",941],["xhtree.com",941],["xhvictory.com",941],["xhwebsite.com",941],["xhwebsite2.com",941],["xhwebsite5.com",941],["xhwide1.com",941],["xhwide2.com",941],["xhwide5.com",941],["porndoe.com",942],["torrentdownload.*",943],["readcomiconline.*",944],["pixiv.net",945],["cbssports.com",946],["jacquieetmicheltv.net",947],["jacquieetmicheltv2.net",947],["bombuj.*",948],["xfreehd.com",949],["freethesaurus.com",950],["thefreedictionary.com",950],["getmodsapk.*",951],["qwant.com",952],["civitai.com",953],["civitai.green",953],["faroutmagazine.co.uk",954],["govtech.com",955],["dragontea.ink",956],["time.artjoey.com",957],["thehackernews.com",958],["creepypasta.com",959],["statisticsanddata.org",960],["tmailor.com",961],["aliezstream.pro",962],["mylivestream.pro",962],["mylocal.co.uk",963],["ettvi.com",964],["crictime.is",965],["freehit.eu",965],["mobilecric.com",965],["live-sport.duktek.pro",965],["decrypt.day",966],["cryptorank.io",967],["skidrowcodex.net",968],["zee5.com",969],["thejakartapost.com",970],["cenoteka.rs",971],["twi-fans.com",972],["porno-baguette.com",973],["caravanmagazine.in",974],["eloshapes.com",975],["filerox.com",976],["lowcygier.pl",977],["game8.co",978],["ign.com",979],["club386.com",981],["yourstory.com",982],["audiobookbay.lu",983],["service.webgoto.net",984],["freemodsapp.in",985],["onlytech.com",985],["helicomicro.com",985],["9xlinks.*",986],["9xmovie.*",986],["desiflix.*",986],["girlmms.com",986],["ottxmaza.com",986],["sexmazahd.com",986],["webxmaza.com",986],["app.scope.gg",987],["governing.com",988],["therealdeal.com",989],["olympics.com",990],["taste.com.au",991],["playmod24.com",992],["euronews.com",993],["mercatinomusicale.com",994],["btv.bg",995],["btvnovinite.bg",995],["btvsport.bg",995],["1jour1film.*",996],["101soundboards.com",997],["interactivemap.app",998],["plasticsnews.com",999],["idnes.cz",1000],["boundingintocomics.com",1001],["themix.net",1001],["metoffice.gov.uk",1002],["boardgameoracle.com",1003],["picrew.me",1004],["stream4free.*",1005],["sdna.gr",1006],["schnittberichte.com",1007],["infinityscans.xyz",1008],["infinityscans.net",1008],["infinityscans.org",1008],["karistudio.com",1009],["leafstudio.site",1009],["handirect.fr",1010],["giphy.com",1011],["politico.com",1012],["voz.vn",1013],["aov-news.com",1014],["summonersky.com",1014],["worldpopulationreview.com",1015],["sbs.com.au",1016],["msn.com",1017],["vid2faf.*",1018],["vidplay.*",1018],["ignboards.com",1019],["telepisodes.org",1020],["daddylive.*",1021],["m.shuhaige.net",1022],["senpai-stream.net",1023],["laser-pics.com",1024],["uexpress.com",1025],["editor.plantuml.com",1026],["theorg.com",1027],["forgee.xyz",1028],["gamehub.cam",1028],["1001tracklists.com",1029],["mirror.co.uk",1030],["mobalytics.gg",1031],["javfilms.com",1032],["europix.top",1033],["91porna.com",1034],["glamour.com",1035],["abcnews.go.com",1036],["cryptofaucet.club",1037],["redecanaistv.*",1038],["redisex.*",1038],["fapeza.com",1039],["iflscience.com",1040],["sneakernews.com",1041],["emojipedia.org",1042],["agar.io",1043],["criollasx.com",1044],["soft98.ir",1045],["~forum.soft98.ir",1045],["birminghammail.co.uk",1046],["bristolpost.co.uk",1046],["dailyrecord.co.uk",1046],["liverpoolecho.co.uk",1046],["manchestereveningnews.co.uk",1046],["stokesentinel.co.uk",1046],["lightningmaps.org",1047],["global.novelpia.com",1048],["velo.outsideonline.com",1049],["rediff.com",1050],["old.reddit.com",1051],["www.google.*",1052],["bikesales.com.au",1053],["disqus.com",1054],["proboards.com",1055],["winclassic.net",1055],["app.koinly.io",1056],["duplichecker.com",1057],["plagiarismdetector.net",1057],["searchenginereports.net",1057],["smallseotools.com",1057]]);
30
+ const argsList = ["[]","[{\"selector\":\".ad-dfp\",\"action\":[\"style\",\"min-height: 0.1485mm !important; height: 0.1485mm !important;\"],\"cssable\":true},{\"selector\":\".header-center\",\"action\":[\"style\",\"margin-top:-5000px !important;\"],\"cssable\":true},{\"selector\":\".sidebar\",\"action\":[\"style\",\"width: 1.745px !important; padding: 1px !important\"],\"cssable\":true}]","[{\"selector\":\"style\",\"action\":[\"remove\",\"\"],\"tasks\":[[\"has-text\",\"veevad-\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"/popunder|\\\\(\\\\)\\\\{try\\\\{localStorage\\\\[/\"]]}]","[{\"selector\":\"html[lang=\\\"ko\\\"] [id^=\\\"img_\\\"][style]:has(iframe[frameborder=\\\"0\\\"][style])\",\"action\":[\"style\",\"clip-path: circle(0) !important;\"],\"cssable\":true}]","[{\"selector\":\"html[lang][dir=\\\"ltr\\\"] [id^=\\\"img_\\\"][style]:has(iframe[frameborder=\\\"0\\\"][style])\",\"action\":[\"style\",\"clip-path: circle(0) !important;\"],\"cssable\":true}]","[{\"selector\":\"aside[class^=\\\"css-\\\"]\",\"tasks\":[[\"has\",{\"selector\":\"> p\",\"tasks\":[[\"has-text\",\"Advertisement\"],[\"spath\",\" + ins.adsbygoogle\"]]}]]},{\"selector\":\"html[data-theme][lang] [id^=\\\"img_\\\"][style]:has(iframe[frameborder=\\\"0\\\"][style])\",\"action\":[\"style\",\"clip-path: circle(0) !important;\"],\"cssable\":true}]","[{\"selector\":\"html\",\"action\":[\"style\",\"filter: opacity(0) !important; pointer-events: none !important;\"],\"tasks\":[[\"not\",{\"selector\":\"\",\"tasks\":[[\"has\",{\"selector\":\"> head > style:only-child\",\"tasks\":[[\"has-text\",\"width:399px;height:411px\"]]}]]}]]}]","[{\"selector\":\"\",\"tasks\":[[\"matches-path\",\"~/shop\"],[\"spath\",\" a[href*=\\\"/aclick?\\\"]:not(.vsp_ads)\"]]},{\"selector\":\".b_ad\",\"action\":[\"style\",\"position: absolute !important; top: -9999px !important;\"],\"cssable\":true},{\"selector\":\".b_adLastChild\",\"action\":[\"style\",\"position: absolute !important; top: -9999px !important;\"],\"cssable\":true},{\"selector\":\".b_restorableLink\",\"action\":[\"remove\",\"\"]},{\"selector\":\".pa_sb\",\"action\":[\"style\",\"position: absolute !important; top: -9999px !important;\"],\"cssable\":true},{\"selector\":\"ol#b_results > li.b_algo\",\"tasks\":[[\"has\",{\"selector\":\".b_lineclamp3\",\"tasks\":[[\"matches-css-before\",{\"name\":\"content\",\"pseudo\":\"before\",\"value\":\"^url\\\\(\\\\Sdata:image\\\\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD.AAAA\"}]]}]]}]","[{\"selector\":\"div[id^=\\\"novelpia_\\\"]\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"#o_carrepub\",\"action\":[\"style\",\"height: 1px; margin: 0; min-height: auto; visibility: hidden; width: 1px;\"],\"cssable\":true}]","[{\"selector\":\"html\",\"action\":[\"style\",\"overflow: auto !important;\"],\"cssable\":true}]","[{\"selector\":\".Page-header-leaderboardAd\",\"action\":[\"remove\",\"\"]},{\"selector\":\"html[data-header-hasleaderboard]\",\"action\":[\"remove-attr\",\"data-header-hasleaderboard\"]}]","[{\"selector\":\".cb-comments__create-form\",\"action\":[\"style\",\"margin-top: 30px !important;\"],\"cssable\":true},{\"selector\":\".cb-post-block-images-swiper .cb-post-block__comments .collapseable-comments__collapse\",\"action\":[\"style\",\"margin-bottom: 0px !important;\"],\"cssable\":true},{\"selector\":\".cb-post-block-images-swiper .cb-post-block__comments\",\"action\":[\"style\",\"margin-bottom: 0 !important; top: -97px !important;\"],\"cssable\":true},{\"selector\":\".cb-post-block-images-swiper .collapseable-comments__collapseable\",\"action\":[\"style\",\"margin-bottom: -80px !important;\"],\"cssable\":true},{\"selector\":\".cb-post-block__comments\",\"action\":[\"style\",\"padding-bottom: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\"li.s-item\",\"tasks\":[[\"has\",{\"selector\":\"span\",\"tasks\":[[\"has-text\",\"SPONSORED\"]]}]]}]","[{\"selector\":\".amp-animate\",\"action\":[\"remove\",\"\"]},{\"selector\":\".publi_luto_horizontal\",\"action\":[\"style\",\"max-height: 1px !important;\"],\"cssable\":true},{\"selector\":\"div[id^=\\\"google_ads_iframe_\\\"]\",\"action\":[\"style\",\"max-height: 1px !important;\"],\"cssable\":true},{\"selector\":\"iframe[id^=\\\"google_ads_iframe\\\"]\",\"action\":[\"style\",\"max-height: 1px !important;\"],\"cssable\":true}]","[{\"selector\":\"ul[class^=\\\"cluster__stories\\\"] > li[class^=\\\"cluster__cluster-basic\\\"][class*=\\\"cluster__column-left\\\"]\",\"action\":[\"style\",\"margin-left: 17.0418006431vw !important;\"],\"cssable\":true},{\"selector\":\"ul[class^=\\\"cluster__stories\\\"] > li[class^=\\\"cluster__cluster-hub\\\"][class*=\\\"cluster__column-middle\\\"][class*=\\\"cluster__break-after\\\"]\",\"action\":[\"style\",\"margin-bottom: 100px !important;\"],\"cssable\":true}]","[{\"selector\":\".subscribe-article .subscribe-truncate\",\"action\":[\"style\",\"max-height:unset!important;order:unset!important;\"],\"cssable\":true},{\"selector\":\".subscribe-article .subscribe-truncate::before\",\"action\":[\"style\",\"background:none!important;\"],\"cssable\":true},{\"selector\":\".subscribe-article .subscriber-hider\",\"action\":[\"style\",\"display:block!important\"],\"cssable\":true}]","[{\"selector\":\".subscribe-truncate\",\"action\":[\"style\",\"order:0!important;max-height:inherit!important\"],\"cssable\":true},{\"selector\":\".subscribe-truncate::before\",\"action\":[\"style\",\"background:none!important\"],\"cssable\":true},{\"selector\":\".subscriber-hider\",\"action\":[\"style\",\"display:inherit!important\"],\"cssable\":true}]","[{\"selector\":\"a[target][href^=\\\"https://x.chip.de/\\\"]\",\"tasks\":[[\"upward\",\"div[id]\"]]}]","[{\"selector\":\"#header\",\"action\":[\"style\",\"position: inherit !important;\"],\"cssable\":true}]","[{\"selector\":\".desktop-wrapper.has-header-banner.mt-32\",\"action\":[\"style\",\"margin-top: 8rem !important;\"],\"cssable\":true},{\"selector\":\".single-story > header\",\"action\":[\"style\",\"margin-top: 40px !important\"],\"cssable\":true}]","[{\"selector\":\"#ymm-sub-nav\",\"action\":[\"style\",\"top:0px !important\"],\"cssable\":true}]","[{\"selector\":\".lite-page__header-navigation--with-ad\",\"action\":[\"style\",\"top: 0 !important;\"],\"cssable\":true},{\"selector\":\".research-resources-summary__inner.is-sticky\",\"action\":[\"style\",\"top: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\"body\",\"action\":[\"style\",\"background:none !important;\"],\"cssable\":true}]","[{\"selector\":\"body\",\"action\":[\"style\",\"background-image:none !important\"],\"cssable\":true}]","[{\"selector\":\".branding\",\"tasks\":[[\"upward\",\"[target=\\\"_blank\\\"]\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"KeenTracking\"]]}]","[{\"selector\":\".no-scroll\",\"action\":[\"style\",\"overflow:auto!important\"],\"cssable\":true}]","[{\"selector\":\".zc_top_mobil\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"body\",\"action\":[\"style\",\"overflow: auto !important;\"],\"cssable\":true}]","[{\"selector\":\".td-animation-stack-type0-1\",\"action\":[\"style\",\"opacity:1 !important\"],\"cssable\":true}]","[{\"selector\":\".mat-drawer-container\",\"action\":[\"style\",\"overflow-x: auto !important\"],\"cssable\":true}]","[{\"selector\":\"html > head > link[rel=\\\"canonical\\\"]:not([href*=\\\"/recipes/\\\"])\",\"tasks\":[[\"upward\",2],[\"spath\",\" script\"],[\"has-text\",\"googletagmanager\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"===\"],[\"has-text\",\"/[\\\\w\\\\W]{16000}/\"]]}]","[{\"selector\":\"html, body\",\"action\":[\"style\",\"overflow: auto !important\"],\"cssable\":true}]","[{\"selector\":\"._4xQrn\",\"action\":[\"style\",\"max-height:0px\"],\"cssable\":true}]","[{\"selector\":\"span\",\"tasks\":[[\"has-text\",\"ADVERTISEMENT\"]]}]","[{\"selector\":\"#gameEtTopRight.commonEt\",\"action\":[\"style\",\"height: 0 !important;\"],\"cssable\":true},{\"selector\":\"#gamelistCategories\",\"action\":[\"style\",\"margin-bottom: auto !important;\"],\"cssable\":true}]","[{\"selector\":\"body.body-load\",\"action\":[\"style\",\"overflow: auto !important;\"],\"cssable\":true}]","[{\"selector\":\"article[role=\\\"presentation\\\"] > div[style]\",\"tasks\":[[\"has\",{\"selector\":\"span\",\"tasks\":[[\"has-text\",\"/Anzeige|Gesponsert|Sponsored|Geborg|Sponzorováno|Sponsoreret|Χορηγούμενη|Publicidad|Sponsoroitu|Sponsorisé|Bersponsor|Sponsorizzato|広告|광고|Ditaja|Sponset|Gesponsord|Sponsorowane|Patrocinado|Реклама|Sponsrad|ได้รับการสนับสนุน|May Sponsor|Sponsorlu|赞助内容|贊助|প্রযোজিত|પ્રાયોજિત|स्पॉन्सर्ड|Sponzorirano|ಪ್ರಾಯೋಜಿತ|സ്‌പോൺസർ ചെയ്‌തത്|पुरस्‍कृत|प्रायोजित|ਪ੍ਰਾਯੋਜਿਤ|මුදල් ගෙවා ප්‍රචාරය කරන ලදි|Sponzorované|விளம்பரதாரர்கள்|స్పాన్సర్ చేసింది|Được tài trợ|Спонсорирано|Commandité|Sponsorizat|Спонзорисано/\"]]}]]},{\"selector\":\"div[style=\\\"max-height: inherit; max-width: inherit;\\\"]\",\"tasks\":[[\"has\",{\"selector\":\"span\",\"tasks\":[[\"has-text\",\"Paid partnership with \"]]}]]}]","[{\"selector\":\"div[id] > .dfp-ad-unit\",\"tasks\":[[\"upward\",1]]}]","[{\"selector\":\".body--onPlayer--ads\",\"action\":[\"remove-class\",\"body--onPlayer--ads\"]}]","[{\"selector\":\"html > body:not(.catalogsearch-result-index)\",\"tasks\":[[\"upward\",1],[\"spath\",\" > head > script\"],[\"has-text\",\"googletagmanager\"]]}]","[{\"selector\":\"body:not(:has(#remixd-audio-player)) > script\",\"tasks\":[[\"has-text\",\"googletagmanager\"]]}]","[{\"selector\":\"#ulCommentWidget[style*=\\\"display\\\"]\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"html:not(:has(video)) > head > script\",\"tasks\":[[\"has-text\",\"connatix.com\"]]}]","[{\"selector\":\"html > head > script\",\"tasks\":[[\"has-text\",\"connatix.id\"],[\"upward\",1],[\"spath\",\" > script\"],[\"has-text\",\"window.cnx\"]]}]","[{\"selector\":\"html > head > link[rel=\\\"canonical\\\"]:not([href*=\\\"/video/\\\"])\",\"tasks\":[[\"upward\",1],[\"spath\",\" > script[src*=\\\"connatix\\\"]\"]]}]","[{\"selector\":\".adthrive-video-player\",\"action\":[\"style\",\"padding-bottom: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\"body.noImages .content img\",\"action\":[\"style\",\"display: inline-block !important\"],\"cssable\":true}]","[{\"selector\":\".widget-topad\",\"action\":[\"style\",\"padding-bottom: 20px !important;\"],\"cssable\":true}]","[{\"selector\":\"html:not(:has([class^=\\\"Dailymotion__Wrapper\\\"])) > head > script\",\"tasks\":[[\"has-text\",\"gptScript\"]]}]","[{\"selector\":\"html > head > meta[property=\\\"og:url\\\"]:not([content*=\\\"/games/\\\"], [content*=\\\"/play/\\\"])\",\"tasks\":[[\"upward\",1],[\"spath\",\" > script\"],[\"has-text\",\"wgplayer\"]]}]","[{\"selector\":\"#index-games\",\"tasks\":[[\"upward\",\"html\"],[\"spath\",\" > head > script\"],[\"has-text\",\"wgplayer\"]]}]","[{\"selector\":\"body\",\"action\":[\"style\",\"opacity: 1 !important;\"],\"cssable\":true}]","[{\"selector\":\".col-md-6\",\"action\":[\"style\",\"height: 150px !important;\"],\"cssable\":true}]","[{\"selector\":\".st-btn > img\",\"action\":[\"style\",\"margin: auto !important; display: block !important;\"],\"cssable\":true},{\"selector\":\".st-btn:not(.st-first)\",\"action\":[\"style\",\"display: inline-block !important; min-width: 50px !important; width: 50px !important;\"],\"cssable\":true},{\"selector\":\".st-hidden\",\"action\":[\"remove-class\",\"st-hidden\"]}]","[{\"selector\":\".ad-banner\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\".nonAppView > div div[class]:not([id]) > div[id^=\\\"div-gpt-ad\\\"]\",\"tasks\":[[\"upward\",1]]},{\"selector\":\"[onclick] .btxt\",\"tasks\":[[\"has-text\",\"/Ad/\"],[\"xpath\",\"../../..\"]]},{\"selector\":\"[onclick] h5\",\"tasks\":[[\"has-text\",\"/Ad/\"],[\"xpath\",\"../../..\"]]},{\"selector\":\"[onclick] p\",\"tasks\":[[\"has-text\",\"/Ad/\"],[\"xpath\",\"../../..\"]]},{\"selector\":\"div\",\"tasks\":[[\"matches-css\",{\"name\":\"background-image\",\"value\":\"colombia_\"}],[\"xpath\",\"../..\"]]},{\"selector\":\"h2\",\"tasks\":[[\"has-text\",\"/Promoted/\"],[\"spath\",\" + div\"]]},{\"selector\":\"p\",\"tasks\":[[\"matches-css\",{\"name\":\"background-image\",\"value\":\"colombia-icon\"}],[\"xpath\",\"../..\"]]}]","[{\"selector\":\"link[rel=\\\"canonical\\\"]:not([href*=\\\"pageconfig=contactus\\\"])\",\"tasks\":[[\"upward\",\"html\"],[\"spath\",\" script.optanon-category-C0001\"]]}]","[{\"selector\":\"body[style*=\\\"display: none\\\"]\",\"action\":[\"remove-attr\",\"style\"]}]","[{\"selector\":\".base-asset-video\",\"action\":[\"remove-class\",\"base-asset-video\"]}]","[{\"selector\":\".subredditvars-r-ublockorigin [role=\\\"dialog\\\"] > div\",\"action\":[\"style\",\"width: auto !important\"],\"cssable\":true}]","[{\"selector\":\"community-highlight-card[subreddit-prefixed-name=\\\"r/uBlockOrigin\\\"][src]\",\"action\":[\"remove-attr\",\"src\"]}]","[{\"selector\":\"html:has(> head > :is(meta[name=\\\"subscriber_only\\\"][content=\\\"false\\\"], meta[property=\\\"og:url\\\"]:not([content*=\\\".html\\\"]))) script\",\"tasks\":[[\"has-text\",\"/googletagmanager|window\\\\.sophi/\"]]}]","[{\"selector\":\"[onclick$=\\\"return !ga.loaded;\\\"]\",\"action\":[\"remove-attr\",\"onclick\"]}]","[{\"selector\":\"#page-header > header\",\"action\":[\"style\",\"position: absolute !important;\"],\"cssable\":true},{\"selector\":\"section#home > #hero.pinned\",\"action\":[\"style\",\"position: absolute !important;\"],\"cssable\":true}]","[{\"selector\":\"#logoContainer\",\"action\":[\"style\",\"top: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\"gdwc-recommendations.is-hidden\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"[data-testid=\\\"connection-toast\\\"]\",\"action\":[\"style\",\"margin-top: 330px !important;\"],\"cssable\":true}]","[{\"selector\":\"#ad-container\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#comment-section\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#nn_bfa_wrapper + .container\",\"action\":[\"style\",\"margin-top: 50px !important;\"],\"cssable\":true},{\"selector\":\".section-advert-banner--top\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"html\",\"action\":[\"style\",\"visibility: visible !important;\"],\"cssable\":true}]","[{\"selector\":\"#fluid_video_wrapper_video-page-player\",\"action\":[\"remove-attr\",\"style\"]},{\"selector\":\"#video-page-player-blocker\",\"action\":[\"style\",\"pointer-events:none\"],\"cssable\":true}]","[{\"selector\":\"video#diziyou_html5_api\",\"action\":[\"style\",\"display: initial !important;\"],\"cssable\":true}]","[{\"selector\":\".ytlr-horizontal-list-renderer__items > .yt-virtual-list__container > .yt-virtual-list__item--visible.yt-virtual-list__item--selected.yt-virtual-list__item\",\"tasks\":[[\"has-text\",\"Ad\"]]}]","[{\"selector\":\"table.info-table tr:has(td[colspan] .promo-box-any-banner)\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"strong\",\"tasks\":[[\"has-text\",\"/anzeige/i\"]]}]","[{\"selector\":\"div.container\",\"action\":[\"style\",\"margin-top: 0px !important\"],\"cssable\":true}]","[{\"selector\":\".active > ul > li\",\"tasks\":[[\"has-text\",\"Ad:\"]]},{\"selector\":\"div h2\",\"tasks\":[[\"has\",{\"selector\":\"span\",\"tasks\":[[\"matches-css-before\",{\"name\":\"content\",\"pseudo\":\"before\",\"value\":\"Sponsored\"}]]}],[\"spath\",\" + div\"]]},{\"selector\":\"div h2\",\"tasks\":[[\"has\",{\"selector\":\"span\",\"tasks\":[[\"matches-css-before\",{\"name\":\"content\",\"pseudo\":\"before\",\"value\":\"Sponsored\"}]]}]]}]","[{\"selector\":\"[onclick] p\",\"tasks\":[[\"matches-css-before\",{\"name\":\"content\",\"pseudo\":\"before\",\"value\":\"Ad \"}],[\"xpath\",\"../..\"],[\"not\",{\"selector\":\"p\",\"tasks\":[[\"has-text\",\"/MAHA/i\"]]}],[\"not\",{\"selector\":\"p\",\"tasks\":[[\"has-text\",\"/Times/i\"]]}]]}]","[{\"selector\":\"\",\"tasks\":[[\"xpath\",\"//span[(text()='Ad')]/../../..\"]]}]","[{\"selector\":\"H2\",\"tasks\":[[\"has-text\",\"/Promoted/\"],[\"spath\",\" + DIV\"]]}]","[{\"selector\":\"h2\",\"tasks\":[[\"has-text\",\"/Promoted/\"]]}]","[{\"selector\":\".brand_ctn\",\"tasks\":[[\"has-text\",\"/Ad:/\"],[\"xpath\",\"../..\"]]},{\"selector\":\"p\",\"tasks\":[[\"has-text\",\"/Ad:/\"],[\"xpath\",\"../../..\"]]},{\"selector\":\"span\",\"tasks\":[[\"has-text\",\"/Ad:/\"],[\"xpath\",\"../..\"]]}]","[{\"selector\":\".banner\",\"action\":[\"remove\",\"\"]},{\"selector\":\"[id^=\\\"ad\\\"]\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"[id^=\\\"banner-300x250\\\"]\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"#zedoads1\",\"action\":[\"style\",\"height: 1px !important\"],\"cssable\":true},{\"selector\":\"#zedoads2\",\"action\":[\"style\",\"height: 1px !important\"],\"cssable\":true}]","[{\"selector\":\"#story-maincontent\",\"action\":[\"style\",\"display: block !important\"],\"cssable\":true},{\"selector\":\"#zedotopnavads\",\"action\":[\"style\",\"height: 1px !important\"],\"cssable\":true},{\"selector\":\"#zedotopnavads1\",\"action\":[\"style\",\"height: 1px !important\"],\"cssable\":true}]","[{\"selector\":\".adblockcontainer\",\"action\":[\"style\",\"display: block !important\"],\"cssable\":true}]","[{\"selector\":\"\",\"action\":[\"style\",\"height: 0 !important; overflow: hidden !important;\"],\"tasks\":[[\"matches-path\",\"/^\\\\/(\\\\?[a-z]+=\\\\w+)?$/\"],[\"spath\",\" div[aria-posinset] :is(h3, h4) span > a[href]:not([href^=\\\"/groups/\\\"]):not([href*=\\\"section_header_type\\\"])\"],[\"matches-attr\",{\"attr\":\"href\",\"value\":\"/__cft__\\\\[0\\\\]=[-\\\\w]{290,}/\"}],[\"upward\",\"div[aria-posinset]\"]]},{\"selector\":\"\",\"action\":[\"style\",\"height: 0 !important; overflow: hidden !important;\"],\"tasks\":[[\"matches-path\",\"/search/\"],[\"spath\",\" div[role=\\\"article\\\"] span > a[href]:not([href^=\\\"/groups/\\\"]):not([href*=\\\"section_header_type\\\"])\"],[\"matches-attr\",{\"attr\":\"href\",\"value\":\"/__cft__\\\\[0\\\\]=[-\\\\w]{265,}/\"}],[\"upward\",\"[role=\\\"article\\\"]\"]]},{\"selector\":\"#stream_pagelet div[id^=\\\"hyperfeed_story_id_\\\"]\",\"tasks\":[[\"if\",{\"selector\":\"h6\",\"tasks\":[[\"has-text\",\"People You May Know\"]]}]]},{\"selector\":\"#watch_feed div:not([class]) > div:not([class]) div[class] [class] > a[href*=\\\"utm_source=facebook\\\"] span[class] > span[class][style*=\\\"-webkit-line-clamp\\\"]\",\"action\":[\"style\",\"height: 0 !important; overflow: hidden !important;\"],\"tasks\":[[\"has-text\",\"広告\"],[\"upward\",\"div:not([class]) > div:not([class])\"]]},{\"selector\":\"#watch_feed div:not([class]) > div:not([class]) div[class] span[class] > a span[aria-labelledby]\",\"action\":[\"style\",\"height: 0 !important; overflow: hidden !important;\"],\"tasks\":[[\"has\",{\"selector\":\"> span[style=\\\"display: flex;\\\"] > span[class]\",\"tasks\":[[\"has-text\",\"/^S$/\"]]}],[\"has\",{\"selector\":\"> span[style=\\\"display: flex;\\\"] > span[class]\",\"tasks\":[[\"has-text\",\"/^p$/\"]]}],[\"has\",{\"selector\":\"> span[style=\\\"display: flex;\\\"] > span[class]\",\"tasks\":[[\"has-text\",\"/^d$/\"]]}],[\"upward\",\"div:not([class]) > div:not([class])\"]]},{\"selector\":\"#watch_feed div:not([class]) > div:not([class]) div[class] span[class] > a[aria-label=\\\"広告\\\"]\",\"action\":[\"style\",\"height: 0 !important; overflow: hidden !important;\"],\"tasks\":[[\"upward\",\"div:not([class]) > div:not([class])\"]]},{\"selector\":\".ego_column\",\"tasks\":[[\"if\",\"a[href^=\\\"/campaign/landing\\\"]\"]]},{\"selector\":\".ego_section\",\"tasks\":[[\"if\",\"a[href^=\\\"/ad_campaign\\\"]\"]]},{\"selector\":\".pagelet-group .pagelet\",\"tasks\":[[\"has\",{\"selector\":\"a\",\"tasks\":[[\"has-text\",\"/Sponsored|Create ad|Crear un anuncio|Publicidad/\"]]}]]},{\"selector\":\".userContentWrapper > div div > span > span\",\"tasks\":[[\"has-text\",\"/^Suggested Post$/\"]]},{\"selector\":\"div[aria-describedby]:not([aria-posinset]) :is(h3, h4) span > a[href]:not([href^=\\\"/groups/\\\"]):not([href*=\\\"section_header_type\\\"])\",\"action\":[\"style\",\"height: 0 !important; overflow: hidden !important;\"],\"tasks\":[[\"matches-attr\",{\"attr\":\"href\",\"value\":\"/__cft__\\\\[0\\\\]=[-\\\\w]{290,}/\"}],[\"upward\",\"div[aria-describedby]\"]]},{\"selector\":\"div[aria-posinset]:has(a[aria-label=\\\"広告\\\"])\",\"action\":[\"style\",\"height: 0 !important; overflow: hidden !important;\"],\"cssable\":true},{\"selector\":\"div[id^=\\\"hyperfeed_story_id_\\\"]\",\"tasks\":[[\"has\",{\"selector\":\"div > span:has(abbr .timestampContent)\",\"tasks\":[[\"matches-css\",{\"name\":\"display\",\"value\":\"^none$\"}]]}]]}]","[{\"selector\":\"\",\"tasks\":[[\"matches-path\",\"/marketplace/item\"],[\"spath\",\" a[attributionsrc^=\\\"/privacy_sandbox/\\\"]:is([aria-label$=\\\" anunciante\\\"][aria-label*=\\\" d\\\"], [aria-label=\\\"Lien de l’annonceur\\\"], [aria-label$=\\\"autan pengiklan\\\"], [aria-label=\\\"Adverteerderskakel\\\"], [aria-label=\\\"Link sa nag-advertise\\\"], [aria-label=\\\"Link oglašivača\\\"], [aria-label=\\\"Odkaz od inzerenta\\\"], [aria-label=\\\"Link fra annoncør\\\"], [aria-label=\\\"Werbelink\\\"], [aria-label=\\\"Link ng advertiser\\\"], [aria-label=\\\"Link dell'inserzionista\\\"], [aria-label=\\\"Veza oglašivača\\\"], [aria-label=\\\"Manisautilirijimut kasurvik\\\"], [aria-label=\\\"Kiunganishi cha mtangazaji\\\"], [aria-label=\\\"Lyen konpayi ki fè piblisite a\\\"], [aria-label=\\\"Reklāmdevēja saite\\\"], [aria-label=\\\"Reklamuotojo nuoroda\\\"], [aria-label=\\\"Hirdető hivatkozása\\\"], [aria-label=\\\"Link tar-reklamatur\\\"], [aria-label=\\\"Adverteerderslink\\\"], [aria-label=\\\"Annonsørlenke\\\"], [aria-label=\\\"Link reklamodawcy\\\"], [aria-label=\\\"Link promotor\\\"], [aria-label=\\\"Lidhja e reklamuesit\\\"], [aria-label=\\\"Odkaz na inzerenta\\\"], [aria-label=\\\"Povezava oglaševalca\\\"], [aria-label=\\\"Mainostajan linkki\\\"], [aria-label=\\\"Annonsörlänk\\\"], [aria-label=\\\"Liên kết của nhà quảng cáo\\\"], [aria-label=\\\"Reklamveren bağlantısı\\\"], [aria-label=\\\"Σύνδεσμος διαφημιζόμενου\\\"], [aria-label=\\\"Връзка на рекламодател\\\"], [aria-label=\\\"Линк на огласувач на реклами\\\"], [aria-label=\\\"Сурталчлагчийн холбоос\\\"], [aria-label=\\\"Ссылка рекламодателя\\\"], [aria-label=\\\"Веза оглашивача\\\"], [aria-label=\\\"Посилання рекламодавця\\\"], [aria-label=\\\"რეკლამის განმთავსებლის ბმული\\\"], [aria-label=\\\"קישור של מפרסם\\\"], [aria-label=\\\"ایڈورٹائزر کا لنک\\\"], [aria-label=\\\"رابط المعلن\\\"], [aria-label=\\\"जाहिरातदार लिंक\\\"], [aria-label=\\\"विज्ञापनदाता द्वारा लिंक\\\"], [aria-label=\\\"বিজ্ঞাপনদাতা লিংক\\\"], [aria-label=\\\"বিজ্ঞাপনদাতার লিঙ্ক\\\"], [aria-label=\\\"જાહેરાતકર્તા લિંક\\\"], [aria-label=\\\"అడ్వర్టయిజర్ లింక్\\\"], [aria-label=\\\"പരസ്യദാതാവിന്റെ ലിങ്ക്\\\"], [aria-label=\\\"වෙළඳ ප්‍රචාරක සබැඳිය\\\"], [aria-label=\\\"ลิงก์ผู้ลงโฆษณา\\\"], [aria-label=\\\"광고주 링크\\\"], [aria-label^=\\\"廣告\\\"][aria-label$=\\\"連結\\\"], [aria-label=\\\"广告主提供的链接\\\"], [aria-label=\\\"広告主によるリンク\\\"])\"]]}]","[{\"selector\":\"body\",\"action\":[\"style\",\"overflow: auto !important\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"runCount\"]]}]","[{\"selector\":\"body > .pubTime\",\"action\":[\"style\",\"display: block !important\"],\"cssable\":true},{\"selector\":\"body > .secArticleImage\",\"action\":[\"style\",\"display: block !important\"],\"cssable\":true},{\"selector\":\"body > .secArticleTitle\",\"action\":[\"style\",\"display: block !important\"],\"cssable\":true},{\"selector\":\"body > .storyBody\",\"action\":[\"style\",\"display: block !important\"],\"cssable\":true}]","[{\"selector\":\".a-carousel-card:has(> div > div[cel_widget_id^=\\\"adplacements:\\\"])\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\".ad\",\"action\":[\"style\",\"position:absolute !important; left:-10000px !important; display:block !important; pointer-events: none !important;\"],\"cssable\":true},{\"selector\":\".iba-acceptable\",\"tasks\":[[\"has-text\",\"/Anzeige|Info/\"]]}]","[{\"selector\":\".list-articles > li\",\"tasks\":[[\"has\",{\"selector\":\".icon-addy\",\"tasks\":[[\"matches-css-before\",{\"name\":\"content\",\"pseudo\":\"before\",\"value\":\"^\\\"Anzeige\\\"$\"}]]}]]},{\"selector\":\".sp-article\",\"tasks\":[[\"has\",{\"selector\":\"span\",\"tasks\":[[\"matches-css-before\",{\"name\":\"content\",\"pseudo\":\"before\",\"value\":[\"Anzeige\",\"i\"]}]]}]]},{\"selector\":\"[data-article-id]\",\"tasks\":[[\"has\",{\"selector\":\"[class]\",\"tasks\":[[\"matches-css-before\",{\"name\":\"content\",\"pseudo\":\"before\",\"value\":\"ANZEIGE\"}]]}]]}]","[{\"selector\":\".main-nav .utilities > li\",\"action\":[\"style\",\"margin-left:-0.5px !important\"],\"cssable\":true},{\"selector\":\"div\",\"tasks\":[[\"matches-css-before\",{\"name\":\"content\",\"pseudo\":\"before\",\"value\":[\"Anzeige\",\"i\"]}]]}]","[{\"selector\":\".gnt_n\",\"action\":[\"style\",\"top: 0 !important; margin-top: 0 !important;\"],\"cssable\":true},{\"selector\":\"body > div.gnt_n_w_w\",\"action\":[\"style\",\"margin-bottom: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\".FeedStory.feed_item > div > div\",\"tasks\":[[\"has-text\",\"/by Quora for Business/i\"]]},{\"selector\":\".Toggle.SimpleToggle.ToggleAnswerFooterWrapper > div\",\"tasks\":[[\"has-text\",\"/Promoted/i\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"AaDetector\"]]}]","[{\"selector\":\".center\",\"action\":[\"style\",\"margin-top:50px !important\"],\"cssable\":true}]","[{\"selector\":\"body > a > div[id]\",\"action\":[\"style\",\"background: var(--c-bg, #aae5a3) !important\"],\"cssable\":true}]","[{\"selector\":\"body.pcm-public:not(.skybox-loaded)\",\"action\":[\"style\",\"margin-top: 90px !important;\"],\"cssable\":true},{\"selector\":\"body:not(.skybox-loaded) > header\",\"action\":[\"style\",\"top: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\"#content.sidebar2\",\"action\":[\"style\",\"margin-right: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\".disabled-vscroll\",\"action\":[\"style\",\"overflow: auto !important; position: initial !important;\"],\"cssable\":true}]","[{\"selector\":\"\",\"tasks\":[[\"xpath\",\"//*[contains(text(),\\\"Sponsored\\\")]\"],[\"upward\",2]]}]","[{\"selector\":\"[class]:not(body):not(html)\",\"tasks\":[[\"has-text\",\"/Protect your privacy/i\"]]},{\"selector\":\"[class]:not(body):not(html)\",\"tasks\":[[\"has-text\",\"Sponsored\"]]}]","[{\"selector\":\"\",\"tasks\":[[\"xpath\",\"//strong[contains(text(),\\\"VPN\\\")]/../../..\"]]}]","[{\"selector\":\".content-wrap #inner-wrap\",\"action\":[\"style\",\"height: 100vh !important;\"],\"cssable\":true},{\"selector\":\"body wu-header\",\"action\":[\"style\",\"margin-top: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\"div[id][style=\\\"width: 728px; height: 90px;\\\"]\",\"tasks\":[[\"upward\",\"#pub1\"]]}]","[{\"selector\":\".uppercase\",\"tasks\":[[\"has-text\",\"/advertisement/i\"]]}]","[{\"selector\":\"body.no-scroll\",\"action\":[\"style\",\"overflow: auto !important; position: static !important; width: unset !important;\"],\"cssable\":true}]","[{\"selector\":\"\",\"tasks\":[[\"xpath\",\"//div[starts-with(@id, \\\"dfp-ad\\\")]/../..\"]]},{\"selector\":\"article.story\",\"action\":[\"style\",\"opacity: 1.0 !important;\"],\"cssable\":true}]","[{\"selector\":\"body\",\"action\":[\"style\",\"height: auto !important; overflow: auto !important\"],\"cssable\":true},{\"selector\":\"html\",\"action\":[\"style\",\"height: auto !important; overflow: auto !important\"],\"cssable\":true}]","[{\"selector\":\".btn-danger\",\"tasks\":[[\"has-text\",\"/download/i\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"\\\\'shift\\\\'\"]]},{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"shift\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"admc\"]]}]","[{\"selector\":\".container > [class]\",\"tasks\":[[\"has-text\",\"VPN\"]]},{\"selector\":\".title ~ a[href] .button\",\"tasks\":[[\"upward\",\".container > div\"]]},{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"document.write\"]]}]","[{\"selector\":\"#image_details\",\"action\":[\"style\",\"margin-top: 30px !important\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"self == top\"]]}]","[{\"selector\":\"center\",\"tasks\":[[\"has-text\",\"deal\"]]}]","[{\"selector\":\"\",\"tasks\":[[\"xpath\",\"//*[contains(text(),\\\"Hide your IP\\\")]/..\"]]},{\"selector\":\"ul > li\",\"tasks\":[[\"has-text\",\"/‌/i\"]]}]","[{\"selector\":\"#alphabet, #channels, #divx-container, #hmenu, #inform, #nowlooking, #playerCamBox, #playerMenu, #qcat, #showPlayer, #tabel_tagslist, #video_content, #web_cam, .BaseRoomContents, .buttons, .carouselTopScroll, .carusel-keys-box-ps, .footerdesc, .in_top, .load_more_rel, .mainBoxTitle, .pagIno, .playerContent100pr, .relatedVideo, .right-160px, .videos-related, footer, header, [href^=\\\"/webcams.php\\\"]\",\"tasks\":[[\"others\",\"\"]]},{\"selector\":\"a\",\"tasks\":[[\"matches-attr\",{\"attr\":\"/-h?ref/\",\"value\":\"\"}]]},{\"selector\":\"a\",\"tasks\":[[\"matches-attr\",{\"attr\":\"/^on/\",\"value\":\"/event/\"}]]}]","[{\"selector\":\"#vidPlayer span\",\"tasks\":[[\"has-text\",\"Advertisement\"]]}]","[{\"selector\":\".content\",\"tasks\":[[\"has\",{\"selector\":\"> div\",\"tasks\":[[\"has-text\",\"Branded Content\"]]}]]}]","[{\"selector\":\".video\",\"tasks\":[[\"has\",{\"selector\":\"span\",\"tasks\":[[\"has-text\",\"Live\"]]}]]},{\"selector\":\"[data-vid^=\\\"live-\\\"]\",\"action\":[\"remove\",\"\"]},{\"selector\":\"[href^=\\\"https://go.cam.feet9.com/\\\"]\",\"tasks\":[[\"upward\",3]]},{\"selector\":\"[onclick*=\\\"banner\\\"]\",\"tasks\":[[\"upward\",\".video\"]]}]","[{\"selector\":\"div[class^=\\\"span\\\"] > div.box\",\"tasks\":[[\"has\",{\"selector\":\"> .title > div\",\"tasks\":[[\"has-text\",\"Advertisement\"]]}]]}]","[{\"selector\":\"#web\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"exdynsrv\"]]}]","[{\"selector\":\"#wrapper\",\"action\":[\"style\",\"padding-top: 0 !important;\"],\"cssable\":true},{\"selector\":\".advert\",\"action\":[\"style\",\"z-index: -999999 !important;\"],\"cssable\":true}]","[{\"selector\":\"body > div#wrapper\",\"action\":[\"style\",\"padding-top: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\".clearfix.branding > .surftipp\",\"tasks\":[[\"has-text\",\"Anzeige\"]]}]","[{\"selector\":\".page-wrap > section\",\"tasks\":[[\"has-text\",\"Download the free\"]]}]","[{\"selector\":\"[data-testid=\\\"trend\\\"]\",\"tasks\":[[\"has-text\",\"/Promoted|Gesponsert|Promocionado|Patrocinat|Sponsorisé|Sponsorizzato|Promowane|Promovido|Реклама|Uitgelicht|Sponsorlu|Promotert|Promoveret|Sponsrad|Mainostettu|Sponzorováno|Promovat|Ajánlott|Προωθημένο|Dipromosikan|Được quảng bá|推廣|推广|推薦|推荐|プロモーション|프로모션|ประชาสัมพันธ์|प्रचारित|বিজ্ঞাপিত|تشہیر شدہ|مُروَّج|تبلیغی|מקודם/\"],[\"upward\",1]]},{\"selector\":\"div[style^=\\\"transform\\\"] h2 > div[style^=\\\"-webkit-line-clamp\\\"] > span\",\"tasks\":[[\"has-text\",\"/^(?:Promoted Post|Promowany Post|Post promovat|プロモポスト)$/\"],[\"upward\",3]]}]","[{\"selector\":\"[id^=\\\"div-gpt-ad\\\"]:not([class])\",\"tasks\":[[\"upward\",\"div[class]\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"wadsBlocking\"]]}]","[{\"selector\":\".InfoPcBolsaAdBlock\",\"tasks\":[[\"xpath\",\"..\"]]}]","[{\"selector\":\".adLinkBar\",\"tasks\":[[\"upward\",\"article[style=\\\"z-index: 1;\\\"]\"]]},{\"selector\":\"[id^=\\\"t3\\\"].promotedlink\",\"tasks\":[[\"upward\",\".rpBJOHq2PR60pnwJlUyP0 > div\"]]},{\"selector\":\"div[id*=\\\"sidebar\\\"][data-before-content=\\\"advertisement\\\"]\",\"tasks\":[[\"upward\",3]]}]","[{\"selector\":\"body\",\"action\":[\"style\",\"background: none !important; overflow: auto !important;\"],\"cssable\":true}]","[{\"selector\":\".position-absolute\",\"action\":[\"style\",\"opacity: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\".selected\",\"tasks\":[[\"has-text\",\"Ads\"]]}]","[{\"selector\":\".elementor-row\",\"tasks\":[[\"has-text\",\"[Anzeige]\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"FingerprintJS\"]]}]","[{\"selector\":\".onp-sl-content\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\".dd-nav-global\",\"action\":[\"style\",\"top: 0 !important; transform: none !important;\"],\"cssable\":true}]","[{\"selector\":\"table > tbody > tr\",\"tasks\":[[\"has-text\",\"Advertisement\"]]}]","[{\"selector\":\"#site-wrapper\",\"action\":[\"style\",\"padding-top: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\".js-toggle-content-wrapper a[href^=\\\"/link/out/\\\"]\",\"tasks\":[[\"upward\",\".js-toggle-content-wrapper\"]]}]","[{\"selector\":\".uk-panel.widget-text\",\"action\":[\"style\",\"height: 0px !important; visibility: collapse;\"],\"cssable\":true}]","[{\"selector\":\"#bodyContent\",\"action\":[\"style\",\"width:100%!important\"],\"cssable\":true}]","[{\"selector\":\"#info\",\"action\":[\"style\",\"display: block !important\"],\"cssable\":true}]","[{\"selector\":\".row.divider\",\"tasks\":[[\"has-text\",\"/sponsor|press releases/i\"]]},{\"selector\":\".widget\",\"tasks\":[[\"has-text\",\"/advert|sponsor/i\"]]}]","[{\"selector\":\"\",\"tasks\":[[\"xpath\",\"//*[contains(text(),\\\"VPN\\\")]\"],[\"upward\",2]]}]","[{\"selector\":\"[href^=\\\"/plugout.php\\\"]\",\"tasks\":[[\"upward\",\"[class^=\\\"col-sm\\\"]\"]]}]","[{\"selector\":\".wpsafe-top > div > center\",\"tasks\":[[\"has-text\",\"Advertisements\"]]}]","[{\"selector\":\"#list-eps\",\"action\":[\"style\",\"display:block!important\"],\"cssable\":true}]","[{\"selector\":\".les-title\",\"tasks\":[[\"has-text\",\"HD\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"axtd\"]]}]","[{\"selector\":\"form#go-popup\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\".ad-wrapper\",\"tasks\":[[\"upward\",\"div.region-sidebar-first-wrapper\"]]}]","[{\"selector\":\"[href]\",\"tasks\":[[\"has-text\",\"PLAY\"]]}]","[{\"selector\":\"div.border_radius\",\"tasks\":[[\"has-text\",\"Advertisement\"]]}]","[{\"selector\":\"#gameplay > iframe\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#blockblockB\",\"action\":[\"style\",\"display: block!important;\"],\"cssable\":true}]","[{\"selector\":\"#workspace\",\"action\":[\"style\",\"right: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\".col-sm-4\",\"tasks\":[[\"has-text\",\"Advertisement\"]]},{\"selector\":\"div\",\"tasks\":[[\"has\",{\"selector\":\"> div:has(> .adsbygoogle)\"}]]},{\"selector\":\"embed\",\"action\":[\"style\",\"display:inherit!important\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"0x3\"]]}]","[{\"selector\":\".head\",\"tasks\":[[\"has-text\",\"Adv\"]]},{\"selector\":\"tr\",\"tasks\":[[\"has-text\",\"VPN\"]]}]","[{\"selector\":\".postcontainer\",\"tasks\":[[\"has\",{\"selector\":\".usertitle\",\"tasks\":[[\"has-text\",\"Publicidade\"]]}]]}]","[{\"selector\":\".adsbygoogle\",\"action\":[\"style\",\"height: 1px !important;\"],\"cssable\":true}]","[{\"selector\":\".uk-card-secondary\",\"tasks\":[[\"has-text\",\"VPN\"]]}]","[{\"selector\":\".widget-title\",\"tasks\":[[\"has-text\",\"AD\"]]}]","[{\"selector\":\"body *\",\"action\":[\"remove\",\"\"],\"tasks\":[[\"matches-css\",{\"name\":\"margin\",\"value\":\"auto\"}],[\"matches-css\",{\"name\":\"width\",\"value\":\"^[2-3]{1}[0-9]{2}(\\\\.[0-9]+)?px$\"}],[\"matches-css\",{\"name\":\"height\",\"value\":\"^[2-3]{1}[0-9]{2}(\\\\.[0-9]+)?px$\"}],[\"matches-css\",{\"name\":\"display\",\"value\":\"block|table\"}]]}]","[{\"selector\":\"li\",\"tasks\":[[\"has\",{\"selector\":\".viewLink\",\"tasks\":[[\"has-text\",\"AD |\"]]}]]}]","[{\"selector\":\".widget-title\",\"tasks\":[[\"has-text\",\"Adv\"]]}]","[{\"selector\":\"#af-all\",\"action\":[\"style\",\"margin-top: 4em;\"],\"cssable\":true}]","[{\"selector\":\".theme_article.sidebar_increase\",\"action\":[\"style\",\"height:0px !important\"],\"cssable\":true}]","[{\"selector\":\"#asg-inplayer-block\",\"tasks\":[[\"upward\",4]]}]","[{\"selector\":\"div.row\",\"tasks\":[[\"has-text\",\"in HD\"]]},{\"selector\":\"table.movie_version\",\"tasks\":[[\"has-text\",\"Promo\"]]}]","[{\"selector\":\"h2.widget-title\",\"tasks\":[[\"has-text\",\"Advertisement\"]]}]","[{\"selector\":\"div[id^=\\\"imCell_\\\"][class=\\\"\\\"]\",\"tasks\":[[\"has-text\",\"/Advertisement/i\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"toscr\\\\'\"]]},{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"}(window);\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\",window\\\\);\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"(window);\"]]}]","[{\"selector\":\".widget_custom_html ins\",\"tasks\":[[\"upward\",\".widget_custom_html\"]]}]","[{\"selector\":\".ad-loading\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"#adter\",\"tasks\":[[\"upward\",3]]},{\"selector\":\".single-entry-titles\",\"tasks\":[[\"has-text\",\"Sponsor\"]]}]","[{\"selector\":\"\",\"tasks\":[[\"xpath\",\"//div[contains(text(),\\\"Advert\\\")]\"]]},{\"selector\":\".composite-branding.branding\",\"tasks\":[[\"has-text\",\"/sponsored/i\"],[\"xpath\",\"..\"]]}]","[{\"selector\":\"#jeocontainer > span\",\"tasks\":[[\"has-text\",\"Promoted\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"btoa\"]]}]","[{\"selector\":\"a.extern[href^=\\\"//www.amazon.de/\\\"]\",\"tasks\":[[\"upward\",2]]}]","[{\"selector\":\".happy-player-beside, .happy-section, .widget_execphp\",\"tasks\":[[\"has-text\",\"/Advertisement|ExoLoader/\"]]}]","[{\"selector\":\".adsbygoogle\",\"action\":[\"style\",\"max-height: 1px !important;\"],\"cssable\":true}]","[{\"selector\":\"\",\"tasks\":[[\"xpath\",\"//a[contains(text(),\\\"VPN\\\")]/../../..\"]]}]","[{\"selector\":\".banner-inner\",\"action\":[\"style\",\"width: 0 !important;\"],\"cssable\":true},{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"adb_detected\"]]}]","[{\"selector\":\".spot-thumbs > .right\",\"action\":[\"style\",\"height:1px !important\"],\"cssable\":true}]","[{\"selector\":\"#player_img\",\"tasks\":[[\"upward\",2]]}]","[{\"selector\":\"body\",\"action\":[\"style\",\"margin-top: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\".links_table > .fix-table > table > tbody > tr\",\"tasks\":[[\"has-text\",\"Patrocinador\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"/aclib|runPop/\"]]}]","[{\"selector\":\"input[value^=\\\"http\\\"]\",\"action\":[\"style\",\"width: 70% !important\"],\"cssable\":true}]","[{\"selector\":\"#content-embed\",\"action\":[\"style\",\"display: block!important\"],\"cssable\":true}]","[{\"selector\":\".video-block-happy-absolute\",\"tasks\":[[\"upward\",\".order-1\"]]}]","[{\"selector\":\"\",\"tasks\":[[\"xpath\",\"//*[(text()=\\\"AD\\\")]/..\"]]},{\"selector\":\".w-100\",\"tasks\":[[\"has-text\",\"Advertisement\"]]},{\"selector\":\"html[style=\\\"overflow: hidden;\\\"]\",\"action\":[\"style\",\"overflow: auto !important;\"],\"cssable\":true},{\"selector\":\"section > div\",\"tasks\":[[\"has-text\",\"/^AD$/\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"google_ad_client\"]]}]","[{\"selector\":\"#main, #ielement\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#ava-game_container\",\"action\":[\"style\",\"display:inherit!important\"],\"cssable\":true},{\"selector\":\"#wrapped-content\",\"action\":[\"style\",\"display:inherit!important\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"window.adsbygoogle\"]]}]","[{\"selector\":\".banotset\",\"tasks\":[[\"upward\",3]]}]","[{\"selector\":\"#wpsafe-generate, #wpsafe-link\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#wpsafe-generate, #wpsafe-link\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\".im_outer_x\",\"tasks\":[[\"upward\",2]]},{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"myreadCookie/\"]]}]","[{\"selector\":\".advertising\",\"tasks\":[[\"upward\",2]]}]","[{\"selector\":\".banner\",\"tasks\":[[\"upward\",\".block\"]]}]","[{\"selector\":\"#player-container\",\"tasks\":[[\"has-text\",\"Close ad\"]]}]","[{\"selector\":\"#adBanner\",\"action\":[\"style\",\"height:25px !important;left:-3000px !important;position:absolute !important\"],\"cssable\":true}]","[{\"selector\":\"#main > ins.adsbygoogle\",\"action\":[\"style\",\"position: absolute !important; left: -4000px !important;\"],\"cssable\":true},{\"selector\":\"#sidebar > ins.adsbygoogle\",\"action\":[\"style\",\"position: absolute !important; left: -4000px !important;\"],\"cssable\":true},{\"selector\":\".side_banner\",\"action\":[\"style\",\"position: absolute !important; left: -4000px !important;\"],\"cssable\":true},{\"selector\":\"ins.adsbygoogle-noablate\",\"action\":[\"style\",\"position: absolute !important; left: -4000px !important;\"],\"cssable\":true}]","[{\"selector\":\".adsbygoogle\",\"tasks\":[[\"upward\",\".widget\"]]}]","[{\"selector\":\"body.swal2-shown > [aria-hidden=\\\"true\\\"]\",\"action\":[\"style\",\"filter: none !important\"],\"cssable\":true}]","[{\"selector\":\"\",\"tasks\":[[\"xpath\",\"//span[contains(text(),\\\"Advert\\\")]/../..\"]]},{\"selector\":\"td\",\"tasks\":[[\"has\",{\"selector\":\"> span[class]\",\"tasks\":[[\"has-text\",\"Advert\"]]}]]}]","[{\"selector\":\".active.dimmer.ui\",\"tasks\":[[\"has-text\",\"/Wait|Skip/i\"]]}]","[{\"selector\":\".panel-title\",\"tasks\":[[\"has-text\",\"REKLAM\"]]},{\"selector\":\"div.col-xs-12\",\"tasks\":[[\"has-text\",\"MMPORG OYUNLAR\"]]}]","[{\"selector\":\".table-hover.table > tbody > tr\",\"tasks\":[[\"has-text\",\"Descargar Premium\"]]}]","[{\"selector\":\"noscript\",\"action\":[\"remove\",\"\"],\"tasks\":[[\"has-text\",\"Adblocker\"]]}]","[{\"selector\":\"div.adsbygoogle.prebid.adocean.ado.ad.ads.advert.banner.reklama.linkSponsorowany.adsense.advertisments.reklama-top.adv_container\",\"action\":[\"style\",\"display: block !important\"],\"cssable\":true}]","[{\"selector\":\"a[href*=\\\".yabo816.\\\"]\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"[id^=\\\"sidebar-stream-\\\"] > h4\",\"tasks\":[[\"has-text\",\"Advertisement\"]]}]","[{\"selector\":\".title-section\",\"tasks\":[[\"has-text\",\"/adv/i\"]]}]","[{\"selector\":\"#bodyContent\",\"action\":[\"style\",\"width:100% !important\"],\"cssable\":true},{\"selector\":\"li.top-results__item span\",\"tasks\":[[\"has-text\",\"Sponsored\"],[\"upward\",\"li\"]]}]","[{\"selector\":\".wide_boxcontent\",\"tasks\":[[\"has-text\",\"/adb/i\"]]},{\"selector\":\"div[data-width][style*=\\\"background-image: url\\\"]\",\"action\":[\"style\",\"background: none !important\"],\"cssable\":true}]","[{\"selector\":\".ads-between-post\",\"tasks\":[[\"upward\",\".post-item\"]]}]","[{\"selector\":\".mobile-leaderboard-320-50\",\"tasks\":[[\"upward\",\"[style]\"]]}]","[{\"selector\":\"html\",\"action\":[\"style\",\"overflow: auto !important\"],\"cssable\":true}]","[{\"selector\":\".viewtable\",\"tasks\":[[\"has\",{\"selector\":\"> center\",\"tasks\":[[\"has-text\",\"▼ Scroll down to Continue ▼\"]]}],[\"spath\",\" > a[href][target=\\\"_blank\\\"]\"]]}]","[{\"selector\":\".js-toggle-content-wrapper a[href^=\\\"https://boyfriend.show/\\\"][rel=\\\"sponsored\\\"]\",\"tasks\":[[\"upward\",\".js-toggle-content-wrapper\"]]}]","[{\"selector\":\"#scroll.hidden, .footerLink.hidden\",\"action\":[\"style\",\"display: block!important\"],\"cssable\":true}]","[{\"selector\":\"#clickfakeplayer\",\"action\":[\"remove-attr\",\"href\"]}]","[{\"selector\":\"a[onclick][target]\",\"tasks\":[[\"upward\",2]]}]","[{\"selector\":\"div[class^=\\\"css-\\\"]\",\"tasks\":[[\"matches-css-before\",{\"name\":\"content\",\"pseudo\":\"before\",\"value\":\"ADVERTISEMENT\"}]]},{\"selector\":\"div[id=\\\"__next\\\"] > div[class^=\\\"css-\\\"] > aside\",\"tasks\":[[\"has\",{\"selector\":\"> div\",\"tasks\":[[\"matches-css-before\",{\"name\":\"content\",\"pseudo\":\"before\",\"value\":\"ADVERTISEMENT\"}]]}]]},{\"selector\":\"div[id=\\\"__next\\\"] > div[class^=\\\"css-\\\"] > div > section > div\",\"tasks\":[[\"matches-css-before\",{\"name\":\"content\",\"pseudo\":\"before\",\"value\":\"ADVERTISEMENT\"}]]}]","[{\"selector\":\".adsbygoogle\",\"action\":[\"style\",\"visibility: collapse !important\"],\"cssable\":true}]","[{\"selector\":\"#botaoLink\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#wrapfabtest\",\"action\":[\"style\",\"height:1px !important;width:1px !important\"],\"cssable\":true}]","[{\"selector\":\"[id=\\\"colunas\\\"]\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#adkit_billboard\",\"action\":[\"style\",\"padding-top: 0px!important;\"],\"cssable\":true}]","[{\"selector\":\"*::selection\",\"action\":[\"style\",\"background-color:#338FFF!important\"],\"cssable\":true}]","[{\"selector\":\"center, .main-content\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#go_d2\",\"action\":[\"style\",\"display: inline-block !important;\"],\"cssable\":true}]","[{\"selector\":\"#wpsafe-link\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#wpsafe-link, .wpsafelink-multiple-pages\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#page\",\"action\":[\"style\",\"min-height: initial !important;\"],\"cssable\":true},{\"selector\":\"#tp-snp2\",\"action\":[\"style\",\"display: block !important\"],\"cssable\":true},{\"selector\":\".captcha-check, #tp-snp2, #countdown\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#tp98, #btn6\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"center, [src*=\\\"google.com/recaptcha/\\\"]\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\".elementor-location-footer\",\"action\":[\"style\",\"clip-path: circle(0) !important;\"],\"cssable\":true}]","[{\"selector\":\".container > center\",\"tasks\":[[\"others\",\"\"]]},{\"selector\":\".container\",\"action\":[\"style\",\"font-size: 0px !important;\"],\"cssable\":true},{\"selector\":\".getlink, #getlink\",\"action\":[\"remove-attr\",\"disabled\"]}]","[{\"selector\":\"form\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#wpsafe-link, #section2\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#wpsafe-link, #section2\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#yuidea-snp\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#tie-wrapper\",\"action\":[\"style\",\"min-height:initial! important;\"],\"cssable\":true}]","[{\"selector\":\"#gotolink, #getlink, #notarobot, .bt-success, #waiting, #pop-button, .modal-content, [src*=\\\"cloudflare.com\\\"]\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#gotolink[disabled]\",\"action\":[\"remove-attr\",\"disabled\"]}]","[{\"selector\":\"#tp98, #jatinbtn-continue\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#tp98, #jatinbtn-continue\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#btn6\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#btn6\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#btn6, #tp98\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#btn6, #tp98\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#yuidea-snp, #btn6\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#yuidea-snp, #btn6, #yuidea, #countdown\",\"tasks\":[[\"others\",\"\"]]},{\"selector\":\"#yuidea-snp, #btn6, center, [src*=\\\"google.com/recaptcha\\\"]\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#makingdifferenttimer\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"center\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\".no_display\",\"action\":[\"style\",\"display: block!important; opacity: 1!important\"],\"cssable\":true},{\"selector\":\"h4, .get_btn\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\".banner-page .container.links\",\"action\":[\"style\",\"height: fit-content! important;\"],\"cssable\":true}]","[{\"selector\":\"#iframe_id, .text-left\",\"action\":[\"style\",\"clip-path: circle(0) !important;\"],\"cssable\":true}]","[{\"selector\":\"#step, #next, #scroll, #glink, #countdown, #surl, #ctext, .btn-danger.btn\",\"tasks\":[[\"others\",\"\"]]},{\"selector\":\"#surl\",\"action\":[\"remove-class\",\"disabled\"]}]","[{\"selector\":\".centered, [src*=\\\"iamnotrobot.png\\\"], #wpsafe-link, #wpsafelink-landing, #wpsafe-generate\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#submitBtn, #go_d, #wolfexe-snp\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#submitBtn, #go_d, #wolfexe-snp\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"form [id][style=\\\"display: none;\\\"]\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"form[id]\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\".text-center\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"htmls\"]]}]","[{\"selector\":\"\",\"tasks\":[[\"xpath\",\"//*[contains(text(),\\\"allow ads\\\")]\"],[\"upward\",3]]},{\"selector\":\"html, body\",\"action\":[\"style\",\"overflow: auto !important;\"],\"cssable\":true}]","[{\"selector\":\"div.text-center[id]\",\"action\":[\"style\",\"height: 100px !important;\"],\"cssable\":true}]","[{\"selector\":\".btn-primary\",\"action\":[\"style\",\"visibility: visible !important;\"],\"cssable\":true}]","[{\"selector\":\".adtester-container\",\"action\":[\"style\",\"min-height: 0px !important; max-height: 1px !important; opacity: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\".result_content_ff\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#wpsafelinkhuman, #wpsafe-link\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#wpsafelinkhuman, #wpsafe-link\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#wpsafe-link\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#pro-continue, #pro-btn, #my-btn\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#pro-continue, #pro-btn, #my-btn\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#my-btn, #my-btn2\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#my-btn, #my-btn2\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#gourl\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#gourl\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#wpsafe-generate, #wpsafe-link\",\"action\":[\"style\",\"display: block !important\"],\"cssable\":true}]","[{\"selector\":\".buttondownload\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\".buttonnya\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"form > div[id][style=\\\"display: none;\\\"]\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#tristana, #_append, #myDiv\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#link\",\"action\":[\"remove-attr\",\"disabled\"]},{\"selector\":\"#link, center, #yuidea-snp, #btn6\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#link1s-snp\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"div#wpsafe-link\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"div#wpsafe-link\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#tp-generate, #tp-snp2\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#wpsafe-wait1, #wpsafe-link\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#landing, .soractrl\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\".kecil\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#btn11\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#btn2, #btn5, #tp-snp2\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#btn2, #btn5, #tp-snp2\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#yuidea-snp\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"center, [src*=\\\"google.com/recaptcha/\\\"], #yuidea-snp\",\"action\":[\"style\",\"display:block !important\"],\"cssable\":true},{\"selector\":\"center, [src*=\\\"google.com/recaptcha/\\\"], #yuidea-snp\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#tp-snp2\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#tp-snp2\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#cross-snp2\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\".g-recaptcha, #cross-verify-go, .captcha-check, [src*=\\\"google.com/recaptcha/\\\"]\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#btn11, #tp-snp2, #rtg, #btn6, #wpsafe-snp\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#btn11, #tp-snp2, #rtg, #btn6, #wpsafe-snp\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#tp98, #btn6\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#tp-snp2, #cross-snp2\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#rtg-snp2\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#rtg-snp2\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#tp-snp2, #cross-snp2\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#tp-snp2, #cross-snp2, .tp-top\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#rtg-snp2, #rtg-snp21, [id^=\\\"Step\\\"]\",\"tasks\":[[\"others\",\"\"]]},{\"selector\":\"[id^=\\\"rtg\\\"], .continue_btn, [class*=\\\"rtg\\\"]\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"div.step_box > h4, #rtg-snp-btn, #rtg-snp21\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#hometimerstartbtn, #hometimer, #yuidea-btmbtn, #btn6\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#hometimerstartbtn, #hometimer, #yuidea-btmbtn, #btn6\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#form > [id], [id^=\\\"wpsafe-link\\\"], [id^=\\\"plan\\\"], .wpsafelink-button, #wpsafelinkhuman, [id][style=\\\"display: none;\\\"]\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#notarobot, #gotolink\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#notarobot, #gotolink\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#donead\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"a[onclick*=\\\"adlink()\\\"]\",\"action\":[\"remove-attr\",\"onclick\"]}]","[{\"selector\":\"a.get-link.disabled\",\"action\":[\"remove-class\",\"disabled\"]}]","[{\"selector\":\"#tp-snp2\",\"action\":[\"style\",\"display:block !important; height:70px !important; width:260px !important; background:linear-gradient(to right,#eb3349 40%,#f45c43) !important; position:fixed !important; top:20% !important; left:50% !important; transform:translate(-50%,-50%) !important;\"],\"cssable\":true},{\"selector\":\"#tp-snp2, .captcha-check\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#notarobot, #btn7\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#notarobot, #btn7\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#file\",\"action\":[\"remove-attr\",\"disabled\"]},{\"selector\":\"#file\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#username[required]\",\"action\":[\"remove-attr\",\"required\"]}]","[{\"selector\":\"#tp982, #btn6\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#tp982, #btn6\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#getnewlink, .wp2continuelink, .getmylink\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#getnewlink, .wp2continuelink, .getmylink, #newtimer\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#link, #btn6, #yuidea-snp\",\"action\":[\"remove-attr\",\"disabled\"]}]","[{\"selector\":\"#tp98, #btn6, #tp-snp2\",\"tasks\":[[\"others\",\"\"]]},{\"selector\":\"#tp98[disabled]\",\"action\":[\"remove-attr\",\"disabled\"]}]","[{\"selector\":\".text-primary.inline-block, button.text-primary\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#btn2, #tp-snp2\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#btn2, #tp-snp2\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#bottomButton\",\"action\":[\"style\",\"display: block !important\"],\"cssable\":true},{\"selector\":\"body\",\"action\":[\"remove-attr\",\"style\"]}]","[{\"selector\":\".box-main\",\"action\":[\"style\",\"font-size: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\"#top_nav, .rd_btn, .soractrl\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#top_nav, .rd_btn, .soractrl, .large\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#wpsafe-link\",\"action\":[\"style\",\"display:block !important;\"],\"cssable\":true}]","[{\"selector\":\"#btnfianl\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"/AdbModel|showPopup/\"]]}]","[{\"selector\":\".btn-success, .btn-primary\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\".btn-success, .btn-primary\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#my-btn, #pro-continue, #pro-link\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#my-btn, #pro-continue, #pro-link\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"form > [id][style=\\\"display: none;\\\"]\",\"action\":[\"style\",\"display:block !important;\"],\"cssable\":true}]","[{\"selector\":\".RecurringadBanner\",\"action\":[\"style\",\"clip-path: circle(0) !important;\"],\"cssable\":true}]","[{\"selector\":\".circular-progress, button, b > p > span\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"form > div\",\"action\":[\"style\",\"display: flex !important;\"],\"cssable\":true}]","[{\"selector\":\"form button[id]\",\"action\":[\"style\",\"display: block !important; margin-top: 380px !important; margin-left: 10px !important; height: 70px !important; width: 260px !important; background: linear-gradient(to right,#eb3349 40%,#f45c43) ! important;\"],\"cssable\":true},{\"selector\":\"form button[id], .box-main, .captcha-check\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#dlp, #dlndiv, #plzw, div:has(> .icon), nav\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"iframe[id^=\\\"google_ads_iframe_/\\\"], div[id^=\\\"adm-container-\\\"]\",\"action\":[\"style\",\"clip-path: circle(0) !important;\"],\"cssable\":true}]","[{\"selector\":\"#wpsafe-link, .text-center.wpsafe-top > div > h1\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#info-message\",\"tasks\":[[\"has-text\",\"ADBLOCK\"]]},{\"selector\":\"span[style]\",\"tasks\":[[\"has\",{\"selector\":\"> span[style]\",\"tasks\":[[\"has-text\",\"ADVERTISEMENT\"]]}]]}]","[{\"selector\":\".linkcontain > button\",\"tasks\":[[\"has-text\",\"Download Link\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"detectAdBlock\"]]}]","[{\"selector\":\"#btn7, #cross-snp2\",\"action\":[\"style\",\"display: block !important; margin-top: 180px !important;\"],\"cssable\":true},{\"selector\":\"#btn7, .captcha-check, .text-center.cross-top, #cross-snp2\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#rtg-snp2, #rtg-snp21\",\"tasks\":[[\"others\",\"\"]]},{\"selector\":\"#rtg-snp2, #rtg-snp21[style=\\\"display: none;\\\"]\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#original\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#continue-button\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#dwform\",\"action\":[\"style\",\"margin-top: -180px !important;\"],\"cssable\":true},{\"selector\":\"#outer-wrapper\",\"action\":[\"style\",\"clip-path: circle(0) !important;\"],\"cssable\":true},{\"selector\":\".button-group, #lsdwnbtn, #dwform, #btngroup\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"===\"],[\"has-text\",\"/[\\\\w\\\\W]{14000}/\"]]}]","[{\"selector\":\".slideshow__desktop-ad\",\"action\":[\"style\",\"max-height:20px\"],\"cssable\":true}]","[{\"selector\":\".swiper-slide [data-testid=\\\"topStories-cardSlider-ad\\\"]\",\"tasks\":[[\"upward\",\".swiper-slide\"]]}]","[{\"selector\":\".content.page.page-video .video-content > div[class] > div > div[class] > div[class][style^=\\\"background-image:\\\"]\",\"action\":[\"style\",\"background-image: none !important;\"],\"cssable\":true},{\"selector\":\".page-video > div.video-videos-slider ~ div[class]\",\"tasks\":[[\"matches-css\",{\"name\":\"justify-content\",\"value\":\"^center$\"}]]}]","[{\"selector\":\"span:only-child\",\"tasks\":[[\"has-text\",\"/^AD$/\"],[\"upward\",2]]}]","[{\"selector\":\".underplayer\",\"action\":[\"style\",\"min-height: initial !important;\"],\"cssable\":true},{\"selector\":\"h5\",\"tasks\":[[\"has-text\",\"Advertisement\"]]}]","[{\"selector\":\".inside-list-boxes\",\"tasks\":[[\"upward\",1]]}]","[{\"selector\":\".adstrick > .video-item\",\"action\":[\"style\",\"clear: none !important;\"],\"cssable\":true}]","[{\"selector\":\"div[class^=\\\"mikex\\\"]\",\"tasks\":[[\"upward\",1]]}]","[{\"selector\":\".MuiGrid-item div[style^=\\\"position\\\"] > div\",\"tasks\":[[\"has-text\",\"Skip Ad\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"WebAssembly\"]]}]","[{\"selector\":\"*\",\"action\":[\"style\",\"filter: none !important\"],\"cssable\":true}]","[{\"selector\":\"iframe\",\"tasks\":[[\"upward\",2]]}]","[{\"selector\":\".item:has(a[href^=\\\"https://hive.arf.dev\\\"])\",\"tasks\":[[\"upward\",\"div[class]\"]]}]","[{\"selector\":\".img_box\",\"tasks\":[[\"has-text\",\"Anzeige\"]]},{\"selector\":\"aside ins\",\"tasks\":[[\"upward\",\"aside\"]]}]","[{\"selector\":\"html > iframe[style^=\\\"display:\\\"]:not([src])\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\".block_area iframe\",\"tasks\":[[\"upward\",\".block_area\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"antiblock\"]]}]","[{\"selector\":\"a[href^=\\\"https://ballexclusives.com/\\\"][class]\",\"tasks\":[[\"has-text\",\"Refresh\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"onerror\"]]}]","[{\"selector\":\"img[alt]\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"ins.adsbygoogle\",\"action\":[\"style\",\"height: 1px !important; visibility: hidden !important;\"],\"cssable\":true}]","[{\"selector\":\"body\",\"action\":[\"style\",\"background-color: #2D2D2D;\"],\"cssable\":true}]","[{\"selector\":\"div[class^=\\\"Ad-adContainer\\\"]\",\"action\":[\"style\",\"min-height:1px!important;min-width:1px!important;\"],\"cssable\":true}]","[{\"selector\":\".loading-overlay\",\"tasks\":[[\"has-text\",\"ad\"]]}]","[{\"selector\":\"#main-bottom\",\"action\":[\"style\",\"margin-top: 164px !important;\"],\"cssable\":true}]","[{\"selector\":\"body\",\"action\":[\"style\",\"background-image: unset !important;\"],\"cssable\":true}]","[{\"selector\":\"#wrapper-content\",\"action\":[\"style\",\"margin-top:0px !important\"],\"cssable\":true}]","[{\"selector\":\".fluid-magic-subnav-view.desktop-nav-ad .fluid-subnav.fixed, .fluid-magic-subnav-view.mobile-nav-ad .fluid-subnav.fixed\",\"action\":[\"style\",\"top: 0 !important;\"],\"cssable\":true},{\"selector\":\".global-nav-view.desktop-nav-ad, .global-nav-view.desktop-nav-ad .global-nav-content, .global-nav-view.mobile-nav-ad, .global-nav-view.mobile-nav-ad .global-nav-content\",\"action\":[\"style\",\"margin-top: 0 !important;\"],\"cssable\":true},{\"selector\":\"body::after\",\"action\":[\"style\",\"top: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\".post_simple\",\"tasks\":[[\"has\",{\"selector\":\".postsimple_pseudo\",\"tasks\":[[\"has-text\",\"/promo/i\"]]}]]}]","[{\"selector\":\"#app\",\"action\":[\"style\",\"display: none !important;\"],\"cssable\":true},{\"selector\":\"#app_msg\",\"action\":[\"style\",\"display: none !important;\"],\"cssable\":true},{\"selector\":\"#download-form\",\"action\":[\"style\",\"display: initial !important;\"],\"cssable\":true}]","[{\"selector\":\"#banner-mnz-topleft\",\"action\":[\"style\",\"height: 80px !important\"],\"cssable\":true}]","[{\"selector\":\".samBackground\",\"action\":[\"style\",\"background-image:none !important\"],\"cssable\":true}]","[{\"selector\":\".adsbygoogle\",\"tasks\":[[\"upward\",\".row-container\"]]}]","[{\"selector\":\".add-bx\",\"action\":[\"style\",\"height: 0px !important; min-height: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\".site-header\",\"action\":[\"style\",\"min-height: 90px !important\"],\"cssable\":true}]","[{\"selector\":\".background-cloud\",\"action\":[\"style\",\"display: none !important;\"],\"cssable\":true}]","[{\"selector\":\".placeholder\",\"action\":[\"remove-class\",\"placeholder\"]}]","[{\"selector\":\".flowplayer.is-cva .fp-controls\",\"action\":[\"style\",\"display: flex !important\"],\"cssable\":true},{\"selector\":\".flowplayer.is-cva .fp-fullscreen\",\"action\":[\"style\",\"display: flex !important\"],\"cssable\":true}]","[{\"selector\":\"#banner_overlay-postitial-video\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"#link1s-snp\",\"action\":[\"style\",\"display:block!important\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"Adblock\"]]}]","[{\"selector\":\"p\",\"tasks\":[[\"has-text\",\"Advertisement\"]]}]","[{\"selector\":\"a.download[target=\\\"_blank\\\"]:not(a[href*=\\\"ctrlv.\\\"])\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\".adsbyvli\",\"action\":[\"style\",\"opacity: 0 !important; pointer-events: none !important;\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"detect\"]]}]","[{\"selector\":\".adsbygoogle\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"#breadcrumb + .trytopnav\",\"action\":[\"style\",\"top: 36px!important;\"],\"cssable\":true},{\"selector\":\"#tryitLeaderboard + #breadcrumb ~ #container\",\"action\":[\"style\",\"top: 84px!important;\"],\"cssable\":true},{\"selector\":\"#tryitLeaderboard + .trytopnav ~ #dragbar + #container\",\"action\":[\"style\",\"top: 48px!important;\"],\"cssable\":true},{\"selector\":\"#tryitLeaderboard + .trytopnav\",\"action\":[\"style\",\"top: 0!important;\"],\"cssable\":true}]","[{\"selector\":\"[class*=\\\"css\\\"]\",\"tasks\":[[\"matches-css-before\",{\"name\":\"content\",\"pseudo\":\"before\",\"value\":\"ADVERTISEMENT\"}]]},{\"selector\":\"[href*=\\\"redirect\\\"]\",\"tasks\":[[\"upward\",\"section\"]]},{\"selector\":\"aside\",\"tasks\":[[\"has\",{\"selector\":\"div\",\"tasks\":[[\"matches-css-before\",{\"name\":\"content\",\"pseudo\":\"before\",\"value\":\"ADVERTISEMENT\"}]]}]]},{\"selector\":\"div[data-empty^=\\\"true\\\"]\",\"tasks\":[[\"matches-css-before\",{\"name\":\"content\",\"pseudo\":\"before\",\"value\":\"ADVERTISEMENT\"}]]}]","[{\"selector\":\"#video-player-track[style*=\\\"display: block\\\"]\",\"action\":[\"style\",\"visibility: visible !important;\"],\"cssable\":true}]","[{\"selector\":\".cp-modal-popup-container\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"div[class*=\\\"better-ads-listitemad\\\"]\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"#nextBTNH\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"body > header\",\"action\":[\"style\",\"top:0 !important\"],\"cssable\":true},{\"selector\":\"body.pcm-public\",\"action\":[\"style\",\"margin-top: 84px !important;\"],\"cssable\":true}]","[{\"selector\":\".ad\",\"tasks\":[[\"upward\",\".horizontal-ads-content\"]]}]","[{\"selector\":\".adBanner\",\"action\":[\"style\",\"height:1px !important\"],\"cssable\":true}]","[{\"selector\":\"#top_fold[style=\\\"display:flex !important;\\\"]\",\"action\":[\"style\",\"min-height: 0px !important; transition: all 0s ease 0s !important;\"],\"cssable\":true}]","[{\"selector\":\"section.ShopWidget\",\"tasks\":[[\"has-text\",\"Sponsored\"]]}]","[{\"selector\":\"body\",\"action\":[\"style\",\"overflow:auto !important\"],\"cssable\":true}]","[{\"selector\":\"*\",\"tasks\":[[\"matches-css-after\",{\"name\":\"content\",\"pseudo\":\"after\",\"value\":[\"Advertisement\",\"i\"]}]]}]","[{\"selector\":\"html\",\"action\":[\"style\",\"overflow-y: auto !important;\"],\"cssable\":true}]","[{\"selector\":\"#wpsafe-snp\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#wpsafe-generate\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\".code-block\",\"tasks\":[[\"has-text\",\"ADV\"]]}]","[{\"selector\":\"body\",\"action\":[\"style\",\"padding-top:0px !important\"],\"cssable\":true}]","[{\"selector\":\".nav.sticky\",\"action\":[\"style\",\"top: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\"div[id] *\",\"tasks\":[[\"has\",{\"selector\":\"> a[href]\",\"tasks\":[[\"has-text\",\"/^Try (?:D.?V.?D.?F.?a.?b|StreamFab)/\"],[\"spath\",\" + a[href]\"]]}]]}]","[{\"selector\":\"#vote-root\",\"action\":[\"style\",\"display:block !important\"],\"cssable\":true},{\"selector\":\".css-adfhee\",\"tasks\":[[\"upward\",2]]}]","[{\"selector\":\"body\",\"action\":[\"style\",\"visibility:visible !important\"],\"cssable\":true}]","[{\"selector\":\"#show_ag\",\"action\":[\"style\",\"display:block !important\"],\"cssable\":true}]","[{\"selector\":\"#wtf\",\"action\":[\"style\",\"visibility:visible!important;display:block!important;\"],\"cssable\":true}]","[{\"selector\":\"html\",\"action\":[\"style\",\"background-image:none !important\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"script\"]]}]","[{\"selector\":\"script[src$=\\\"ads.js\\\"]\",\"tasks\":[[\"upward\",\"section[id]\"]]}]","[{\"selector\":\"center > font[size=\\\"3\\\"][face=\\\"ARIAL\\\"]\",\"tasks\":[[\"has-text\",\"ADVERTISING\"],[\"upward\",\"td\"]]}]","[{\"selector\":\"#googletop\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"img[src$=\\\"/knewz_300x250.png\\\"]\",\"tasks\":[[\"upward\",\".widget_text\"]]}]","[{\"selector\":\"[href^=\\\"/click\\\"]\",\"action\":[\"remove-attr\",\"href\"]},{\"selector\":\"div[id$=\\\"_frame_content\\\"][class=\\\"wide_boxcontent\\\"]\",\"tasks\":[[\"has-text\",\"Adblock\"]]}]","[{\"selector\":\".text-center\",\"tasks\":[[\"has-text\",\"Adv\"]]}]","[{\"selector\":\"#embed\",\"action\":[\"style\",\"position: static!important; margin-top: 0!important;\"],\"cssable\":true}]","[{\"selector\":\"span\",\"tasks\":[[\"has-text\",\"Advert\"]]}]","[{\"selector\":\"body > div\",\"tasks\":[[\"shadow\",\"div\"],[\"shadow\",\"div\"],[\"has\",{\"selector\":\"\",\"tasks\":[[\"shadow\",\"div:not([class])\"],[\"has\",{\"selector\":\"\",\"tasks\":[[\"shadow\",\"ins.adsbygoogle[data-ad-client]\"]]}]]}]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"break;case\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"/eval\\\\(.+?RegExp/\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"d.createElement('script')\"]]},{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"d.createElement(\\\\'script\\\\')\"]]}]","[{\"selector\":\"a[href].Post-item:has(.Post-item-external-ad)\",\"action\":[\"style\",\"opacity: 0 !important; cursor: unset !important; pointer-events: none !important;\"],\"cssable\":true}]","[{\"selector\":\".leftMenu .menuHeadline\",\"tasks\":[[\"has-text\",\"3D\"]]}]","[{\"selector\":\"img[width=\\\"558\\\"][height=\\\"149\\\"]\",\"tasks\":[[\"upward\",\"td[style]\"]]}]","[{\"selector\":\".adsbyexoclick\",\"tasks\":[[\"upward\",1]]}]","[{\"selector\":\"[id]\",\"tasks\":[[\"matches-attr\",{\"attr\":\"id\",\"value\":\"/[a-zA-Z]{40,}/\"}]]}]","[{\"selector\":\".videos-ad__wrap\",\"action\":[\"style\",\"background-color: transparent !important\"],\"cssable\":true}]","[{\"selector\":\".home-page.main-section, html > body\",\"action\":[\"style\",\"margin-top: 0px !important;\"],\"cssable\":true},{\"selector\":\".slideMenu\",\"action\":[\"style\",\"top: -7px !important;\"],\"cssable\":true},{\"selector\":\"body\",\"action\":[\"style\",\"padding-top: 0px !important;\"],\"cssable\":true},{\"selector\":\"header\",\"action\":[\"style\",\"top: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\"html > iframe[style=\\\"display: none;\\\"]\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"u_cfg\"]]}]","[{\"selector\":\"body[style=\\\"overflow: hidden;\\\"]\",\"action\":[\"style\",\"overflow: auto!important;\"],\"cssable\":true}]","[{\"selector\":\"div[class$=\\\"-margin-Advert\\\"]\",\"action\":[\"style\",\"height:1px !important;width:1px !important;position:absolute !important;left:-3000px !important\"],\"cssable\":true}]","[{\"selector\":\"div[pb-serve-label*=\\\"advert\\\"]\",\"tasks\":[[\"upward\",2]]}]","[{\"selector\":\".thumb div.ad\",\"tasks\":[[\"upward\",\".thumb\"]]}]","[{\"selector\":\"body.desktopView.hasFooterAd .mainSection\",\"action\":[\"style\",\"margin-bottom: 0!important;padding-bottom: 0!important;\"],\"cssable\":true}]","[{\"selector\":\"a > img + div[class]:last-of-type\",\"tasks\":[[\"has-text\",\"Sponsored\"],[\"upward\",\"div[sizes]\"]]},{\"selector\":\"div[sizes] > span[class]\",\"tasks\":[[\"has-text\",\"Sponsored\"],[\"upward\",\"div[sizes]\"]]}]","[{\"selector\":\"div > .page > div > div[style]\",\"tasks\":[[\"has-text\",\"/^Advertise/i\"],[\"spath\",\" + a\"]]}]","[{\"selector\":\"[id^=\\\"Ad\\\"]\",\"tasks\":[[\"upward\",\"[style]\"]]}]","[{\"selector\":\"h1\",\"tasks\":[[\"has-text\",\"Ads\"]]}]","[{\"selector\":\".video-image > .track_outbound_post\",\"tasks\":[[\"upward\",2]]}]","[{\"selector\":\"[data-cg-ft=\\\"sponsored-listing-badge\\\"]\",\"tasks\":[[\"upward\",3]]}]","[{\"selector\":\"[id^=\\\"tp-snp\\\"]\",\"action\":[\"style\",\"display: block !important\"],\"cssable\":true}]","[{\"selector\":\".ipsType_richText a\",\"action\":[\"style\",\"color:currentcolor !important\"],\"cssable\":true},{\"selector\":\"a[data-autolink]\",\"action\":[\"style\",\"text-decoration: none !important; color: inherit !important; pointer-events: none;\"],\"cssable\":true}]","[{\"selector\":\"#fafsf2\",\"action\":[\"style\",\"display:block !important\"],\"cssable\":true}]","[{\"selector\":\"[style*=\\\"pointer-events\\\"]\",\"action\":[\"style\",\"pointer-events:auto !important\"],\"cssable\":true}]","[{\"selector\":\"script[data-cfasync]\",\"tasks\":[[\"has-text\",\"0x\"]]}]","[{\"selector\":\"div[class]\",\"tasks\":[[\"matches-css-before\",{\"name\":\"content\",\"pseudo\":\"before\",\"value\":\"Advertisements\"}]]}]","[{\"selector\":\"iframe\",\"tasks\":[[\"upward\",\"[style*=\\\"visibility\\\"]\"]]}]","[{\"selector\":\"script[language=\\\"javascript\\\"]\",\"tasks\":[[\"has-text\",\"open\"]]}]","[{\"selector\":\"#int-over\",\"action\":[\"remove\",\"\"]},{\"selector\":\"#intt-layer\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"a[href^=\\\"/visual/\\\"]\",\"tasks\":[[\"upward\",\".menu > div[id]\"]]},{\"selector\":\"div\",\"tasks\":[[\"matches-css-after\",{\"name\":\"content\",\"pseudo\":\"after\",\"value\":\"Ads\"}]]},{\"selector\":\"div[id*=\\\"myabandonware_leaderboard_btf_\\\"]\",\"tasks\":[[\"upward\",\"div[id]\"]]},{\"selector\":\"div[id*=\\\"myabandonware_medrec_right_\\\"]\",\"tasks\":[[\"upward\",\"div[id]\"]]},{\"selector\":\"style\",\"action\":[\"remove\",\"\"],\"tasks\":[[\"has-text\",\"justify-content\"]]}]","[{\"selector\":\"[id^=\\\"cookieConsent\\\"]\",\"tasks\":[[\"upward\",1]]}]","[{\"selector\":\".adsbygoogle\",\"action\":[\"style\",\"position:absolute !important;left:-3000px !important\"],\"cssable\":true}]","[{\"selector\":\"div#responseads\",\"action\":[\"style\",\"display:block !important\"],\"cssable\":true}]","[{\"selector\":\".onp-sl-content\",\"action\":[\"style\",\"display:block !important\"],\"cssable\":true}]","[{\"selector\":\".cover\",\"action\":[\"style\",\"background-image: none!important;\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"debugger\"]]}]","[{\"selector\":\"main > div > div > div[class]\",\"tasks\":[[\"matches-css\",{\"name\":\"width\",\"value\":\"^350px$\"}]]}]","[{\"selector\":\"ins.adsbygoogle\",\"tasks\":[[\"upward\",1]]}]","[{\"selector\":\"div.sacret\",\"action\":[\"style\",\"display:block !important\"],\"cssable\":true}]","[{\"selector\":\"#adsads\",\"action\":[\"style\",\"height: 9px !important;\"],\"cssable\":true},{\"selector\":\"h1\",\"tasks\":[[\"has-text\",\"/adblock|supporter/\"]]}]","[{\"selector\":\"*[style=\\\"display:none;\\\"]\",\"action\":[\"style\",\"display:block !important\"],\"cssable\":true}]","[{\"selector\":\"body:not([data-template]) a[rel=\\\"nofollow\\\"][href^=\\\"/reviyuu/b784/\\\"]\",\"action\":[\"style\",\"pointer-events: none !important;\"],\"cssable\":true}]","[{\"selector\":\".e76xF.bJlt-\",\"action\":[\"style\",\"padding-top:0px !important\"],\"cssable\":true}]","[{\"selector\":\".nav-bar\",\"action\":[\"style\",\"top:0px !important\"],\"cssable\":true},{\"selector\":\"body:not(.skybox-loaded) .topnav\",\"action\":[\"style\",\"margin-top:0px !important\"],\"cssable\":true}]","[{\"selector\":\"#playVideo\",\"action\":[\"style\",\"display: block !important; visibility: visible !important;\"],\"cssable\":true},{\"selector\":\"#player_embed\",\"action\":[\"style\",\"display: block !important; visibility: visible !important;\"],\"cssable\":true}]","[{\"selector\":\"\",\"tasks\":[[\"matches-path\",\"/\\\\/posts/\"],[\"spath\",\" div[data-comment*=\\\"gab-ad\\\"]\"],[\"has\",{\"selector\":\"span[class]\",\"tasks\":[[\"has-text\",\"Sponsored\"]]}]]},{\"selector\":\"div[class] > span[class]\",\"tasks\":[[\"has-text\",\"Sponsored\"],[\"upward\",5]]}]","[{\"selector\":\".adunitContainer\",\"tasks\":[[\"upward\",\"[data-qa-id]\"]]}]","[{\"selector\":\".jw-reset.jw-wrapper\",\"action\":[\"style\",\"z-index:2147483647 !important\"],\"cssable\":true}]","[{\"selector\":\".Yc2Sp h1, .Yc2Sp a\",\"action\":[\"style\",\"font-size: 0 !important;\"],\"cssable\":true},{\"selector\":\"header[role=\\\"banner\\\"] > div > a[href=\\\"/docs/en/relevantads\\\"]\",\"tasks\":[[\"upward\",3]]}]","[{\"selector\":\"#wpsafe-generate, #wpsafe-link, .bt-success\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"#wpsafe-time\",\"tasks\":[[\"upward\",\"[id^=\\\"wpsafe-wait\\\"]\"]]}]","[{\"selector\":\"div[style^=\\\"--row-gutter\\\"] > div a[href=\\\"/brands\\\"]\",\"tasks\":[[\"upward\",\"div[style^=\\\"--row-gutter\\\"] > div\"]]}]","[{\"selector\":\".game-over-ad-legacy-component\",\"action\":[\"style\",\"height: 0 !important\"],\"cssable\":true},{\"selector\":\"body.board-layout.with-und\",\"action\":[\"style\",\"margin-right:0px!important\"],\"cssable\":true}]","[{\"selector\":\"[data-ref=\\\"saashub\\\"]\",\"tasks\":[[\"upward\",\"div.feed-item\"]]}]","[{\"selector\":\".fKZLNI\",\"action\":[\"style\",\"width:120% !important\"],\"cssable\":true}]","[{\"selector\":\"header\",\"action\":[\"style\",\"top:0 !important\"],\"cssable\":true}]","[{\"selector\":\".blur-sm\",\"action\":[\"style\",\"filter: none !important;\"],\"cssable\":true}]","[{\"selector\":\".advert-wrapper\",\"action\":[\"style\",\"clip-path: circle(0) !important;\"],\"cssable\":true}]","[{\"selector\":\".left_shadow\",\"tasks\":[[\"has-text\",\"Fast\"]]}]","[{\"selector\":\".thleft\",\"tasks\":[[\"has-text\",\"Fast\"],[\"upward\",2]]}]","[{\"selector\":\".post.has-post-thumbnail video#gump\",\"action\":[\"remove\",\"\"],\"tasks\":[[\"upward\",\".post\"]]}]","[{\"selector\":\"[id^=\\\"desig-\\\"]\",\"tasks\":[[\"has-text\",\"ANZEIGE\"]]}]","[{\"selector\":\".adsbygoogle\",\"tasks\":[[\"upward\",1]]}]","[{\"selector\":\"button\",\"action\":[\"style\",\"display: inline-block !important\"],\"cssable\":true}]","[{\"selector\":\".ad-removal-info\",\"tasks\":[[\"has-text\",\"ads\"],[\"upward\",\"[class]\"]]}]","[{\"selector\":\"#f13 > b\",\"tasks\":[[\"has-text\",\"Sponsor\"],[\"upward\",4]]}]","[{\"selector\":\"#clickfakeplayer[href]\",\"action\":[\"remove-attr\",\"href\"]}]","[{\"selector\":\"script[type]\",\"tasks\":[[\"has-text\",\"c=document.createElement\"]]}]","[{\"selector\":\".related_box:has(.adds)\",\"action\":[\"style\",\"height: 1px !important;\"],\"cssable\":true}]","[{\"selector\":\"#clickfkplayer[href]\",\"action\":[\"remove-attr\",\"href\"]}]","[{\"selector\":\".safelink-recatpcha\",\"action\":[\"style\",\"display: block !important;\"],\"tasks\":[[\"upward\",\"div\"]]},{\"selector\":\"div[style=\\\"display: none;\\\"]\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\".g-recaptcha\",\"action\":[\"style\",\"display: block !important;\"],\"tasks\":[[\"upward\",\"form > div\"]]}]","[{\"selector\":\"#cc\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\".text-center:not([id]) [id^=\\\"adngin-\\\"]\",\"tasks\":[[\"upward\",\".text-center:not([id])\"]]}]","[{\"selector\":\".page__content-header\",\"action\":[\"style\",\"height: 50px !important\"],\"cssable\":true}]","[{\"selector\":\".widget a.gofollow\",\"tasks\":[[\"upward\",\".widget\"]]}]","[{\"selector\":\"button\",\"tasks\":[[\"has-text\",\"/Watch|🎟|👉/\"]]}]","[{\"selector\":\".ad_block\",\"action\":[\"style\",\"visibility: hidden !important;\"],\"cssable\":true}]","[{\"selector\":\"[style=\\\"display:none\\\"]\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\".ad-block-popup\",\"tasks\":[[\"upward\",2]]},{\"selector\":\".native-ad-item-panel\",\"tasks\":[[\"upward\",\".vertical-view__item\"]]}]","[{\"selector\":\"[id]\",\"tasks\":[[\"has-text\",\"Provider\"]]}]","[{\"selector\":\"a[href*=\\\"&epik=\\\"]\",\"tasks\":[[\"upward\",\"[data-grid-item]\"]]}]","[{\"selector\":\"[href*=\\\"3cx\\\"]\",\"tasks\":[[\"upward\",\"tbody\"]]}]","[{\"selector\":\"[src^=\\\"blob:https://autofaucet.dutchycorp.space/\\\"]\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"[id^=\\\"wpsafe-generate\\\"], #continue\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#Page\",\"action\":[\"style\",\"right: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\"#td-outer-wrap\",\"action\":[\"style\",\"cursor: default !important\"],\"cssable\":true}]","[{\"selector\":\"body.modal-open *\",\"action\":[\"style\",\"filter: none!important;\"],\"cssable\":true}]","[{\"selector\":\".headline.wrapper\",\"tasks\":[[\"has-text\",\"Advertisement\"],[\"spath\",\" + div\"]]},{\"selector\":\".headline.wrapper\",\"tasks\":[[\"has-text\",\"Advertisement\"]]},{\"selector\":\".video-info > section\",\"tasks\":[[\"has-text\",\"Adv\"]]},{\"selector\":\"article > .headline\",\"tasks\":[[\"has-text\",\"Suggested\"],[\"spath\",\" + section\"]]},{\"selector\":\"article > .headline\",\"tasks\":[[\"has-text\",\"Suggested\"]]}]","[{\"selector\":\".main-body > div > div[class]:not([class^=\\\"item\\\"]):not([class^=\\\"article\\\"])\",\"tasks\":[[\"has-text\",\"/^Sponsored ads$/\"]]},{\"selector\":\"div[class*=\\\"article\\\"] > div:not([class]) > div[class]\",\"tasks\":[[\"has-text\",\"/^Sponsored ads$/\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"Math.imul\"]]}]","[{\"selector\":\".g-recaptcha\",\"action\":[\"style\",\"margin-top:60px !important\"],\"cssable\":true}]","[{\"selector\":\"div > [id$=\\\"_slot\\\"]\",\"tasks\":[[\"upward\",\"div\"]]}]","[{\"selector\":\"p[style=\\\"font-size:12px; text-align:center;\\\"] > span\",\"tasks\":[[\"has-text\",\"Advertisement\"]]},{\"selector\":\"section.wix-blog-hide-in-print p[style=\\\"font-size:12px; text-align:center;\\\"] > span\",\"tasks\":[[\"has-text\",\"Advertisement\"],[\"upward\",\"section\"]]}]","[{\"selector\":\"body.no-touch li.wt-list-unstyled div.v2-listing-card__info > div.wt-text-caption.wt-text-grey > span:not(.wt-icon):not([aria-role])\",\"action\":[\"remove\",\"\"],\"tasks\":[[\"matches-css\",{\"name\":\"display\",\"value\":\"^inline-block$\"}],[\"has-text\",\"/^Ad/i\"],[\"upward\",\"li\"]]},{\"selector\":\"li:not(#ad-ubo) .listing-link[href*=\\\"ref=sc_gallery\\\"]\",\"tasks\":[[\"upward\",\"li\"]]}]","[{\"selector\":\"[style][href]\",\"tasks\":[[\"upward\",\"[style]\"]]}]","[{\"selector\":\".pagebody\",\"action\":[\"style\",\"height: auto !important;\"],\"cssable\":true}]","[{\"selector\":\".adunitContainer\",\"tasks\":[[\"upward\",3]]}]","[{\"selector\":\"#main\",\"action\":[\"style\",\"bottom: 0px !important\"],\"cssable\":true}]","[{\"selector\":\"#nn_bfa_wrapper\",\"action\":[\"remove\",\"\"]},{\"selector\":\".sticky_rail600\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"script[data-cfasync]\",\"tasks\":[[\"has-text\",\"decodeURIComponent\"]]}]","[{\"selector\":\".aoa_overlay\",\"action\":[\"style\",\"height: 0px !important\"],\"cssable\":true}]","[{\"selector\":\"#btngetlink\",\"action\":[\"style\",\"display: inline-block !important\"],\"cssable\":true}]","[{\"selector\":\".HTML.widget .adsbygoogle\",\"tasks\":[[\"upward\",\".widget\"]]}]","[{\"selector\":\"div[width=\\\"300\\\"][height=\\\"250\\\"]\",\"tasks\":[[\"upward\",1]]},{\"selector\":\"div[width=\\\"728\\\"][height=\\\"90\\\"]\",\"tasks\":[[\"upward\",1]]}]","[{\"selector\":\".widget\",\"tasks\":[[\"has-text\",\"Adv\"]]}]","[{\"selector\":\"#tp-generate, [id^=\\\"tp-snp\\\"]\",\"action\":[\"style\",\"display: block !important\"],\"cssable\":true}]","[{\"selector\":\"table\",\"tasks\":[[\"has-text\",\"VPN\"]]}]","[{\"selector\":\"#colunas\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"body > p > span\",\"tasks\":[[\"has-text\",\"adblock\"]]}]","[{\"selector\":\"[id^=\\\"outbrain_widget_\\\"].OUTBRAIN[data-src]\",\"tasks\":[[\"has\",{\"selector\":\"> .ob-widget > .ob-widget-header > span.ob-grid-header-text\",\"tasks\":[[\"has-text\",\"/^MEHR AUS DEM WEB|MEHR AUS DEM NETZ|AUCH INTERESSANT$/\"]]}]]}]","[{\"selector\":\".search-page__result .listings-standout\",\"tasks\":[[\"upward\",\".search-page__result\"]]},{\"selector\":\".searchResults .product-card__ad-copy\",\"tasks\":[[\"upward\",\"li\"]]}]","[{\"selector\":\"script[data-cfasync]\",\"tasks\":[[\"has-text\",\"D4zz.\"]]}]","[{\"selector\":\"#btm-widget img[onload]\",\"tasks\":[[\"upward\",\"#btm-widget > .colombiaonesuccess > div\"]]}]","[{\"selector\":\"img[onclick]\",\"action\":[\"style\",\"display: block !important\"],\"tasks\":[[\"upward\",\".wait\"]]}]","[{\"selector\":\".show_download_links\",\"action\":[\"style\",\"display: block !important\"],\"cssable\":true}]","[{\"selector\":\".adsbygoogle\",\"action\":[\"style\",\"height: 0px !important; visibility: collapse;\"],\"cssable\":true}]","[{\"selector\":\".ssm_adunit_container\",\"tasks\":[[\"upward\",\"[id^=\\\"list_ads\\\"]\"]]}]","[{\"selector\":\"#download_link\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\".definetelynotanad\",\"tasks\":[[\"upward\",\"[class^=\\\"col-md-\\\"]\"]]}]","[{\"selector\":\".partner-banner\",\"tasks\":[[\"upward\",\"div[style]\"]]}]","[{\"selector\":\".mod-container\",\"tasks\":[[\"has-text\",\"/sponsor/i\"]]}]","[{\"selector\":\"#container\",\"action\":[\"style\",\"width:100%!important\"],\"cssable\":true},{\"selector\":\"html.can-have-sky .page-body > .section-content\",\"action\":[\"style\",\"margin-right: 0 !important;\"],\"cssable\":true},{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"adslotFilledByCriteo\"]]}]","[{\"selector\":\".glass-panel > ins.adsbygoogle\",\"action\":[\"style\",\"height: 10px !important;\"],\"cssable\":true},{\"selector\":\"[href*=\\\"sjv.io\\\"]\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"htmlAds\"]]}]","[{\"selector\":\"#dclm-blur\",\"action\":[\"style\",\"filter: none !important\"],\"cssable\":true}]","[{\"selector\":\".py-4 > p\",\"tasks\":[[\"has-text\",\"Advertisement\"],[\"upward\",1]]}]","[{\"selector\":\".TablesTitle > div:not([style=\\\"padding\\\"])\",\"action\":[\"style\",\"width: 100% !important;\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"googlesyndication\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"/adblock/i\"]]}]","[{\"selector\":\".dfp-ad-unit\",\"tasks\":[[\"upward\",1]]}]","[{\"selector\":\"#screenshots span[style=\\\"width:222px\\\"] > a[href]\",\"action\":[\"remove-class\",\"/ad/i\"]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"popMagic\"]]}]","[{\"selector\":\"[class*=\\\"MPU\\\"]\",\"action\":[\"style\",\"height: 1px !important\"],\"cssable\":true},{\"selector\":\"[id*=\\\"mpu\\\"]\",\"action\":[\"style\",\"height: 1px !important\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"\\\\\\\"admc\\\\\\\"\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"brave\"]]},{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"numberPages\"]]}]","[{\"selector\":\".logo, .blinker\",\"action\":[\"style\",\"animation: none !important;\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"afScript\"]]}]","[{\"selector\":\".adsbyvli\",\"action\":[\"style\",\"height: 1px !important; opacity: 0 !important; pointer-events: none !important;\"],\"cssable\":true}]","[{\"selector\":\".id-Page-layoutWrap, .id-SiteWrap, .id-SiteHeader-wrap\",\"action\":[\"style\",\"width: 100% !important; max-width: 100% !important;\"],\"cssable\":true}]","[{\"selector\":\".MediaStep\",\"action\":[\"style\",\"cursor: pointer !important;\"],\"cssable\":true}]","[{\"selector\":\".td-pb-span8\",\"action\":[\"style\",\"width: 100% !important;\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"chp_ads_blocker_detector\"]]}]","[{\"selector\":\"style[id$=\\\"-css\\\"]\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"article:has(a[href^=\\\"https://www.facebook.com/ads/\\\"])\",\"action\":[\"style\",\"height: 0 !important; overflow: hidden !important;\"],\"cssable\":true},{\"selector\":\"main > div div[style*=\\\"flex-direction: column;\\\"] > article > div\",\"tasks\":[[\"has\",{\"selector\":\"> div:first-child span\",\"tasks\":[[\"has-text\",\"/Anzeige|Gesponsert|Sponsored|Geborg|Maksettu kumppanuus|Sponzorováno|Sponsoreret|Χορηγούμενη|Publicidad|Sponsoroitu|Sponsorisé|Bersponsor|Sponsorizzato|広告|광고|Ditaja|Sponset|Gesponsord|Sponsorowane|Patrocinado|Реклама|Sponsrad|ได้รับการสนับสนุน|May Sponsor|Sponsorlu|赞助内容|贊助|প্রযোজিত|પ્રાયોજિત|स्पॉन्सर्ड|Sponzorirano|ಪ್ರಾಯೋಜಿತ|സ്‌പോൺസർ ചെയ്‌തത്|पुरस्‍कृत|प्रायोजित|ਪ੍ਰਾਯੋਜਿਤ|මුදල් ගෙවා ප්‍රචාරය කරන ලදි|Sponzorované|விளம்பரதாரர்கள்|స్పాన్సర్ చేసింది|Được tài trợ|Спонсорирано|Commandité|Sponsorizat|Спонзорисано/\"]]}]]}]","[{\"selector\":\"._2gSkZ\",\"action\":[\"style\",\"height: 150px !important;\"],\"cssable\":true},{\"selector\":\"header\",\"action\":[\"style\",\"top: 0 !important\"],\"cssable\":true}]","[{\"selector\":\"div[data-id] > div[data-tkid] > div[class]\",\"tasks\":[[\"has-text\",\"Sponsored\"],[\"upward\",\"div[data-id]\"]]},{\"selector\":\"span\",\"tasks\":[[\"has-text\",\"/^Ad$/\"],[\"upward\",\"div[style]\"]]}]","[{\"selector\":\"[class*=\\\"superbanner\\\"]\",\"tasks\":[[\"upward\",\"article > div:not(#main)\"]]}]","[{\"selector\":\".header\",\"action\":[\"style\",\"top: 0 !important\"],\"cssable\":true}]","[{\"selector\":\"#rightcolumn > .rbox > .rboxInner img[alt=\\\"Advertisement\\\"]\",\"tasks\":[[\"upward\",\".rbox\"]]},{\"selector\":\".wallpaperSidebarAds\",\"tasks\":[[\"upward\",\"div\"]]}]","[{\"selector\":\".overflow-hidden\",\"action\":[\"style\",\"overflow: auto !important;\"],\"cssable\":true}]","[{\"selector\":\"body.td-background-link\",\"action\":[\"style\",\"cursor:default !important;\"],\"cssable\":true}]","[{\"selector\":\"[class]\",\"tasks\":[[\"matches-css-before\",{\"name\":\"content\",\"pseudo\":\"before\",\"value\":\"ads\"}]]}]","[{\"selector\":\".container\",\"action\":[\"style\",\"width: 100% !important;\"],\"cssable\":true}]","[{\"selector\":\".ads\",\"action\":[\"style\",\"position: absolute; opacity: 0; pointer-events: none;\"],\"cssable\":true}]","[{\"selector\":\"[data-profile-url-path^=\\\"/localservices\\\"]\",\"tasks\":[[\"has-text\",\"/google screened/i\"]]}]","[{\"selector\":\".adsbygoogle\",\"action\":[\"style\",\"height: 1px !important\"],\"cssable\":true}]","[{\"selector\":\"[style]\",\"tasks\":[[\"has-text\",\"PREMIUM\"]]}]","[{\"selector\":\"button#getlink, button#gotolink\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\".adsbygoogle\",\"action\":[\"style\",\"min-height:11px!important;height:11px!important;opacity:0\"],\"tasks\":[[\"upward\",1]]},{\"selector\":\".adsbygoogle\",\"action\":[\"style\",\"width:11px;height:11px\"],\"cssable\":true}]","[{\"selector\":\"#targetdiv\",\"action\":[\"style\",\"display: inline !important;\"],\"cssable\":true}]","[{\"selector\":\"#targetdiv, #containerr\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\"div[id][style=\\\"display: none;\\\"]\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"div[id$=\\\"content\\\"] img.lazy\",\"action\":[\"style\",\"opacity: 1 !important;\"],\"cssable\":true},{\"selector\":\"div[id^=\\\"post-\\\"]\",\"action\":[\"remove-class\",\"hidden_share\"]}]","[{\"selector\":\".post-content img.lazy\",\"action\":[\"style\",\"opacity: 1 !important;\"],\"cssable\":true}]","[{\"selector\":\".g-recaptcha, iframe[src*=\\\"google.com/recaptcha\\\"], .btn-captcha, .btn-black-outline\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"#wpsafe-snp1\",\"action\":[\"style\",\"display: block !important\"],\"cssable\":true},{\"selector\":\"#wpsafe-snp1\",\"tasks\":[[\"others\",\"\"]]}]","[{\"selector\":\"[onclick^=\\\"showAd\\\"]\",\"action\":[\"remove-attr\",\"onclick\"]}]","[{\"selector\":\"#M1[role=\\\"main\\\"]\",\"action\":[\"style\",\"margin-top: 0px !important;\"],\"cssable\":true},{\"selector\":\"#dlcharts-list + div[class]\",\"tasks\":[[\"has\",{\"selector\":\"> h2\",\"tasks\":[[\"has-text\",\"/Gesponsert|Bezahlte Empfehlung|Anzeige/\"],[\"spath\",\" + a[href^=\\\"https://www.chip.de/downloads/\\\"]\"]]}]]},{\"selector\":\".fb > .Listing > div\",\"tasks\":[[\"has\",{\"selector\":\"> h2\",\"tasks\":[[\"has-text\",\"/Gesponsert|Bezahlte Empfehlung|Anzeige/\"],[\"spath\",\" + a[href^=\\\"https://www.chip.de/downloads/\\\"]\"]]}]]}]","[{\"selector\":\".FC__Container.min-height-250px-mu\",\"action\":[\"style\",\"max-height: 0.1px !important; height: 0.1px !important; min-height: 0px !important;\"],\"cssable\":true},{\"selector\":\":root\",\"action\":[\"style\",\"--topbanner-height-min:unset!important;--topbanner-height-max:unset!important;\"],\"cssable\":true}]","[{\"selector\":\"#G32\",\"action\":[\"style\",\"grid-template-rows: unset!important;\"],\"cssable\":true}]","[{\"selector\":\".css-1352p5e\",\"action\":[\"style\",\"height: 2400px !important;\"],\"cssable\":true},{\"selector\":\".css-1s6rfoz\",\"action\":[\"style\",\"height: 2400px !important;\"],\"cssable\":true},{\"selector\":\".css-1wm768n\",\"action\":[\"style\",\"height: 1560px !important;\"],\"cssable\":true},{\"selector\":\".css-uc3mu7\",\"action\":[\"style\",\"margin-top: 0 !important; height: 2400px !important;\"],\"cssable\":true},{\"selector\":\".gridRowPad\",\"action\":[\"style\",\"margin-top: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\".a11t--product\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\".main-content > h4 > strong\",\"tasks\":[[\"has-text\",\"Brave\"]]}]","[{\"selector\":\"[class]\",\"tasks\":[[\"matches-css-before\",{\"name\":\"content\",\"pseudo\":\"before\",\"value\":\"Advertisement\"}],[\"upward\",1]]}]","[{\"selector\":\"div > ins\",\"tasks\":[[\"upward\",\"div\"]]}]","[{\"selector\":\"#gotolink\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"two_worker_data_js\"]]}]","[{\"selector\":\".spr > .container-fluid:not([data-autopromo-name=\\\"freepik\\\"])\",\"tasks\":[[\"upward\",\".spr\"]]}]","[{\"selector\":\"#shortGoToCont.hidden\",\"action\":[\"remove-class\",\"hidden\"]},{\"selector\":\"#timerContainer > div:not(:has(#timerPercentage))\",\"action\":[\"style\",\"display: flex !important;\"],\"cssable\":true}]","[{\"selector\":\"article > [class^=\\\"tc-view\\\"] #ad-header\",\"tasks\":[[\"upward\",\"article > [class^=\\\"tc-view\\\"]\"]]}]","[{\"selector\":\"body:not(.home) #content\",\"action\":[\"style\",\"margin-top: 13px !important;\"],\"cssable\":true}]","[{\"selector\":\"#customad\",\"tasks\":[[\"upward\",\".code-block\"]]},{\"selector\":\".brxe-div > div[class=\\\"brxe-container\\\"] .adsbygoogle\",\"tasks\":[[\"upward\",\".brxe-container\"]]},{\"selector\":\"section.brxe-section > div[class=\\\"brxe-container\\\"] .adsbygoogle\",\"tasks\":[[\"upward\",\"section\"]]}]","[{\"selector\":\".lm-hide\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"/ConsoleBan|alert|AdBlocker/\"]]}]","[{\"selector\":\".banner-wrapper\",\"action\":[\"remove\",\"\"],\"tasks\":[[\"upward\",2]]},{\"selector\":\".sticky-content\",\"tasks\":[[\"has-text\",\"Rek\"]]},{\"selector\":\".sticky-content\",\"tasks\":[[\"has-text\",\"Reklama\"]]},{\"selector\":\".sticky-content\",\"tasks\":[[\"has-text\",\"klama\"]]},{\"selector\":\"[data-draggable-target]\",\"tasks\":[[\"has-text\",\"Rekl\"],[\"spath\",\":not(*:has([href*=\\\"radio\\\"]))\"]]}]","[{\"selector\":\".content3 > div[style]\",\"tasks\":[[\"has-text\",\"Advertisement\"]]}]","[{\"selector\":\".ad-zone\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\".row > [id^=\\\"sPost\\\"]\",\"action\":[\"style\",\"margin-top: 60px !important;\"],\"cssable\":true}]","[{\"selector\":\"#primary\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\".co-Widget[style=\\\"min-height: 6000px;\\\"]\",\"action\":[\"style\",\"min-height: auto !important;\"],\"cssable\":true}]","[{\"selector\":\".container > .adsbygoogle\",\"tasks\":[[\"upward\",\".container\"]]},{\"selector\":\".container > div > .adsbygoogle\",\"tasks\":[[\"upward\",\"div\"]]}]","[{\"selector\":\".channel-feed__brick .cfeed-card-contents--banner-adsense\",\"tasks\":[[\"upward\",\".channel-feed__brick\"]]}]","[{\"selector\":\".is-full .climad-badge\",\"tasks\":[[\"upward\",\".is-full\"]]}]","[{\"selector\":\"#ad-Billboard\",\"tasks\":[[\"upward\",\"[style]\"]]}]","[{\"selector\":\"[data-stack-index] > section > div > div [data-item-id] > a[link-identifier][href^=\\\"https://wrd.walmart.com\\\"]\",\"tasks\":[[\"upward\",\"section > div > div\"]]}]","[{\"selector\":\".downloadbtn\",\"action\":[\"remove-attr\",\"disabled\"]}]","[{\"selector\":\"#submitbutton[disabled]\",\"action\":[\"remove-attr\",\"disabled\"]},{\"selector\":\"a#gobutton[onclick]\",\"action\":[\"remove-attr\",\"onclick\"]}]","[{\"selector\":\"#izobrazhenie-1\",\"action\":[\"style\",\"padding-bottom: 0px !important;\"],\"cssable\":true},{\"selector\":\".group_viewport, .page__viewport\",\"action\":[\"style\",\"display: initial !important;\"],\"cssable\":true}]","[{\"selector\":\".adsbyvli\",\"action\":[\"style\",\"height: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\"ins.adsbygoogle\",\"action\":[\"style\",\"height: 1px!important;\"],\"cssable\":true}]","[{\"selector\":\".main > div.container > h2\",\"tasks\":[[\"has-text\",\"Advertisement\"]]}]","[{\"selector\":\".item > .post\",\"action\":[\"style\",\"height: auto !important;\"],\"cssable\":true},{\"selector\":\".item\",\"action\":[\"style\",\"height: auto !important;\"],\"cssable\":true}]","[{\"selector\":\".efi_enabled\",\"action\":[\"style\",\"overflow: auto !important; height: auto !important; width: auto !important; position: static !important;\"],\"cssable\":true}]","[{\"selector\":\"#main > div[class] > div div[class]\",\"tasks\":[[\"matches-css-before\",{\"name\":\"content\",\"pseudo\":\"before\",\"value\":\"^\\\"advertisement\\\"$\"}],[\"upward\",\"#main > div[class] > div\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"/htmls|google_ad_client/\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"Math\"]]}]","[{\"selector\":\"div[class] > ins.adsbygoogle\",\"tasks\":[[\"upward\",\"div[class]\"]]},{\"selector\":\"li[class] > ins.adsbygoogle\",\"tasks\":[[\"upward\",\"li[class]\"]]}]","[{\"selector\":\"div[class][data-mobid] > div[class=\\\"vm-placement\\\"][data-id]\",\"tasks\":[[\"upward\",\"div[class]\"]]}]","[{\"selector\":\"*\",\"tasks\":[[\"matches-css-before\",{\"name\":\"content\",\"pseudo\":\"before\",\"value\":\"Adv\"}]]}]","[{\"selector\":\"[data-koukoku-width]\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"body > div iframe\",\"tasks\":[[\"upward\",\"body > div\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"adsBlocked\"]]}]","[{\"selector\":\".link1\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#G32\",\"action\":[\"style\",\"grid-template-rows: unset !important;\"],\"cssable\":true}]","[{\"selector\":\"#myBtn\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"/eval[\\\\s\\\\S]*?decodeURIComponent/\"]]}]","[{\"selector\":\".dictionary-grid\",\"action\":[\"style\",\"grid-template-columns: minmax(180px,200px) minmax(400px,736px) 0 !important; grid-template-rows: 0 auto !important;\"],\"tasks\":[[\"matches-media\",\"(min-width: 1024px)\"]],\"cssable\":true},{\"selector\":\".dictionary-grid\",\"action\":[\"style\",\"grid-template-columns: minmax(180px,250px) minmax(400px,736px) 0 !important; grid-template-rows: 0 auto !important;\"],\"tasks\":[[\"matches-media\",\"(min-width: 1280px)\"]],\"cssable\":true},{\"selector\":\".dictionary-grid\",\"action\":[\"style\",\"grid-template-rows: 0 auto !important;\"],\"tasks\":[[\"matches-media\",\"(min-width: 768px)\"]],\"cssable\":true}]","[{\"selector\":\"#chapter-images div\",\"action\":[\"style\",\"padding: unset !important\"],\"cssable\":true}]","[{\"selector\":\"h3.my-4\",\"tasks\":[[\"has-text\",\"/^Advertising/\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"shouldPop\"]]}]","[{\"selector\":\"body > [class]\",\"action\":[\"style\",\"filter: none !important;\"],\"cssable\":true},{\"selector\":\"body > [id]\",\"action\":[\"style\",\"filter: none !important;\"],\"cssable\":true},{\"selector\":\"body > [id][class] > [class]\",\"tasks\":[[\"matches-css\",{\"name\":\"z-index\",\"value\":\"^2147483[0-9]{3}$\"}]]}]","[{\"selector\":\"body [class]\",\"action\":[\"style\",\"filter: none !important;\"],\"cssable\":true}]","[{\"selector\":\"div[class]\",\"tasks\":[[\"has\",{\"selector\":\"> div[class]:first-child\",\"tasks\":[[\"has-text\",\"REKLAMA\"],[\"spath\",\":not(:has(> *))\"]]}]]}]","[{\"selector\":\"\",\"tasks\":[[\"xpath\",\"//*[string-length(@href) > 1600]\"]]}]","[{\"selector\":\"div[class]\",\"tasks\":[[\"has\",{\"selector\":\"> img[src] + div > style\",\"tasks\":[[\"has-text\",\"flex: 0 0 100%\"]]}]]}]","[{\"selector\":\"div[class]\",\"tasks\":[[\"has\",{\"selector\":\"> style:first-child\",\"tasks\":[[\"has-text\",\"flex: 0 0 100%\"],[\"spath\",\" + div > div > style:first-child\"],[\"has-text\",\"flex: 0 0 100%\"],[\"spath\",\" + div\"]]}],[\"spath\",\":not(:has([data-st-area^=\\\"czyt_dalej\\\"]))\"]]}]","[{\"selector\":\"div[class*=\\\" \\\"]:has(> div:first-child > div:first-child:empty)\",\"tasks\":[[\"matches-css\",{\"name\":\"z-index\",\"value\":\"^0$\"}],[\"matches-css\",{\"name\":\"position\",\"value\":\"^relative$\"}]]}]","[{\"selector\":\"div[class*=\\\" \\\"]:has(> div:empty)\",\"tasks\":[[\"matches-css\",{\"name\":\"z-index\",\"value\":\"^0$\"}],[\"matches-css\",{\"name\":\"position\",\"value\":\"^relative$\"}]]}]","[{\"selector\":\"div[class]:has(> img[src] ~ div:empty)\",\"tasks\":[[\"matches-css\",{\"name\":\"z-index\",\"value\":\"^0$\"}],[\"matches-css\",{\"name\":\"position\",\"value\":\"^relative$\"}]]}]","[{\"selector\":\"div > h6\",\"tasks\":[[\"has-text\",\"Oferty dla Ciebie\"]]},{\"selector\":\"section > h2\",\"tasks\":[[\"has-text\",\"Oferty dla Ciebie:\"]]}]","[{\"selector\":\"#site-header\",\"action\":[\"style\",\"min-height: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\"div[class]\",\"tasks\":[[\"has\",{\"selector\":\"> img[src] + div + style\",\"tasks\":[[\"has-text\",\"flex: 0 0 100%\"]]}]]}]","[{\"selector\":\"style\",\"tasks\":[[\"has-text\",\"right:0;top:0;bottom:0;left:0;margin:auto;position:absolute;\"],[\"upward\",1]]}]","[{\"selector\":\"#bottom-sticky-container > div\",\"tasks\":[[\"matches-attr\",{\"attr\":\"class\",\"value\":\"/^[a-zA-Z]{2}$/\"}],[\"spath\",\":not([id])\"]]}]","[{\"selector\":\"*\",\"tasks\":[[\"has\",{\"selector\":\"> div:first-child:has(> div:first-child > a > img[src^=\\\"https://v.wpimg.pl/\\\"]):not([alt], [id], [width], [data-src]) + div:empty\"}]]}]","[{\"selector\":\"div\",\"tasks\":[[\"has\",{\"selector\":\"> div:only-child > * > div > .border > .container > .labelCopy\",\"tasks\":[[\"has-text\",\"REKLAMA\"]]}]]}]","[{\"selector\":\"a[href=\\\"https://www.wp.pl\\\"][data-st-area=\\\"goToSG\\\"] + div\",\"tasks\":[[\"has\",{\"selector\":\"> div > div > div\",\"tasks\":[[\"has-text\",\"REKLAMA\"]]}]]},{\"selector\":\"div\",\"tasks\":[[\"has\",{\"selector\":\"> div:first-child:has(> div:only-child > a > div:empty:only-child) + div:last-child:empty\"}]]},{\"selector\":\"div\",\"tasks\":[[\"has\",{\"selector\":\"> div:first-child:has(> iframe:only-child) + div:last-child:empty\"}]]}]","[{\"selector\":\"div\",\"tasks\":[[\"matches-css-after\",{\"name\":\"content\",\"pseudo\":\"after\",\"value\":\"R.*E.*K.*L.*A.*M.*A\"}],[\"upward\",1]]}]","[{\"selector\":\"div\",\"action\":[\"remove\",\"\"],\"tasks\":[[\"has\",{\"selector\":\"> a:first-child:has(> div:empty:only-child) + div:empty:last-child\"}]]}]","[{\"selector\":\"div\",\"tasks\":[[\"has\",{\"selector\":\"> div:first-child:has(> a:first-child > img[src^=\\\"https://v.wpimg.pl/\\\"]) + div:empty:last-child\"}]]}]","[{\"selector\":\"html, html > body\",\"action\":[\"style\",\"overflow: auto !important;\"],\"cssable\":true}]","[{\"selector\":\"#tie-body\",\"action\":[\"style\",\"background-image: none !important;\"],\"cssable\":true}]","[{\"selector\":\"[id^=\\\"div-gpt-ad\\\"]:not([style^=\\\"width: 1px; height: 1px; position: absolute; left: -10000px; top: -\\\"])\",\"action\":[\"style\",\"height: 0px !important; min-height: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"await fetch\"]]}]","[{\"selector\":\"body[style=\\\"margin-top: 90px; margin-bottom: 90px;\\\"]\",\"action\":[\"style\",\"margin-top: 0 !important; margin-bottom: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\"button[onclick^=\\\"window.open\\\"]\",\"action\":[\"remove-attr\",\"onclick\"]}]","[{\"selector\":\"#obalovydiv\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"[class^=\\\"style\\\"]\",\"tasks\":[[\"has-text\",\"Advertisement\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"/'.adsbygoogle'|text-danger|warning|Adblock|_0x/\"]]}]","[{\"selector\":\"[href*=\\\"preroll\\\"]\",\"tasks\":[[\"upward\",2]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"decodeURIComponent(escape(r))\"]]}]","[{\"selector\":\"#skip\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"adblock\"]]}]","[{\"selector\":\".fluid-close[target=\\\"_blank\\\"]\",\"action\":[\"remove-attr\",\"target\"]},{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"/popstate|popMagic/\"]]}]","[{\"selector\":\".widget-height\",\"action\":[\"style\",\"height: unset !important\"],\"cssable\":true}]","[{\"selector\":\".below-ad-wrapper\",\"action\":[\"style\",\"margin-top: 51px !important;\"],\"cssable\":true}]","[{\"selector\":\"[class^=\\\"HomepageSection\\\"]\",\"action\":[\"style\",\"grid-template-rows: unset !important;\"],\"cssable\":true}]","[{\"selector\":\"body\",\"action\":[\"remove-class\",\"top_ads_add\"]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"popUnder\"]]}]","[{\"selector\":\".entry.card div:is(#sidead, .topad)\",\"tasks\":[[\"upward\",\".entry.card\"]]}]","[{\"selector\":\"#content > form[id]:has(> center > button)\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\".modal_dialog_base\",\"tasks\":[[\"has\",{\"selector\":\"> .modal_top_header\",\"tasks\":[[\"has-text\",\"Marketing\"]]}]]},{\"selector\":\"table\",\"tasks\":[[\"has\",{\"selector\":\"> thead > .collapsableSection > td\",\"tasks\":[[\"has-text\",\"Ads\"]]}]]}]","[{\"selector\":\".pum-open-overlay\",\"action\":[\"style\",\"overflow: auto !important;\"],\"cssable\":true}]","[{\"selector\":\".mod-sidebar\",\"tasks\":[[\"has-text\",\"Advertisement\"]]},{\"selector\":\"a[href^=\\\"/out/\\\"]\",\"tasks\":[[\"upward\",1]]}]","[{\"selector\":\".result:has(.result-open-metagerkey)\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"section h6\",\"tasks\":[[\"has-text\",\"Advertising\"],[\"upward\",\"section\"]]}]","[{\"selector\":\".widget_custom_html #myVideo\",\"tasks\":[[\"upward\",\".widget_custom_html\"]]}]","[{\"selector\":\"#container\",\"action\":[\"style\",\"height: 100% !important;\"],\"cssable\":true}]","[{\"selector\":\"a.dl-link[href][onclick*=\\\"window.open\\\"]\",\"action\":[\"remove-attr\",\"href\"]},{\"selector\":\"a.dl-stub:not([href])\",\"action\":[\"style\",\"cursor: pointer !important;\"],\"cssable\":true}]","[{\"selector\":\".min-h-\\\\[250px\\\\]\",\"action\":[\"style\",\"min-height: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\".list_ads\",\"action\":[\"style\",\"height: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\".lst_ads\",\"action\":[\"style\",\"height: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\"main > div > div:empty\",\"tasks\":[[\"matches-css\",{\"name\":\"min-height\",\"value\":\"^250px$\"}],[\"matches-css\",{\"name\":\"min-width\",\"value\":\"^80%$\"}]]}]","[{\"selector\":\"div.fixed[style^=\\\"z-index:\\\"]\",\"tasks\":[[\"has-text\",\"گوشی خود را بچرخانید\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"ai_adb\"]]}]","[{\"selector\":\"a.btn-ad-iframe:not(a[href*=\\\"empire-\\\"])\",\"action\":[\"remove-attr\",\"href\"]}]","[{\"selector\":\"#timed\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"button\",\"action\":[\"remove-attr\",\"disabled\"]},{\"selector\":\"button\",\"action\":[\"remove-class\",\"hidden\"]}]","[{\"selector\":\"body > div[style]\",\"tasks\":[[\"has-text\",\"Ads\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"liedetector\"]]}]","[{\"selector\":\".ad-unit\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\".widget .adsSidebarContainer\",\"tasks\":[[\"upward\",\".widget\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"end_click\"]]}]","[{\"selector\":\":is(.owl-item, .thumb-item-flow):has(a[href^=\\\"https://www.polybuzz.ai/\\\"])\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"div[aria-label=\\\"Why this ad?\\\"]\",\"tasks\":[[\"upward\",\"[data-pla=\\\"1\\\"]\"]]}]","[{\"selector\":\".body-container\",\"action\":[\"style\",\"background-image: unset !important; cursor: auto !important;\"],\"cssable\":true},{\"selector\":\"[style*=\\\"desktop-url\\\"]\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"#header-new\",\"action\":[\"style\",\"margin-top: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\".css-1uhcmhp\",\"action\":[\"style\",\"grid-template-rows: 0 auto !important;\"],\"tasks\":[[\"matches-media\",\"(min-width: 80em)\"]],\"cssable\":true},{\"selector\":\"div > article[data-q=\\\"search-result\\\"] > a[data-q=\\\"search-result-anchor\\\"] > div > figure.listing-tile-thumbnail-image + div\",\"tasks\":[[\"has-text\",\"Featured\"],[\"upward\",\"article[data-q=\\\"search-result\\\"]\"]]}]","[{\"selector\":\"#deviantartcom_desktop-devpage-sidebar-300x250-atf\",\"tasks\":[[\"upward\",\"div[role=\\\"complementary\\\"] > div\"]]}]","[{\"selector\":\"[id^=\\\"google_ads_iframe\\\"]\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"a[href^=\\\"https://www.panda-novel.com/advertising\\\"]\",\"tasks\":[[\"upward\",\".index-swiper\"]]}]","[{\"selector\":\"#my-content\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\".modal-open\",\"action\":[\"style\",\"overflow: auto !important; padding-right: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\".serieslist > ul > li\",\"tasks\":[[\"has-text\",\"(AD)\"]]},{\"selector\":\"a[href][title^=\\\"(AD)\\\"]\",\"tasks\":[[\"upward\",\".bs\"]]}]","[{\"selector\":\".relacionados .aawp\",\"tasks\":[[\"upward\",\".relacionados\"]]},{\"selector\":\"body\",\"action\":[\"style\",\"padding-bottom: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\"a.download\",\"action\":[\"style\",\"visibility: hidden;\"],\"cssable\":true}]","[{\"selector\":\"center[style]\",\"tasks\":[[\"has-text\",\"advertisement\"]]}]","[{\"selector\":\"a[rel*=\\\"sponsored\\\"]\",\"tasks\":[[\"upward\",\".normal-page__content > div\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"clientHeight\"]]}]","[{\"selector\":\"aside\",\"action\":[\"style\",\"background: transparent !important;\"],\"cssable\":true}]","[{\"selector\":\".tweet-card .v-responsive.media-carousel-image .v-responsive__content img[alt]\",\"tasks\":[[\"not\",{\"selector\":\"\",\"tasks\":[[\"matches-attr\",{\"attr\":\"alt\",\"value\":\"/.*\\\\shttps:\\\\/\\\\/t\\\\.co\\\\/[\\\\w]{10}$/\"}]]}],[\"upward\",\".tweet-card\"]]}]","[{\"selector\":\"a img:not([src=\\\"images/main_logo_inverted.png\\\"])\",\"action\":[\"style\",\"visibility: hidden !important;\"],\"tasks\":[[\"matches-css\",{\"name\":\"height\",\"value\":\"^([2-4]{1}[0-9]{2}(\\\\.[0-9]+)?px|0px)$\"}]]},{\"selector\":\"a:has(img[src*=\\\"/download\\\"])\",\"action\":[\"style\",\"width: 300px !important; height: 300px !important; display: block !important;\"],\"cssable\":true},{\"selector\":\"a[href][target=\\\"_blank\\\"], [src^=\\\"//ad.a-ads.com/\\\"]\",\"action\":[\"style\",\"visibility:hidden !important\"],\"cssable\":true}]","[{\"selector\":\"#main_canvas > div:not(div[id^=\\\"google\\\"])\",\"action\":[\"style\",\"width: 100% !important;\"],\"cssable\":true}]","[{\"selector\":\".ad-slot-header__wrapper\",\"action\":[\"style\",\"display: none !important; top: 0 !important\"],\"cssable\":true}]","[{\"selector\":\".site-wrapper\",\"action\":[\"style\",\"opacity:1!important;visibility:visible!important\"],\"cssable\":true},{\"selector\":\"body\",\"action\":[\"style\",\"overflow:auto!important\"],\"cssable\":true}]","[{\"selector\":\"\",\"tasks\":[[\"xpath\",\"//*[(text()='Advertisement')]\"],[\"upward\",1]]}]","[{\"selector\":\"h6.text-muted\",\"tasks\":[[\"has-text\",\"Advertisement\"]]}]","[{\"selector\":\"#site-navbar-container, #site-top-nav-container\",\"action\":[\"style\",\"padding-top: 10px !important;\"],\"cssable\":true},{\"selector\":\".loadingLI\",\"tasks\":[[\"upward\",\".tncms-block\"]]}]","[{\"selector\":\".pufftext > .sponsored\",\"tasks\":[[\"upward\",3]]},{\"selector\":\".pufftext\",\"tasks\":[[\"has-text\",\"/SPONSORED/\"],[\"upward\",2]]}]","[{\"selector\":\"#content-main a[title][href*=\\\"?staticParams=\\\"]\",\"tasks\":[[\"upward\",\"span\"]]}]","[{\"selector\":\"div.bar_container\",\"tasks\":[[\"has\",{\"selector\":\"> div.bar_headline\",\"tasks\":[[\"has-text\",\"Advertising\"]]}]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"antiAdBlockerHandler\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"AdBlockEnabled\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"push\"]]}]","[{\"selector\":\"header#masthead\",\"action\":[\"style\",\"top: -110px !important;\"],\"cssable\":true}]","[{\"selector\":\"amp-iframe:has([src^=\\\"https://widget.sellwild.com\\\"])\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"div[data-controller=\\\"downloads.front.view.download\\\"] a[data-action=\\\"download\\\"][data-wait=\\\"true\\\"]\",\"action\":[\"remove-attr\",\"data-wait\"]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"/innerHTML.*appendChild/\"]]}]","[{\"selector\":\"#cnc_branding_creative_wrapper\",\"action\":[\"style\",\"min-height: 0px !important; height: 0px !important; visibility: hidden !important;\"],\"cssable\":true},{\"selector\":\".cnc-ads\",\"action\":[\"style\",\"min-height: 0px !important; height: 0px !important; visibility: hidden !important;\"],\"cssable\":true}]","[{\"selector\":\"a.box-title\",\"tasks\":[[\"has-text\",\"Ads\"]]}]","[{\"selector\":\"main\",\"action\":[\"style\",\"padding-top: 5em !important;\"],\"cssable\":true}]","[{\"selector\":\"body.pageskin\",\"action\":[\"style\",\"margin-top: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\"ins.adsbygoogle\",\"action\":[\"style\",\"height: 1px !important;\"],\"cssable\":true}]","[{\"selector\":\"[data-testid=\\\"primaryColumn\\\"] [data-testid=\\\"cellInnerDiv\\\"] > div:has([data-testid$=\\\"-impression-pixel\\\"])\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"body\",\"action\":[\"remove-class\",\"ads-not-loaded\"]}]","[{\"selector\":\"ins.adsbygoogle\",\"action\":[\"style\",\"clip-path: circle(0) !important;\"],\"cssable\":true}]","[{\"selector\":\".mntl-leaderboard-spacer\",\"action\":[\"style\",\"min-height: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\"#taboola-alternating-below-article\",\"action\":[\"remove\",\"\"]},{\"selector\":\".banner-min-height\",\"action\":[\"remove\",\"\"]},{\"selector\":\".fixed.social-bar\",\"action\":[\"remove\",\"\"]},{\"selector\":\".mobile-banner-sticky-container\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\".su-note\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\".reward-btn\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true},{\"selector\":\".reward-message\",\"action\":[\"style\",\"display: none !important;\"],\"cssable\":true}]","[{\"selector\":\"#player\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\".adhesiveHeaderAdFixed header\",\"action\":[\"style\",\"top: 0 !important;\"],\"tasks\":[[\"matches-media\",\"(min-width: 1000px)\"]],\"cssable\":true}]","[{\"selector\":\"#b3c\",\"action\":[\"style\",\"height: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\"#pageWrapper\",\"action\":[\"style\",\"display: initial !important;\"],\"cssable\":true}]","[{\"selector\":\".gooWidget\",\"action\":[\"style\",\"opacity: 0 !important; visibility: collapse !important;\"],\"cssable\":true},{\"selector\":\".google-ad-leaderboard\",\"action\":[\"style\",\"opacity: 0 !important;\"],\"cssable\":true},{\"selector\":\"[id^=\\\"adtester-container\\\"]\",\"action\":[\"style\",\"position: absolute !important;\"],\"cssable\":true},{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"document.createTextNode\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"/\\\\{delete window\\\\[/\"]]}]","[{\"selector\":\"#alert-popup\",\"action\":[\"remove\",\"\"]},{\"selector\":\".js-modal-url[data-target=\\\"#alert-popup\\\"]\",\"action\":[\"remove-attr\",\"data-target\"]}]","[{\"selector\":\".opera-container\",\"action\":[\"style\",\"visibility: collapse !important;\"],\"cssable\":true},{\"selector\":\"img[alt=\\\"Buff Banner\\\"]\",\"action\":[\"style\",\"visibility: collapse !important;\"],\"cssable\":true}]","[{\"selector\":\"body.modal-open\",\"action\":[\"style\",\"overflow: auto!important\"],\"cssable\":true}]","[{\"selector\":\".thumb-list > .video-thumb\",\"action\":[\"style\",\"margin-right: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\".bunny-button-resume\",\"action\":[\"style\",\"display: grid !important;\"],\"cssable\":true},{\"selector\":\".bunny-container\",\"action\":[\"style\",\"display: flex !important;\"],\"cssable\":true},{\"selector\":\".bunny-icon[disabled]\",\"action\":[\"remove-attr\",\"disabled\"]}]","[{\"selector\":\".table2\",\"tasks\":[[\"has-text\",\"Sponsored\"]]},{\"selector\":\"TR\",\"tasks\":[[\"has-text\",\"Stream:\"]]}]","[{\"selector\":\".adsbyvli\",\"tasks\":[[\"upward\",\"div[style^=\\\"width: 300px; height: 250px\\\"]\"]]}]","[{\"selector\":\"#js-mount-point-header.with-ad\",\"action\":[\"style\",\"min-height: auto !important\"],\"cssable\":true},{\"selector\":\"div[class^=\\\"sc-\\\"] > div[class^=\\\"sc-\\\"]:has(> div[style*=\\\"width: 728px;\\\"]:only-child > iframe[name=\\\"footer\\\"][width=\\\"728\\\"][height=\\\"90\\\"])\",\"tasks\":[[\"matches-css\",{\"name\":\"padding-bottom\",\"value\":\"^56px$\"}]]},{\"selector\":\"iframe[name=\\\"dashboard_home\\\"]\",\"tasks\":[[\"upward\",\"div[class^=\\\"sc-\\\"][span=\\\"1\\\"]\"]]},{\"selector\":\"section > div[class^=\\\"sc-\\\"]:last-child:has(> div[style*=\\\"width: 728px;\\\"]:only-child > iframe[name=\\\"footer\\\"][width=\\\"728\\\"][height=\\\"90\\\"])\",\"tasks\":[[\"matches-css\",{\"name\":\"margin-bottom\",\"value\":\"^-16px$\"}]]}]","[{\"selector\":\".Skybox--minHeight, .Skybox--minHeightBoth\",\"action\":[\"style\",\"--global-nav-v2-offset: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\"html[data-orlock-url]\",\"action\":[\"remove-attr\",\"data-orlock-url\"]}]","[{\"selector\":\"#players a[href][target=\\\"_blank\\\"]\",\"action\":[\"remove-attr\",\"/href|target/\"]},{\"selector\":\"style\",\"tasks\":[[\"has-text\",\"blink_me_ad\"],[\"upward\",2]]}]","[{\"selector\":\".ad-body\",\"action\":[\"remove\",\"\"]},{\"selector\":\".nvheader > span\",\"tasks\":[[\"has-text\",\"Advertisement\"]]}]","[{\"selector\":\"div[class][id]:not(.logo)\",\"tasks\":[[\"if-not\",\"*\"],[\"has-text\",\"/^$/\"]]}]","[{\"selector\":\".downloadLink\",\"action\":[\"style\",\"max-height: initial !important; overflow: revert !important\"],\"cssable\":true}]","[{\"selector\":\".result__ext:has([data-testid=\\\"adResult\\\"])\",\"action\":[\"style\",\"max-height: 1px !important; opacity: 0 !important; pointer-events: none !important;\"],\"cssable\":true},{\"selector\":\"div[data-testid=\\\"pam.container\\\"]\",\"action\":[\"style\",\"max-height: 1px !important; opacity: 0 !important; pointer-events: none !important;\"],\"cssable\":true}]","[{\"selector\":\"div:is(.shadow, .flex.w-full.justify-center[style=\\\"\\\"]):has(a[href=\\\"/pricing\\\"] img[alt=\\\"Please support civitai and creators by disabling adblock\\\"])\",\"action\":[\"remove\",\"\"]},{\"selector\":\"div[id][class^=\\\"mantine-\\\"].flex.relative.box-content\",\"action\":[\"style\",\"min-height: 0px !important; visibility: collapse !important; padding: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\".header\",\"action\":[\"style\",\"margin-top: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\"body[data-billboard=\\\"true\\\"]\",\"action\":[\"remove-attr\",\"data-billboard\"]}]","[{\"selector\":\"body > div[style]:not([id])\",\"action\":[\"style\",\"position: static !important; background-color: rgba(0, 0, 0, 0) !important\"],\"cssable\":true},{\"selector\":\"html, body\",\"action\":[\"style\",\"overflow: visible !important;\"],\"cssable\":true},{\"selector\":\"style\",\"action\":[\"remove\",\"\"],\"tasks\":[[\"has-text\",\".reading-content img\"]]}]","[{\"selector\":\".adsense\",\"action\":[\"style\",\"padding: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\"a[href^=\\\"https://thehackernews.uk/\\\"]\",\"tasks\":[[\"matches-attr\",{\"attr\":\"href\",\"value\":\"/https:\\\\/\\\\/thehackernews\\\\.uk\\\\/[a-zA-Z0-9]{4,}/\"}],[\"spath\",\":not([href*=\\\"-\\\"]):not([class*=\\\"button\\\"]):not([class*=\\\"latest\\\"])\"]]}]","[{\"selector\":\"[data-pid^=\\\"ad-\\\"]\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\".mb32\",\"tasks\":[[\"has-text\",\"Advertisement\"]]}]","[{\"selector\":\".cmplz-blocked-content-container\",\"action\":[\"remove-class\",\"cmplz-blocked-content-container\"]}]","[{\"selector\":\".email-adblck-outline\",\"action\":[\"remove\",\"\"]},{\"selector\":\".email-open-read.email-open\",\"action\":[\"style\",\"display:flex !important\"],\"cssable\":true}]","[{\"selector\":\"#openLinks\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"main > div > [id].scroll-mt-20\",\"tasks\":[[\"has\",{\"selector\":\".items-center + div\",\"tasks\":[[\"has-text\",\"/^Sponsored$/\"]]}]]}]","[{\"selector\":\"div[class*=\\\"ads\\\"]\",\"tasks\":[[\"has-text\",\"/Advertisement/i\"]]}]","[{\"selector\":\"[href*=\\\"?key\\\"][target=\\\"_blank\\\"]\",\"action\":[\"remove-attr\",\"href\"]}]","[{\"selector\":\"[id=\\\"aswift_0_host\\\"], [id=\\\"aswift_1_host\\\"], [id=\\\"aswift_2_host\\\"], [id=\\\"aswift_3_host\\\"], [id=\\\"aswift_4_host\\\"], [id=\\\"aswift_5_host\\\"]\",\"action\":[\"style\",\"opacity: 0 !important; pointer-events: none !important;\"],\"cssable\":true}]","[{\"selector\":\"div[tabindex] > button\",\"tasks\":[[\"has-text\",\"Buy $\"]]}]","[{\"selector\":\".widget_text\",\"tasks\":[[\"has-text\",\"Advertisement\"]]}]","[{\"selector\":\".vjs-control-bar\",\"action\":[\"style\",\"display: flex !important;\"],\"cssable\":true}]","[{\"selector\":\".tjp-single__content-ads\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\".sponsorship\",\"action\":[\"remove-class\",\"sponsorship\"]}]","[{\"selector\":\"body[data-scroll-locked]\",\"action\":[\"remove-attr\",\"data-scroll-locked\"]},{\"selector\":\"body[style=\\\"pointer-events: none;\\\"]\",\"action\":[\"style\",\"pointer-events: auto !important;\"],\"cssable\":true}]","[{\"selector\":\"[data-popunder-enabled]\",\"action\":[\"remove-attr\",\"data-popunder-enabled\"]}]","[{\"selector\":\".article_content > [class] > [class]:has(.iframe_embed_container)\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"header.elevation-3\",\"action\":[\"style\",\"top: 0px !important;\"],\"cssable\":true},{\"selector\":\"main\",\"action\":[\"style\",\"--v-layout-top: 64px !important;\"],\"cssable\":true}]","[{\"selector\":\"body\",\"action\":[\"style\",\"overflow: auto !important; position: initial !important;\"],\"cssable\":true}]","[{\"selector\":\"header.intro\",\"action\":[\"style\",\"margin-bottom: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\".js-side-ads-movie-container\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\".preShell\",\"action\":[\"style\",\"height: 0 !important;\"],\"cssable\":true},{\"selector\":\".zad.billboard\",\"action\":[\"style\",\"min-height: 1px !important;\"],\"cssable\":true},{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"iframeTestTimeMS\"]]}]","[{\"selector\":\"body\",\"action\":[\"style\",\"background-image: unset !important; cursor: auto !important;\"],\"cssable\":true}]","[{\"selector\":\"#header-collapse-trigger\",\"action\":[\"style\",\"top: 0 !important; margin-top: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\"\",\"tasks\":[[\"matches-path\",\"/^\\\\/($|abss\\\\/)/\"],[\"spath\",\" .postContent a[href^=\\\"/\\\"]:not([href*=\\\"/forum/\\\"])\"],[\"matches-attr\",{\"attr\":\"href\",\"value\":\"/^\\\\/[-a-z]+\\\\?[a-z]{2,}=/\"}]]},{\"selector\":\"\",\"tasks\":[[\"matches-path\",\"/^\\\\/($|abss\\\\/)/\"],[\"spath\",\" a:is([href^=\\\"/\\\"], [href*=\\\"audiobookbay.lu/\\\"])\"],[\"matches-attr\",{\"attr\":\"href\",\"value\":\"/(^|audiobookbay\\\\.lu)\\\\/[-a-z0-9]+$/\"}],[\"spath\",\" img\"]]}]","[{\"selector\":\"\",\"action\":[\"style\",\"background: none !important;\"],\"tasks\":[[\"not\",{\"selector\":\"\",\"tasks\":[[\"matches-path\",\"/amafav/\"]]}],[\"spath\",\" .image_box[style*=\\\"amazon.co\\\"]\"]]},{\"selector\":\"\",\"tasks\":[[\"not\",{\"selector\":\"\",\"tasks\":[[\"matches-path\",\"/amafav/\"]]}],[\"spath\",\" a[href^=\\\"https://www.amazon.co.jp\\\"][target=\\\"_blank\\\"]\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"/eval\\\\(.+?decodeURIComponent/\"]]}]","[{\"selector\":\"script[data-cfasync]\",\"tasks\":[[\"has-text\",\"popundersPerIP\"]]}]","[{\"selector\":\"a[href^=\\\"https://skinrave.gg/rewards?\\\"]\",\"action\":[\"style\",\"height: 0px !important; margin-bottom: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\".Page-body[data-header-hat=\\\"true\\\"] .Page-header\",\"action\":[\"style\",\"top: 0px !important;\"],\"cssable\":true},{\"selector\":\".Page-body[data-header-hat=\\\"true\\\"]\",\"action\":[\"style\",\"padding-top: var(--headerHeight) !important;\"],\"cssable\":true}]","[{\"selector\":\"#trd-header\",\"action\":[\"style\",\"top: 0 !important;\"],\"cssable\":true},{\"selector\":\"body[data-pushdown-enabled=\\\"true\\\"]\",\"action\":[\"style\",\"margin-top: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\"#header-adv-banner\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\".main-header\",\"action\":[\"style\",\"top: 0 !important\"],\"cssable\":true}]","[{\"selector\":\"a[download-button]\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"#o-site-hr__leaderboard-wallpaper.u-show-for-xlarge\",\"action\":[\"remove\",\"\"]},{\"selector\":\"[data-ad-name]\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"html\",\"action\":[\"style\",\"background-image: none !important;\"],\"cssable\":true}]","[{\"selector\":\"div[id^=\\\"leading_video_player_autoplay_\\\"][id$=\\\"_main_wrapper\\\"]\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"a[href]#clickfakeplayer\",\"action\":[\"remove-attr\",\"href\"]}]","[{\"selector\":\"[id^=\\\"rewarded_ad_\\\"]:not(#rewarded_ad_blocker)\",\"action\":[\"style\",\"display: block !important; visibility: visible !important;\"],\"cssable\":true}]","[{\"selector\":\".sidebar-tabs-panels\",\"action\":[\"style\",\"max-height: 700px !important;\"],\"cssable\":true}]","[{\"selector\":\"[class*=\\\"has-interstitial-ads\\\"]\",\"action\":[\"remove-class\",\"/^has-interstitial-ads/\"]},{\"selector\":\"body.has-interstitial-ads .has-interstitial-ads-page, body.has-interstitial-ads .has-interstitial-ads-page *\",\"action\":[\"style\",\"visibility: visible !important;\"],\"cssable\":true}]","[{\"selector\":\"body::before\",\"action\":[\"style\",\"background: none !important;\"],\"cssable\":true},{\"selector\":\"html\",\"action\":[\"style\",\"cursor: auto !important;\"],\"cssable\":true}]","[{\"selector\":\".header\",\"action\":[\"style\",\"top: 0px !important;\"],\"cssable\":true},{\"selector\":\"h1\",\"action\":[\"style\",\"margin-top:20px !important;\"],\"cssable\":true},{\"selector\":\"main[role=\\\"main\\\"]\",\"action\":[\"style\",\"margin-top:30px !important;\"],\"cssable\":true}]","[{\"selector\":\".header, .leaflet-top.leaflet-left\",\"action\":[\"style\",\"top: 0 !important;\"],\"cssable\":true},{\"selector\":\".map\",\"action\":[\"style\",\"top: 52px !important;\"],\"cssable\":true}]","[{\"selector\":\"main div.MuiBox-root > span.MuiTypography-subtitle2\",\"tasks\":[[\"has-text\",\"Advertisement\"],[\"upward\",1]]}]","[{\"selector\":\".play-Imagemaker\",\"action\":[\"style\",\"height: 100% !important;\"],\"cssable\":true}]","[{\"selector\":\".vjs-poster-onscreen\",\"action\":[\"style\",\"visibility: hidden !important;\"],\"cssable\":true}]","[{\"selector\":\"#disqus_thread\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\"body::after\",\"action\":[\"style\",\"background: unset !important;\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"/history\\\\.pushState/\"]]}]","[{\"selector\":\"div[class=\\\"alert alert-info m-0 p-0\\\"]\",\"tasks\":[[\"has-text\",\"/uBlock|AdGuard|advertisments/i\"]]}]","[{\"selector\":\"p.chapter_content\",\"action\":[\"style\",\"display: block !important; visibility: visible !important; opacity: 1 !important; transform: none !important;\"],\"cssable\":true}]","[{\"selector\":\"body::before\",\"action\":[\"style\",\"background-image: unset !important;\"],\"cssable\":true}]","[{\"selector\":\".cNDPHQ, .fKCJyZ\",\"action\":[\"style\",\"top: 0px !important; transform: unset !important;\"],\"cssable\":true}]","[{\"selector\":\"div[class*=\\\"styles_withAd\\\"]\",\"action\":[\"style\",\"padding-top: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\".p-pageWrapper\",\"action\":[\"style\",\"margin-bottom: 0px !important;\"],\"cssable\":true},{\"selector\":\"a.link.link--external[href][data-proxy-href]\",\"action\":[\"remove-attr\",\"data-proxy-href\"]}]","[{\"selector\":\".ads_horizontal_reader\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\"#top_ad_container + div\",\"action\":[\"style\",\"padding-top: 4rem !important;\"],\"cssable\":true}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"NREUM\"]]}]","[{\"selector\":\"[data-aop=\\\"stripe.sponsored.navigation_stripenavigation\\\"]\",\"tasks\":[[\"upward\",2]]},{\"selector\":\"[data-aop=\\\"stripe.store.navigation_stripenavigation\\\"]\",\"tasks\":[[\"upward\",2]]}]","[{\"selector\":\"[src^=\\\"assets/bn\\\"]\",\"tasks\":[[\"upward\",\"[style]\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"g02.\"]]}]","[{\"selector\":\"#play_button\",\"action\":[\"style\",\"display:block!important;\"],\"cssable\":true},{\"selector\":\"a.button-link.mybutton\",\"tasks\":[[\"has-text\",\"Play\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"decodeURIComponent\"]]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"return a.split\"]]}]","[{\"selector\":\"div[wire\\\\:click=\\\"watching\\\"]\",\"action\":[\"style\",\"display: flex !important;\"],\"cssable\":true}]","[{\"selector\":\"a[id^=\\\"download-btn\\\"]\",\"action\":[\"style\",\"display: block !important;\"],\"cssable\":true}]","[{\"selector\":\".ue-app-container\",\"action\":[\"style\",\"margin-top: 60px !important;\"],\"cssable\":true},{\"selector\":\"[class^=\\\"Header_headerContainer\\\"]\",\"action\":[\"style\",\"top: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\"body > #external_container\",\"action\":[\"style\",\"height:100% !important\"],\"cssable\":true},{\"selector\":\"body\",\"action\":[\"style\",\"margin:0 !important\"],\"cssable\":true}]","[{\"selector\":\"[href=\\\"/advertise\\\"]\",\"tasks\":[[\"upward\",1]]}]","[{\"selector\":\".downloadbtn\",\"action\":[\"style\",\"display: block !important\"],\"cssable\":true}]","[{\"selector\":\"div\",\"tasks\":[[\"has\",{\"selector\":\"+ script\",\"tasks\":[[\"has-text\",\"challenge\"]]}],[\"spath\",\":has(a :is(img[src*=\\\"/\\\"][src*=\\\"_\\\"][alt], [style]))\"]]},{\"selector\":\"div[id]:has(> [data-freestar-ad])\",\"action\":[\"remove\",\"\"]}]","[{\"selector\":\".sticky ~ header\",\"action\":[\"style\",\"top: 0px !important;\"],\"cssable\":true}]","[{\"selector\":\".m-188zyzr\",\"tasks\":[[\"matches-css\",{\"name\":\"width\",\"value\":\"^728px$\"}]]},{\"selector\":\"span\",\"tasks\":[[\"has-text\",\"Advertisement\"],[\"upward\",3]]}]","[{\"selector\":\"a.setpopupcookie[href^=\\\"get/video/\\\"]\",\"action\":[\"remove-attr\",\"href\"]}]","[{\"selector\":\"a[href][target^=\\\"_blank\\\"]\",\"action\":[\"style\",\"pointer-events:none!important\"],\"cssable\":true}]","[{\"selector\":\"[data-ads_url]\",\"action\":[\"remove-attr\",\"data-ads_url\"]}]","[{\"selector\":\"#main-content\",\"action\":[\"style\",\"margin-top: 125px !important;\"],\"cssable\":true}]","[{\"selector\":\".navigation--has-subnav\",\"action\":[\"style\",\"top:0 !important\"],\"cssable\":true}]","[{\"selector\":\"#claimform\",\"action\":[\"style\",\"display:block !important\"],\"cssable\":true}]","[{\"selector\":\"style\",\"action\":[\"remove\",\"\"],\"tasks\":[[\"has-text\",\".unlockr-no-scroll\"]]}]","[{\"selector\":\".azz_div\",\"action\":[\"style\",\"height: unset !important;\"],\"cssable\":true}]","[{\"selector\":\"#Header\",\"action\":[\"style\",\"top: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\".site-header\",\"action\":[\"style\",\"top: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\".min-h-\\\\[184px\\\\]\",\"action\":[\"style\",\"min-height: 0 !important;\"],\"cssable\":true},{\"selector\":\"div[class^=\\\"Tabs_tabs__\\\"]\",\"action\":[\"style\",\"top: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\"html\",\"action\":[\"style\",\"--bottom-banner-height: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\".video-list-content\",\"action\":[\"remove-class\",\"with-happy\"]}]","[{\"selector\":\".sticky ~ header\",\"action\":[\"style\",\"top: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\"#Sidebar ~ #Content:has(.adsbygoogle)\",\"action\":[\"style\",\"margin-right: 0 !important\"],\"cssable\":true},{\"selector\":\"#wb_right:has(.adsbygoogle)\",\"action\":[\"style\",\"right: 0 !important\"],\"cssable\":true}]","[{\"selector\":\"main\",\"action\":[\"style\",\"margin-top: 10px !important\"],\"cssable\":true}]","[{\"selector\":\"#home-page-home-page-component1-row-ad\",\"tasks\":[[\"upward\",2]]},{\"selector\":\".story-container > div:not(.story-wrapper)\",\"action\":[\"style\",\"top: 0 !important;\"],\"cssable\":true}]","[{\"selector\":\".divide-nav\",\"action\":[\"style\",\"height: 120px !important\"],\"cssable\":true}]","[{\"selector\":\"a[onclick^=\\\"trackURL\\\"]\",\"action\":[\"remove-attr\",\"onclick\"]},{\"selector\":\"a[onmousedown^=\\\"return enc(this,'https://track.rediff.com\\\"]\",\"action\":[\"remove-attr\",\"onmousedown\"]}]","[{\"selector\":\"a.outbound[data-outbound-url]\",\"action\":[\"remove-attr\",\"data-outbound-url\"]}]","[{\"selector\":\"#main a[href][data-sb^=\\\"/url?\\\"]\",\"action\":[\"remove-attr\",\"data-sb\"]}]","[{\"selector\":\"html > head > :is([name=\\\"canonical\\\"], [rel=\\\"canonical\\\"]):not([content*=\\\"/details/\\\"])\",\"tasks\":[[\"upward\",1],[\"spath\",\" > script[src*=\\\"optimizely\\\"]\"]]}]","[{\"selector\":\"a[href][data-link-out]\",\"action\":[\"remove-attr\",\"data-link-out\"]}]","[{\"selector\":\".gsc-webResult a[data-cturl]\",\"action\":[\"remove-attr\",\"/^data-ct/\"]}]","[{\"selector\":\"script\",\"tasks\":[[\"has-text\",\"vglnk\"]]}]","[{\"selector\":\".login-page\",\"action\":[\"style\",\"-webkit-animation: none !important\"],\"cssable\":true}]","[{\"selector\":\".icon_animation samp\",\"action\":[\"style\",\"animation: none !important;\"],\"cssable\":true}]"];
31
+ const argsSeqs = [0,1,2,3,-4,375,-5,375,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,-25,26,25,27,28,29,30,-30,335,-30,346,-30,-658,-661,-662,-665,-674,-676,677,-30,-658,-661,-662,-665,676,-30,-658,-661,-662,-664,-665,-666,-667,677,-30,-658,-661,-662,-665,677,-30,-658,-661,662,-30,-658,-661,-662,-663,665,-30,-658,-661,-662,-664,-666,-672,677,-30,-658,-661,670,-30,-658,-661,-664,665,-30,-658,-661,-662,-663,-666,671,-30,-658,-661,-662,663,-30,-658,-661,-662,-663,666,-30,-658,-661,666,-30,-658,662,-30,649,-30,796,31,32,33,34,35,-36,37,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,-59,-82,85,60,61,62,-63,64,63,64,65,66,67,68,69,-70,116,71,72,73,74,75,76,77,78,79,80,81,-82,83,-84,85,86,87,88,-89,90,-89,91,92,93,-94,190,94,-94,221,-94,386,-94,567,95,96,97,98,99,100,101,102,103,-103,170,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,-120,572,121,122,123,124,-125,774,125,126,127,128,129,130,131,132,133,134,135,-136,761,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,-158,159,159,-159,204,160,161,162,163,-164,165,-164,168,164,166,167,169,171,172,173,174,-175,895,176,177,178,179,180,181,182,183,-184,185,-185,186,187,188,189,191,192,193,194,-194,205,195,196,197,198,199,200,201,202,203,206,207,-207,501,208,209,210,211,-212,213,212,-212,508,-212,556,-212,250,214,215,216,217,218,219,220,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,-245,875,246,247,248,249,-250,251,-250,284,250,-250,296,-250,345,-250,-416,529,-250,416,252,-252,348,253,-253,308,254,-254,-259,260,255,256,-256,257,258,-259,301,-261,262,-262,317,-263,373,264,-265,373,266,-267,268,268,269,270,271,272,273,274,275,276,-277,279,277,-277,288,-277,522,-277,612,-277,642,278,280,281,282,283,-284,333,285,286,287,288,289,290,291,-292,326,293,294,295,297,298,299,300,302,-303,304,-303,327,304,-304,321,305,-305,306,307,309,-309,311,310,-311,312,313,314,315,316,318,319,320,321,322,-323,324,324,325,326,328,329,330,331,332,334,335,336,337,338,339,340,341,342,343,344,347,348,349,350,351,352,353,354,355,356,-357,358,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,376,377,378,379,380,-380,759,381,382,383,384,385,387,388,389,390,391,392,393,394,-394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,-415,416,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,-449,568,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,502,503,504,505,506,507,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,-546,547,546,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,569,570,571,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,-600,601,602,603,604,605,606,607,-607,651,608,609,610,611,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,-645,646,646,647,648,649,650,652,653,654,655,656,657,-659,-660,675,-659,660,659,661,662,664,665,-665,672,666,-666,668,669,672,673,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,762,763,764,765,766,767,768,769,770,771,772,773,-773,844,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,-816,856,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895];
32
+ const hostnamesMap = new Map([["aternos.org",1],["poophq.com",2],["veev.to",2],["0cbcq8mu.com",3],["2cf0xzdu.com",3],["4k2h4w04.xyz",3],["a6iqb4m8.xyz",3],["afl3ua5u.xyz",3],["jmzkzesy.xyz",3],["dogdrip.net",4],["infinityfree.com",6],["smsonline.cloud",8],["07c225f3.online",9],["content-loader.com",9],["css-load.com",9],["html-load.com",9],["img-load.com",9],["bing.com",10],["global.novelpia.com",11],["orange.fr",12],["drstevenlin.com",13],["yts.*",13],["romaniataramea.com",13],["straatosphere.com",13],["discussingfilm.net",13],["rmweb.co.uk",13],["apnews.com",14],["carbuzz.com",15],["~ebay.com",16],["los40.com",17],["reuters.com",18],["begadistrictnews.com.au",19],["bendigoadvertiser.com.au",19],["goulburnpost.com.au",19],["maitlandmercury.com.au",19],["newcastleherald.com.au",19],["examiner.com.au",20],["theadvocate.com.au",20],["thecourier.com.au",20],["~praxistipps.chip.de",21],["hero-magazine.com",22],["digg.com",23],["autoblog.com",24],["researchgate.net",25],["~uschovna.cz",26],["uschovna.cz",27],["kitguru.net",29],["vladan.fr",29],["commands.gg",29],["stardewids.com",29],["unito.life",30],["ilbianconero.com",31],["profit.ro",32],["walletinvestor.com",33],["palatifini.it",33],["dmzj.com",33],["leechpremium.link",33],["beautypackaging.com",33],["coatingsworld.com",33],["contractpharma.com",33],["happi.com",33],["inkworldmagazine.com",33],["labelandnarrowweb.com",33],["mpo-mag.com",33],["nutraceuticalsworld.com",33],["odtmag.com",33],["printedelectronicsnow.com",33],["4j.com",33],["cinema.maalaimalar.com",33],["publish0x.com",33],["fansonlinehub.com",33],["hotmediahub.com",33],["terabox.fun",33],["teralink.me",33],["terashare.me",33],["teraearn.com",33],["techishant.in",34],["aman-dn.blogspot.com",36],["cyberlynews.com",33],["quizrent.com",33],["hindustantimes.com",33],["myflixer.*",33],["advertiserandtimes.co.uk",33],["primeos.in",33],["moviesjoy.*",33],["sportstiger.com",33],["eltiempo.es",33],["tribuna.com",33],["vuinsider.com",33],["wp.pl",38],["money.pl",46],["o2.pl",52],["parenting.pl",61],["pudelek.pl",67],["autokult.pl",71],["gadzetomania.pl",71],["fotoblogia.pl",71],["komorkomania.pl",71],["polygamia.pl",71],["abczdrowie.pl",77],["benchmark.pl",85],["kafeteria.pl",89],["pysznosci.pl",94],["dobreprogramy.pl",101],["genialne.pl",106],["autocentrum.pl",112],["jastrzabpost.pl",106],["deliciousmagazine.pl",116],["review.firstround.com",33],["truthsocial.com",33],["schools.snap.app",33],["linkneverdie.net",33],["carbonite.co.za",119],["petri.com",33],["beaumontenterprise.com",121],["bigrapidsnews.com",121],["ctinsider.com",121],["ctpost.com",121],["darientimes.com",121],["expressnews.com",121],["greenwichtime.com",121],["houstonchronicle.com",121],["lmtonline.com",121],["manisteenews.com",121],["michigansthumb.com",121],["middletownpress.com",121],["milfordmirror.com",121],["mrt.com",121],["myjournalcourier.com",121],["ncadvertiser.com",121],["newstimes.com",121],["nhregister.com",121],["ourmidland.com",121],["registercitizen.com",121],["sfchronicle.com",121],["sheltonherald.com",121],["stamfordadvocate.com",121],["theheraldreview.com",121],["thehour.com",121],["theintelligencer.com",121],["theridgefieldpress.com",121],["thetelegraph.com",121],["timesunion.com",121],["trumbulltimes.com",121],["wiltonbulletin.com",121],["yourconroenews.com",121],["cybernews.com",33],["cyberstumble.com",123],["gigantti.fi",124],["kingarthurbaking.com",125],["~job.mt.de",126],["~job.nw.de",126],["beckershospitalreview.com",127],["thequint.com",128],["prepostseo.com",130],["novelgames.com",131],["tcsjerky.com",132],["~instagram.com",133],["gamingbible.com",134],["eitb.eus",135],["riteaid.com",136],["radiox.co.uk",137],["itmedia.co.jp",138],["bellinghamherald.com",139],["bnd.com",139],["bradenton.com",139],["centredaily.com",139],["charlotteobserver.com",139],["flkeysnews.com",139],["fresnobee.com",139],["heraldonline.com",139],["heraldsun.com",139],["idahostatesman.com",139],["islandpacket.com",139],["kansas.com",139],["kansascity.com",139],["kentucky.com",139],["ledger-enquirer.com",139],["macon.com",139],["mahoningmatters.com",139],["mcclatchydc.com",139],["mercedsunstar.com",139],["miamiherald.com",139],["modbee.com",139],["myrtlebeachonline.com",139],["newsobserver.com",139],["sacbee.com",139],["sanluisobispo.com",139],["star-telegram.com",139],["sunherald.com",139],["thestate.com",140],["variety.com",141],["mediaite.com",142],["muropaketti.com",143],["jayisgames.com",144],["scotsman.com",145],["brightygames.com",146],["yoho.games",146],["sisigames.com",147],["decathlon.in",148],["metastats.net",149],["goku.sx",150],["eksisozluk.com",151],["indiatimes.com",152],["abcam.com",155],["buytesmart.com",156],["vidaextra.com",157],["www.reddit.com",158],["new.reddit.com",160],["sh.reddit.com",161],["www.al.com",162],["www.cleveland.com",162],["www.lehighvalleylive.com",162],["www.masslive.com",162],["www.mlive.com",162],["www.nj.com",162],["www.oregonlive.com",162],["www.pennlive.com",162],["www.silive.com",162],["www.syracuse.com",162],["sklep.trzynastkaplus.pl",163],["reclameaqui.com.br",164],["gifmagic.com",165],["lastampa.it",166],["nytimes.com",167],["typingtest.com",169],["gazzetta.gr",170],["steamidfinder.com",171],["abeautifuldominion.com",172],["some.porn",173],["play.diziyou1.com",174],["play.diziyou2.com",174],["play.diziyou3.com",174],["play.diziyou4.com",174],["play.diziyou5.com",174],["play.diziyou6.com",174],["play.diziyou7.com",174],["play.diziyou8.com",174],["play.diziyou9.com",174],["play.diziyou10.com",174],["play.diziyou11.com",174],["play.diziyou12.com",174],["play.diziyou13.com",174],["play.diziyou14.com",174],["play.diziyou15.com",174],["play.diziyou16.com",174],["play.diziyou17.com",174],["play.diziyou18.com",174],["play.diziyou19.com",174],["play.diziyou20.com",174],["play.diziyou21.com",174],["play.diziyou22.com",174],["play.diziyou23.com",174],["play.diziyou24.com",174],["play.diziyou25.com",174],["play.diziyou26.com",174],["play.diziyou27.com",174],["play.diziyou28.com",174],["play.diziyou29.com",174],["play.diziyou30.com",174],["play.diziyou31.com",174],["play.diziyou32.com",174],["play.diziyou33.com",174],["play.diziyou34.com",174],["play.diziyou35.com",174],["play.diziyou36.com",174],["play.diziyou37.com",174],["play.diziyou38.com",174],["play.diziyou39.com",174],["play.diziyou40.com",174],["play.diziyou41.com",174],["play.diziyou42.com",174],["play.diziyou43.com",174],["play.diziyou44.com",174],["play.diziyou45.com",174],["play.diziyou46.com",174],["play.diziyou47.com",174],["play.diziyou48.com",174],["play.diziyou49.com",174],["play.diziyou50.com",174],["youtube.com",175],["tvspielfilm.de",176],["sport1.de",177],["pornhub.*",178],["economictimes.indiatimes.com",179],["samayam.com",180],["m.economictimes.com",182],["m.timesofindia.com",184],["aranzulla.it",185],["uol.com.br",186],["businesstoday.in",187],["indiatoday.in",189],["intoday.in",189],["facebook.com",191],["facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion",191],["web.facebook.com",192],["www.facebook.com",192],["ndtv.com",193],["investing.com",195],["greensboro.com",195],["photobucket.com",196],["yusepjaelani.blogspot.com",195],["web2.0rechner.de",195],["web2.0calc.*",195],["beermoneyforum.com",198],["streamingcommunity.*",200],["alliptvlinks.com",195],["bitchute.com",195],["wetteronline.*",202],["m.aajtak.in",203],["amazon.*",204],["web.de",205],["golem.de",206],["bild.de",207],["usatoday.com",208],["quora.com",209],["gamestorrents.*",210],["gogoanimes.*",210],["limetorrents.*",211],["piratebayz.*",210],["mediafire.com",213],["rule34.xxx",214],["popculture.com",215],["mind42.com",216],["elmundo.es",217],["primewire.*",218],["torrentz2.*",219],["torlock.*",220],["torlock2.*",220],["wunderground.com",221],["mylink.*",222],["my1ink.*",222],["myl1nk.*",222],["myli3k.*",222],["freebeacon.com",223],["chan.sankakucomplex.com",224],["nytimes3xbfgragh.onion",225],["cooking.nytimes.com",226],["userupload.*",227],["animepahe.*",228],["kwik.*",228],["ouo.*",228],["urlpay.net",228],["newtorrentgame.com",228],["kropic.com",228],["hpaudiobooks.*",228],["xxxmax.net",228],["ebookbb.com",228],["alexsports.*",228],["poscitech.*",229],["sportsonline.*",230],["yts.mx",232],["imgtaxi.com",233],["hqq.*",234],["waaw.*",234],["alrincon.com",235],["1337x.*",236],["x1337x.*",236],["1337x.unblock2.xyz",238],["1337x.unblocked.*",238],["1337x.unblockit.*",238],["pussyspace.com",239],["pussyspace.net",239],["tnaflix.com",240],["stomp.straitstimes.com",241],["feet9.com",242],["mylust.com",243],["pixhost.*",244],["nme.com",245],["idealhome.co.uk",246],["look.co.uk",246],["focus.de",247],["vsco.co",248],["twitter.com",249],["twitter3e4tixl4xyajtrzo62zg5vztmjuricljdp2c5kshju4avyoid.onion",251],["x.com",249],["op.gg",252],["jeuxvideo.com",253],["pcbolsa.com",254],["reddit.com",255],["reddittorjg6rue252oqsxryoxengawnmo46qy4kyii5wtqnwfj4ooad.onion",255],["hdmotori.it",256],["strikeout.*",257],["peliculasmx.net",258],["btc-echo.de",259],["cricstream.me",260],["bowfile.com",260],["crackllc.com",261],["designmodo.com",261],["hackstore.*",261],["compucalitv.com",261],["procrackerz.org",261],["megawarez.org",261],["dailydot.com",262],["mypornstarbook.net",263],["ashemaletube.com",264],["ashemaletube.*",265],["igg-games.com",266],["gamepedia.com",267],["appvn.com",268],["ccn.com",269],["ettv.*",270],["xrares.com",271],["link.goto.com.np",272],["movies123.*",273],["0123movies.*",275],["5movies.*",276],["megadede.*",275],["adivineencounter.com",278],["alcasthq.com",278],["au-di-tions.com",278],["badgehungry.com",278],["bloggingawaydebt.com",278],["chipandco.com",278],["cornerstoneconfessions.com",278],["dearcreatives.com",278],["divinelifestyle.com",278],["eslauthority.com",278],["heresyoursavings.com",278],["investingchannel.com",278],["irresistiblepets.net",278],["justjared.com",278],["kompas.com",278],["lovegrowswild.com",278],["mjsbigblog.com",278],["mommybunch.com",278],["mustardseedmoney.com",278],["myfunkytravel.com",278],["mywomenstuff.com",278],["onetimethrough.com",278],["panlasangpinoymeatrecipes.com",278],["peru21.pe",278],["savespendsplurge.com",278],["savvyhoney.com",278],["silverpetticoatreview.com",278],["tamaratattles.com",278],["the-military-guide.com",278],["the2seasons.com",278],["therelaxedhomeschool.com",278],["thetechieguy.com",278],["waterheaterleakinginfo.com",278],["zeroto60times.com",278],["cut-fly.com",279],["foxseotools.com",279],["classicreload.com",280],["piratebay.*",281],["pirateproxy.*",281],["wowescape.com",282],["games2rule.com",284],["bigescapegames.com",286],["pornve.com",287],["pixlr.com",288],["elixx.*",289],["hardmob.com.br",290],["gameguardian.net",291],["safe.elektroupdate.com",291],["mirrorace.*",292],["elizabeth-mitchell.org",293],["plagiarismchecker.co",294],["temp-mail.org",296],["medievalists.net",297],["u.gg",298],["celebjihad.com",299],["xnxxjapon.com",300],["solarmovie.*",301],["dramacool.*",302],["webserver.one",303],["t-online.de",304],["~email.t-online.de",306],["convallariaslibrary.com",308],["gourmetscans.net",308],["frag-mutti.de",309],["ovagames.com",310],["food.ndtv.com",311],["ustream.*",312],["ableitungsrechner.net",313],["watchfreexxx.net",314],["pandamovie.*",315],["pandamovies.me",315],["pornkino.cc",315],["speedporn.*",315],["xxxscenes.net",315],["youwatchporn.com",315],["onle.co",317],["loskatchorros.com.br",317],["how2electronics.com",317],["univers-simu.com",317],["stokerpiller.dk",317],["onlinestudentseva.com",317],["dexterclearance.com",317],["extratorrent.*",318],["oko.sh",319],["fuqer.com",320],["filerio.in",321],["duden.de",322],["cinetux.*",323],["streameast.*",324],["mlwbd.*",325],["washingtonpost.com",326],["marketmovers.it",327],["newssokuhou666.blog.fc2.com",327],["youkaiwatch2345.blog.fc2.com",327],["5ggyan.com",328],["bigbtc.win",330],["cryptofun.space",330],["games4king.com",331],["artribune.com",332],["oscobo.com",333],["ufacw.com",334],["segurosdevida.site",336],["choiceappstore.xyz",336],["bantenexis.com",336],["tutorialsaya.com",334],["indobo.com",334],["informaxonline.com",334],["gifans.com",336],["mcrypto.club",337],["luckydice.net",336],["adarima.org",336],["1apple.xyz",336],["shorttrick.in",336],["iptvjournal.com",336],["inbbotlist.com",336],["apkmaven.*",339],["theusaposts.com",336],["garoetpos.com",336],["techedubyte.com",336],["cdrab.com",341],["offerinfo.net",336],["winlator.com",336],["gosexpod.com",343],["flashingjungle.com",344],["nakedneighbour.com",345],["bestjavporn.com",346],["leechall.*",347],["ff14angler.com",348],["flsaudio.com",349],["bitcointalk.org",350],["adshrink.it",351],["turkanime.*",352],["allcalidad.*",353],["cinemaxxl.de",354],["player.pl",355],["bde4.*",356],["9gag.com",357],["filmytoday.com",358],["fandom.com",359],["sensualgirls.org",360],["wallpaperwaifu.com",361],["gamesradar.com",362],["techradar.com",362],["tomsguide.com",362],["tomshardware.com",362],["whathifi.com",362],["her.ie",363],["javhoho.com",363],["techhelpbd.com",363],["greentumble.com",363],["newsonthegotoday.com",364],["boyfriendtv.com",365],["makemoneywithurl.com",366],["dvdgayonline.com",367],["94.103.83.138",367],["multimovies.*",367],["ddaynormandy.forumgaming.fr",368],["neogeo-system.com",368],["medicalnewstoday.com",369],["fiches-auto.fr",370],["subsvip.com",371],["javcl.com",372],["javfull.net",372],["allgamesejogos.*",373],["bemestarglobal.*",373],["gamesgo.*",373],["lojadebicicleta.com.br",373],["redecanais.*",374],["pcmag.com",376],["enterinit.com",377],["procinehub.com",378],["bookmystrip.com",378],["tech8s.net",379],["drop.carbikenation.com",379],["linkss.rcccn.in",379],["link.djbassking.live",379],["tech5s.co",379],["game5s.com",379],["vezeta.net",380],["waiwj.net",380],["xcbtm.net",380],["wttai.net",380],["ngviral.com",380],["vgviral.com",380],["nosviral.com",380],["mentalfile.com",380],["qaluri.com",380],["jokgame.com",380],["placementsmela.com",382],["reminimod.co",382],["highkeyfinance.com",382],["amanguides.com",382],["adcrypto.net",384],["admediaflex.com",384],["aduzz.com",384],["bitcrypto.info",384],["datacheap.io",384],["hbz.us",384],["savego.org",384],["owsafe.com",384],["sportweb.info",384],["ryuugames.com",385],["sportsonfr.com",382],["gurumu.net",382],["kreatifparenting.com",382],["panda.freemodsapp.in",382],["iconicblogger.com",382],["rsrlink.in",382],["investcrust.com",382],["litonmods.com",382],["filesupload.in",384],["technoinformations.com",384],["worldmak.com",384],["financacerta.com",387],["encurtads.net",387],["classicoder.com",382],["apkandroidhub.in",389],["studyis.xyz",392],["dulichkhanhhoa.net",392],["noithatmyphu.vn",392],["jardima.com",392],["getintoway.com",384],["blog.nationapk.com",382],["krishiloksewa.com",382],["modzilla.in",382],["itechmafiia.com",382],["mb.feedale.com",382],["tackledsoul.com",394],["adrino1.bonloan.xyz",394],["vi-music.app",394],["instanders.app",394],["rokni.xyz",395],["keedabankingnews.com",395],["tea-coffee.net",397],["spatsify.com",397],["newedutopics.com",397],["getviralreach.in",397],["edukaroo.com",397],["funkeypagali.com",397],["careersides.com",397],["nayisahara.com",397],["wikifilmia.com",397],["infinityskull.com",397],["viewmyknowledge.com",397],["iisfvirtual.in",397],["starxinvestor.com",397],["jkssbalerts.com",397],["appkamods.com",398],["imagereviser.com",400],["nichapk.com",401],["easyworldbusiness.com",401],["riveh.com",401],["upshrink.com",404],["junkyponk.com",405],["healthfirstweb.com",405],["vocalley.com",405],["yogablogfit.com",405],["howifx.com",405],["en.financerites.com",406],["mythvista.com",405],["livenewsflix.com",405],["cureclues.com",405],["apekite.com",405],["veganab.co",408],["camdigest.com",408],["bartendingexpert.com",409],["gyanitheme.com",411],["tech.trendingword.com",411],["blog.potterworld.co",411],["hipsonyc.com",411],["tech.pubghighdamage.com",411],["blog.itijobalert.in",411],["techkhulasha.com",411],["meclipstudy.in",413],["bookszone.in",415],["graphicuv.com",417],["learnmany.in",417],["hit-films.com",417],["shortix.co",418],["uptechnologys.com",420],["sevenjournals.com",420],["yalifin.xyz",421],["lrncook.xyz",421],["cryptokinews.com",423],["lifesurance.info",423],["financenova.online",424],["utkarshonlinetest.com",424],["financewada.com",424],["v2links.me",425],["fc-lc.*",426],["jobzhub.store",427],["fitdynamos.com",427],["labgame.io",427],["m.jobinmeghalaya.in",428],["healthy4pepole.com",429],["to-travel.net",429],["homeculina.com",430],["ineedskin.com",430],["kenzo-flowertag.com",430],["lawyex.co",430],["mdn.lol",430],["awgrow.com",431],["btcbitco.in",432],["btcsatoshi.net",432],["cempakajaya.com",434],["crypto4yu.com",432],["manofadan.com",434],["readbitcoin.org",432],["wiour.com",432],["coin-free.com",435],["tremamnon.com",437],["bitcotasks.com",434],["videolyrics.in",434],["tagecoin.com",439],["allfaucet.xyz",434],["claimcoins.site",434],["cryptosh.pro",434],["bitsmagic.fun",434],["ourcoincash.xyz",441],["masterduelmeta.com",443],["promo-visits.site",444],["shorterall.com",444],["homeairquality.org",445],["reidoplacar.com",446],["paidinsurance.in",447],["conghuongtu.net",447],["coinseidon.com",447],["djpunjab2.in",448],["djqunjab.in",448],["foodxor.com",448],["geniussolutions.co",448],["mealcold.com",448],["mixrootmods.com",448],["fartechy.com",448],["nishankhatri.xyz",450],["sugarona.com",451],["blog.disheye.com",452],["tinys.click",453],["apkupload.in",453],["ezeviral.com",453],["dailynew.online",453],["pngreal.com",453],["ytpng.net",453],["askpaccosi.com",453],["bitzite.com",454],["aiimgvlog.fun",455],["appsbull.com",456],["diudemy.com",456],["maqal360.com",456],["sahlmarketing.net",457],["blog.panytourism.online",459],["zubatecno.com",459],["battleroyal.online",459],["mayaremix.in",460],["unfoldedstars.com",460],["neverdims.com",460],["bit4me.info",460],["deltabtc.xyz",460],["mbjremix.com",460],["ottlatest.com",460],["techusnews.com",461],["universitiesonline.xyz",461],["intercelestial.com",462],["linegee.net",463],["filmypoints.in",464],["financeyogi.net",465],["finclub.in",465],["freethailottery.live",466],["progfu.com",466],["loanteacher.in",467],["gorating.in",467],["trickms.com",469],["letest25.co",471],["truevpnlover.com",471],["financebolo.com",471],["rphost.in",472],["easywithcode.tech",474],["vedamdigi.tech",475],["redfea.com",477],["pranarevitalize.com",477],["techyinfo.in",477],["fitnessholic.net",477],["cancelguider.online",478],["loan.punjabworks.com",479],["petrainer.in",481],["moderngyan.com",482],["sattakingcharts.in",482],["bgmi32bitapk.in",482],["bankshiksha.in",482],["earn.mpscstudyhub.com",482],["earn.quotesopia.com",482],["money.quotesopia.com",482],["best-mobilegames.com",482],["learn.moderngyan.com",482],["bharatsarkarijobalert.com",482],["quotesopia.com",482],["creditsgoal.com",482],["loan.creditsgoal.com",484],["rupyaworld.com",484],["vahantoday.com",484],["techawaaz.in",484],["loan.bgmi32bitapk.in",485],["currentrecruitment.com",486],["investorveda.com",486],["coingraph.us",487],["impact24.us",487],["foodupe.com",488],["bloggingdaze.com",489],["dsmusic.in",490],["techurlshort.in",491],["sub4unlock.com",492],["cybercityhelp.in",493],["akcartoons.in",495],["hosttbuzz.com",496],["policiesreview.com",496],["techacode.com",497],["travel.vebma.com",498],["mrproblogger.com",499],["themezon.net",499],["headlinerpost.com",500],["drinkspartner.com",500],["apcvpc.com",500],["posterify.net",500],["manishclasses.in",500],["shrinkforearn.in",501],["blog.workedbd.com",502],["advisecreate.fun",502],["uses-in-hindi.com",502],["maxxfour.com",502],["cybertyrant.com",502],["gdspike.com",502],["profitshort.com",502],["courselinkfree.us",502],["technorozen.com",502],["hubdrive.me",502],["hosty.uprwssp.org",503],["cinedesi.in",504],["thevouz.in",504],["tejtime24.com",504],["whatgame.xyz",505],["mooonten.com",505],["msic.site",505],["fx-22.com",505],["gold-24.net",505],["forexrw7.com",505],["kbconlinegame.com",506],["hamrojaagir.com",506],["odijob.com",506],["jeuxenligne.xyz",507],["dl.apkmoddone.com",508],["phongroblox.com",508],["bkgnews.in",509],["ontechhindi.com",509],["exactpay.online",510],["mahitimanch.in",511],["5ghindi.in",511],["rfiql.com",512],["gujjukhabar.in",512],["smartfeecalculator.com",512],["djxmaza.in",512],["thecubexguide.com",512],["jytechs.in",512],["dropgalaxy.*",513],["financemonk.net",513],["hypershort.com",514],["djremixganna.com",515],["potud.com",516],["winezones.in",516],["governmentjobvacancies.com",516],["marketrook.com",516],["swachataparnibandh.com",516],["techhype.in",517],["techsite.in",517],["datavaults.co",518],["go.zovo.ink",519],["foodtechnos.in",520],["newsbreak24.de",521],["businessinsider.de",522],["echo-online.de",523],["txxx.*",524],["txxxporn.tube",526],["upornia.com",527],["familyporner.com",528],["javbake.com",529],["javcensored.net",529],["javdoge.com",529],["javsexfree.com",529],["javuncensored.watch",529],["pussymaturephoto.com",530],["jpvhub.com",531],["bunkr.*",532],["comicxxx.eu",533],["sexmadeathome.com",533],["pornocomics.*",533],["amateurs-fuck.com",533],["sex-amateur-clips.com",533],["falatron.com",533],["pornoplum.com",534],["vulgarmilf.com",534],["oldgirlsporn.com",534],["maturell.com",534],["nakedolders.com",534],["widewifes.com",534],["hentaihere.com",535],["xnxx-sexfilme.com",536],["pahe.*",537],["actvid.*",538],["nu6i-bg-net.com",539],["ballexclusives.com",540],["androjungle.com",541],["bokugents.com",541],["idlixvip.*",542],["honkailab.com",543],["arkadium.com",544],["abysscdn.com",545],["fullfreeimage.com",545],["hihihaha1.xyz",545],["hihihaha2.xyz",545],["playhydrax.com",545],["rufiiguta.com",545],["hk.yahoo.com",546],["filmizle.*",547],["filmizletv.*",548],["filmizleplus.*",547],["fullhdfilm.*",547],["fullhdfilmizle.*",547],["hdfilmizlesene.*",547],["hdfilmsitesi.*",547],["l2db.info",550],["flickr.com",551],["forumconstruire.com",552],["vrcmods.com",553],["ilmeteo.it",554],["splitshire.com",555],["addictinggames.com",556],["foxnews.com",557],["sexodi.com",558],["sms24.*",559],["iseekgirls.com",560],["m.drtuber.com",561],["aemenstore.com",562],["byboe.com",562],["cazzette.com",562],["dreamcheeky.com",562],["fidlarmusic.com",562],["hookeaudio.com",562],["jncojeans.com",562],["kiemlua.com",563],["kingsleynyc.com",562],["lucidcam.com",562],["nguyenvanbao.com",562],["nousdecor.com",562],["pennbookcenter.com",562],["publicananker.com",562],["restorbio.com",562],["rezence.com",562],["staaker.com",562],["tricksplit.io",565],["apkcombo.com",565],["ctrlv.*",566],["atozmath.com",567],["indianwebseries.*",568],["simply-debrid.com",569],["cutty.app",569],["w3schools.com",570],["healthline.com",571],["vix.com",572],["responsivevoice.org",573],["cgtips.org",574],["shortenbuddy.com",575],["comicbook.com",576],["hentaicloud.com",577],["drphil.com",578],["bookriot.com",579],["pholder.com",580],["cookpad.com",581],["urbanmilwaukee.com",581],["phica.net",581],["xxxdan.com",582],["businesstimes.com.sg",583],["teknomuda.com",584],["isi7.net",586],["alltechnerd.com",587],["citynews.ca",588],["6abc.com",589],["abc11.com",589],["abc13.com",589],["abc30.com",589],["abc7.com",589],["abc7chicago.com",589],["abc7news.com",589],["abc7ny.com",589],["abcotvs.net",589],["videohelp.com",590],["top.gg",591],["arrowos.net",592],["tvshows4mobile.*",592],["br0wsers.com",593],["nifteam.info",594],["thejournal.ie",595],["needgayporn.com",596],["rule34.paheal.net",597],["palcomix.com",598],["pikkado.com",599],["nypost.com",600],["girlsofdesire.org",601],["akuu-sflin.blogspot.com",602],["jzzo.com",603],["ladbible.com",604],["loadout.tf",605],["projectfreetv.*",606],["hdss.*",606],["moviesflix.*",606],["10starhd.*",606],["2embed.*",606],["xcloud.*",607],["~xcloud.eu",607],["~xcloud.host",607],["elmalajeno.com",608],["imgur.com",609],["getsexgames.com",610],["adultgamestop.bigtopsites.com",611],["pornojenny.net",612],["pornolisa.com",612],["kickass.*",613],["javynow.com",614],["techjunkie.com",615],["reliabletv.me",616],["ytanime.tv",617],["sportskart.*",617],["garrysmods.org",618],["tyla.com",619],["sportbible.com",620],["gamingbible.co.uk",619],["dekki.com",622],["cambb.xxx",623],["xtube.com",624],["discovermagazine.com",625],["elitepvpers.com",626],["bhaskar.com",627],["divyabhaskar.co.in",627],["playonlinux.com",628],["kaotic.com",629],["cargurus.com",630],["haonguyen.top",631],["thumpertalk.com",632],["zshort.*",633],["eschenker.dbschenker.com",634],["porntn.com",635],["hotcleaner.com",636],["movie.momo-net.com",637],["xxxtime.sextgem.com",638],["gay4porn.com",639],["myabandonware.com",640],["mrunblock.*",641],["alrakoba.net",642],["netpornix.*",643],["hitproversion.com",644],["shemalestube.com",645],["sbplay.*",646],["foreca.com",647],["moviemakeronline.com",648],["kelasexcel.id",649],["maxstream.video",650],["uprot.net",651],["techpowerup.com",652],["qz.com",653],["247sports.com",654],["samehadaku.*",655],["gab.com",656],["kumparan.com",657],["videovard.*",658],["tumblr.com",659],["techymedies.com",660],["unsplash.com",661],["chess.com",662],["nodejs.libhunt.com",663],["blick.ch",664],["theloadout.com",665],["pcgamesn.com",665],["schoolcheats.net",666],["1cloudfile.com",667],["torrentdownloads.dirproxy.com",668],["torrentdownload.info",669],["animenhentai.com",670],["designtagebuch.de",671],["rp5.*",672],["mydramalist.com",673],["stooq.*",674],["dvdgayporn.com",675],["hdmovie5.*",675],["hdmovie2.*",675],["funnywifiname.net",675],["jattfilms.*",675],["jattfilms.cfd",675],["mrbobd.com",675],["vegamovvies.to",675],["hdmoviie2.*",675],["1stream.*",676],["calculator-online.net",677],["onionplay.*",678],["shinchu.*",679],["networkhint.com",679],["sturls.com",680],["rephrase.info",681],["nowtolove.com.au",682],["washingtoninformer.com",683],["watch.cricstream.*",684],["cricstreams.re",684],["xenvn.com",685],["ibomma.*",686],["scrolller.com",687],["dirp.me",688],["pinterest.*",689],["distrowatch.org",690],["autofaucet.dutchycorp.space",691],["chinhnhacoban.com",692],["vnpttelle.com",692],["plotaroute.com",693],["techsignin.com",694],["ac-illust.com",695],["photo-ac.com",695],["mrgay.com",696],["buondua.com",697],["lbprate.com",698],["digminecraft.com",699],["logikfx.com",700],["etsy.com",701],["playerx.stream",702],["h-flash.com",703],["fashionunited.*",704],["vimm.net",705],["thedigitalfix.com",706],["dvdplay.*",707],["dubznetwork.com",708],["redirect.dafontvn.com",709],["gsmware.com",710],["poki.*",711],["chimicamo.org",712],["earnme.club",713],["jrlinks.in",713],["usanewstoday.club",713],["eztv.*",714],["ricettafitness.com",715],["comidacaseira.me",717],["welt.de",718],["autotrader.co.uk",719],["mangaraw.org",720],["theswagsports.com",721],["pkpics.club",722],["apkmodhub.in",723],["digilibraries.com",724],["slidesgo.com",725],["dktechnicalmate.com",726],["indiakablog.com",726],["givee.club",727],["fucktube4k.com",728],["mail.com",729],["gmx.*",730],["tamrieltradecentre.com",731],["missav.*",732],["missav123.com",732],["missav888.com",732],["dads-banging-teens.com",733],["home-xxx-videos.com",733],["mature-chicks.com",733],["time.com",734],["distrowatch.com",735],["beatsnoop.com",736],["fetchpik.com",736],["anisearch.*",737],["veryfreeporn.com",738],["bishopsstortfordindependent.co.uk",739],["cambridgeindependent.co.uk",739],["dissexpress.co.uk",739],["fenlandcitizen.co.uk",739],["granthamjournal.co.uk",739],["lynnnews.co.uk",739],["kentonline.co.uk",739],["newarkadvertiser.co.uk",739],["rutland-times.co.uk",739],["spaldingtoday.co.uk",739],["stamfordmercury.co.uk",739],["suffolknews.co.uk",739],["velvetmag.co.uk",739],["teachoo.com",740],["itstillworks.com",741],["leaknud.com",742],["colonist.io",743],["wa.de",744],["mboost.me",745],["sumikai.com",746],["adslink.pw",747],["jpopsingles.eu",748],["instagram.com",749],["brisbanetimes.com.au",750],["smh.com.au",750],["theage.com.au",750],["watoday.com.au",750],["flipkart.com",751],["rtl.de",752],["yourdictionary.com",753],["desktopnexus.com",754],["theblock.co",755],["root-nation.com",756],["italpress.com",756],["genshin.gg",757],["mathway.com",758],["viefaucet.com",759],["google.com",760],["rechtschreibpruefung24.de",761],["tirexo.*",762],["adzz.in",763],["model-viewer.com",764],["playstore.pw",765],["adsy.pw",766],["rocketnews24.com",767],["soranews24.com",767],["youpouch.com",768],["afly.pro",770],["bloggingguidance.com",771],["snaptik.app",772],["www.chip.de",773],["chip.de",774],["praxistipps.chip.de",775],["praxistipps.focus.de",776],["netmoms.de",775],["tvtv.ca",778],["tvtv.us",778],["swisscows.com",779],["javopen.co",780],["derivative-calculator.net",781],["integral-calculator.com",781],["proappapk.com",782],["infokik.com",783],["freepik.com",784],["writedroid.*",785],["thetimes.co.uk",786],["additudemag.com",787],["techpp.com",788],["azrom.net",789],["topsporter.net",790],["sportshub.to",790],["seznamzpravy.cz",791],["guru3d.com",792],["roblox-scripts.co",793],["theodysseyonline.com",794],["adseek.site",795],["infoseek.co.jp",796],["socialcounts.org",797],["tlgrm.eu",798],["telegramchannels.me",799],["nn.de",800],["www.walmart.com",801],["thefileslocker.net",802],["n.fcd.su",803],["oxy.*",804],["~oxy.edu",804],["esopress.com",805],["karvitt.com",806],["realpornclips.com",807],["bitchesgirls.com",808],["efukt.com",809],["rookieroad.com",810],["naijafav.top",811],["novinky.cz",812],["webnovelpub.com",813],["novelpub.com",814],["lightnovelspot.com",816],["myanimelist.net",817],["gloryshole.com",818],["tokenmix.pro",819],["link.idblog.eu.org",820],["link.smallseostat.com",821],["bitcosite.com",822],["glosbe.com",823],["mangabuddy.com",824],["elamigos-games.com",825],["elamigos-games.net",825],["elamigosgames.org",825],["imgbox.com",826],["~wp.pl",827],["~money.pl",830],["~komorkomania.pl",832],["~autokult.pl",832],["~o2.pl",832],["~parenting.pl",832],["~abczdrowie.pl",832],["~pudelek.pl",832],["open.fm",833],["vibez.pl",834],["sportowefakty.wp.pl",835],["fitness.wp.pl",835],["smaczneblogi.pl",836],["forum.kardiolo.pl",837],["~www.wp.pl",836],["horoskop.wp.pl",839],["www.wp.pl",840],["pilot.wp.pl",842],["domodi.pl",843],["turystyka.wp.pl",844],["~tv.wp.pl",845],["mag.shock2.info",846],["hints.littlealchemy2.com",847],["hacoos.com",848],["thefastcode.com",849],["besargaji.com",850],["chrysler-club.net",851],["azaleasdolls.com",852],["zefoy.com",853],["bellesa.co",854],["pepperlive.info",855],["adultcomixxx.com",856],["apk-gamers.com",856],["skiplinks.xyz",856],["streamvid.net",857],["miniwebtool.com",857],["sexvideos.host",858],["the-sun.com",859],["lovetoknow.com",860],["thedailybeast.com",861],["parentcircle.com",862],["vidello.net",863],["weatherwx.com",864],["crewbase.net",865],["phineypet.com",865],["cellmapper.net",866],["freewebcart.com",867],["securityweek.com",867],["curs-germana.com",867],["vlr.gg",868],["metager.org",869],["comohoy.com",870],["cdromance.com",871],["mapcrunch.com",872],["domaha.tv",873],["xxxrip.net",873],["sextor.org",873],["sex-torrent.net",873],["hentaipaw.com",874],["peakpx.com",875],["pxfuel.com",875],["pikist.com",876],["androidauthority.com",877],["app.blubank.com",878],["truyentranhfull.net",879],["empire-anime.*",880],["empire-streaming.*",880],["empire-anime.com",880],["empire-streamz.fr",880],["empire-stream.*",880],["taisachonthi.com",881],["yurasu.xyz",882],["isekaipalace.com",882],["woowebtools.com",883],["iwatchfriendsonline.net",884],["creativebloq.com",885],["sofmag.com",886],["khoaiphim.com",887],["nicomanga.com",888],["www.google.com",889],["totalcsgo.com",890],["gumtree.com.au",891],["gumtree.com",892],["deviantart.com",893],["nasonga.co.ke",894],["pandasnovel.com",895],["bangpremier.com",896],["bankbazaar.com",897],["asura.gg",898],["asurascans.com",898],["romsmania.games",899],["freeroms.com",900],["dll-files.com",901],["modrinth.com",902],["codelivly.com",903],["www.mindbodygreen.com",904],["sotwe.com",905],["download.megaup.net",906],["rain-alarm.com",907],["cnn.com",908],["dvm360.com",909],["trakt.tv",910],["client.falixnodes.net",911],["thestar.com",912],["dailymail.co.uk",913],["m.baomoi.com",914],["gtainside.com",915],["movies4u.*",916],["movies4u3.*",916],["gamerxyt.com",916],["biblestudytools.com",917],["christianheadlines.com",917],["ibelieve.com",917],["nizarstream.com",918],["screenhub.com.au",919],["insideevs.com",920],["community.pcgamingwiki.com",921],["dzapk.com",922],["zive.cz",923],["client.pylexnodes.net",924],["win.gg",925],["filmizlehdfilm.com",926],["fullfilmizle.cc",926],["gofilmizle.net",926],["estudyme.com",927],["accuweather.com",928],["fplstatistics.co.uk",929],["thespruce.com",930],["skai.gr",931],["sonixgvn.net",932],["francoischarron.com",933],["sabornutritivo.com",934],["tecnologiati.online",934],["bettycrocker.com",935],["filext.com",936],["360haven.com",937],["apkmirror.com",938],["vidsrc.*",939],["gdflix.*",940],["1337x.ninjaproxy1.com",942],["work.ink",943],["fmovies.*",944],["f2movies.to",944],["fullxh.com",945],["galleryxh.site",945],["megaxh.com",945],["movingxh.world",945],["seexh.com",945],["unlockxh4.com",945],["valuexh.life",945],["xhaccess.com",945],["xhadult2.com",945],["xhadult3.com",945],["xhadult4.com",945],["xhadult5.com",945],["xhamster.*",945],["xhamster1.*",945],["xhamster10.*",945],["xhamster11.*",945],["xhamster12.*",945],["xhamster13.*",945],["xhamster14.*",945],["xhamster15.*",945],["xhamster16.*",945],["xhamster17.*",945],["xhamster18.*",945],["xhamster19.*",945],["xhamster20.*",945],["xhamster2.*",945],["xhamster3.*",945],["xhamster4.*",945],["xhamster42.*",945],["xhamster46.com",945],["xhamster5.*",945],["xhamster7.*",945],["xhamster8.*",945],["xhamsterporno.mx",945],["xhbig.com",945],["xhbranch5.com",945],["xhchannel.com",945],["xhdate.world",945],["xhlease.world",945],["xhmoon5.com",945],["xhofficial.com",945],["xhopen.com",945],["xhplanet1.com",945],["xhplanet2.com",945],["xhreal2.com",945],["xhreal3.com",945],["xhspot.com",945],["xhtotal.com",945],["xhtree.com",945],["xhvictory.com",945],["xhwebsite.com",945],["xhwebsite2.com",945],["xhwebsite5.com",945],["xhwide1.com",945],["xhwide2.com",945],["xhwide5.com",945],["porndoe.com",946],["torrentdownload.*",947],["readcomiconline.*",948],["pixiv.net",949],["cbssports.com",950],["jacquieetmicheltv.net",951],["jacquieetmicheltv2.net",951],["bombuj.*",952],["xfreehd.com",953],["freethesaurus.com",954],["thefreedictionary.com",954],["getmodsapk.*",955],["qwant.com",956],["civitai.com",957],["civitai.green",957],["faroutmagazine.co.uk",958],["govtech.com",959],["dragontea.ink",960],["time.artjoey.com",961],["thehackernews.com",962],["creepypasta.com",963],["statisticsanddata.org",964],["tmailor.com",965],["aliezstream.pro",966],["mylivestream.pro",966],["mylocal.co.uk",967],["ettvi.com",968],["crictime.is",969],["freehit.eu",969],["mobilecric.com",969],["live-sport.duktek.pro",969],["decrypt.day",970],["cryptorank.io",971],["skidrowcodex.net",972],["zee5.com",973],["thejakartapost.com",974],["cenoteka.rs",975],["twi-fans.com",976],["porno-baguette.com",977],["caravanmagazine.in",978],["eloshapes.com",979],["filerox.com",980],["lowcygier.pl",981],["game8.co",982],["ign.com",983],["club386.com",985],["yourstory.com",986],["audiobookbay.lu",987],["service.webgoto.net",988],["freemodsapp.in",989],["onlytech.com",989],["helicomicro.com",989],["9xlinks.*",990],["9xmovie.*",990],["desiflix.*",990],["girlmms.com",990],["ottxmaza.com",990],["sexmazahd.com",990],["webxmaza.com",990],["app.scope.gg",991],["governing.com",992],["therealdeal.com",993],["olympics.com",994],["taste.com.au",995],["playmod24.com",996],["euronews.com",997],["mercatinomusicale.com",998],["btv.bg",999],["btvnovinite.bg",999],["btvsport.bg",999],["1jour1film.*",1000],["101soundboards.com",1001],["interactivemap.app",1002],["plasticsnews.com",1003],["idnes.cz",1004],["boundingintocomics.com",1005],["themix.net",1005],["metoffice.gov.uk",1006],["boardgameoracle.com",1007],["picrew.me",1008],["stream4free.*",1009],["sdna.gr",1010],["schnittberichte.com",1011],["infinityscans.xyz",1012],["infinityscans.net",1012],["infinityscans.org",1012],["karistudio.com",1013],["leafstudio.site",1013],["handirect.fr",1014],["giphy.com",1015],["politico.com",1016],["voz.vn",1017],["aov-news.com",1018],["summonersky.com",1018],["worldpopulationreview.com",1019],["sbs.com.au",1020],["msn.com",1021],["vid2faf.*",1022],["vidplay.*",1022],["ignboards.com",1023],["telepisodes.org",1024],["daddylive.*",1025],["m.shuhaige.net",1026],["senpai-stream.net",1027],["laser-pics.com",1028],["uexpress.com",1029],["editor.plantuml.com",1030],["theorg.com",1031],["forgee.xyz",1032],["gamehub.cam",1032],["1001tracklists.com",1033],["mirror.co.uk",1034],["mobalytics.gg",1035],["javfilms.com",1036],["europix.top",1037],["91porna.com",1038],["glamour.com",1039],["abcnews.go.com",1040],["cryptofaucet.club",1041],["redecanaistv.*",1042],["redisex.*",1042],["fapeza.com",1043],["iflscience.com",1044],["sneakernews.com",1045],["emojipedia.org",1046],["agar.io",1047],["criollasx.com",1048],["birminghammail.co.uk",1049],["bristolpost.co.uk",1049],["dailyrecord.co.uk",1049],["hulldailymail.co.uk",1049],["liverpoolecho.co.uk",1049],["manchestereveningnews.co.uk",1049],["stokesentinel.co.uk",1049],["lightningmaps.org",1050],["velo.outsideonline.com",1051],["gulfnews.com",1052],["tvpassport.com",1053],["rediff.com",1054],["old.reddit.com",1055],["www.google.*",1056],["bikesales.com.au",1057],["disqus.com",1058],["dermnetnz.org",1059],["proboards.com",1060],["winclassic.net",1060],["app.koinly.io",1061],["duplichecker.com",1062],["plagiarismdetector.net",1062],["searchenginereports.net",1062],["smallseotools.com",1062]]);
33
33
  const hasEntities = true;
34
34
 
35
35
  self.proceduralImports = self.proceduralImports || [];