[uBlock Origin] ! Title: Outlaw Adblocking and Content Manipulation Filters ! Expires: rolling release/continually updated ! Description: filters optimized for use with uBlock Origin to be used in ! addition to four of the five built-in filters except the main one, ! "uBlock filters – Ads" with an emphasis on removing the annoyances ! from video streaming and file host websites ! Homepage: https://github.com/uploadersoasis/Adblock_Filter_List/blob/master/OutlawAdblockList.txt ! License: public domain ! ! While the rules in this list were tested at the time of inclusion in this list, ! given that websites on the Internet are continually changing, some may not work ! now or in the future. ! Therefore regularly update your filters in uBlock and report any websites which ! do not work to https://github.com/uploadersoasis/Adblock_Filter_List/issues . ! Rules in this list also frequently contain comments to explain what the rule does ! and to assist in troubleshooting should the it need to be changed or removed in the future. ! ! NOTES: ! ! 1. The rules which utilize scriptlets which have "trusted" in the name, ! such as "trusted-set-attr.js", "trusted-set-constant.js", ! "trusted-replace-node-text.js", "trusted-set-cookie.js", ! "trusted-replace-fetch-response.js", "trusted-replace-xhr-response.js", ! "trusted-click-element.js", "trusted-set-local-storage-item.js", ! "trusted-set-session-storage-item.js", "trusted-prune-inbound-object.js", ! "trusted-prune-outbound-object.js", and "trusted-replace-argument.js", ! must also be listed under the "My Filters" tab and not just in this list ! AND " user-" must be added to the end of the "trustedListPrefixes" line ! on uBlock Origin's "advanced settings" screen, e.g. ! "trustedListPrefixes ublock- user-". ! The reason for this is these scriptlets have the "requiresTrust" ! property set to "true" in the scriptlets.js file. ! ! 2. The rules with the "replace=" directive after the URL also have the ! "trusted" restrictions, and therefore must also be listed under the ! "My Filters" tab and not just in this list. ! ! 3. Some of these rules utilize the add-on scriptlets like "replace attribute" ! (rpla) and "rename attribute" (rna) from the javascript @ ! https://raw.githubusercontent.com/uBlockO/uBO-Scriptlets/master/scriptlets.js ! so add that URL to the "userResourcesLocation" value in the advanced settings ! so that those rules will work. ! example.com##+js(rpla, [selector], oldattr, newattr, newvalue) ! newvalue is optional but is "" by default. ! example.com##+js(rna, [selector], oldattr, newattr) ! don't need to first remove existing attribute with same name ! ! 4. Many of these rules utilize the "trusted-set-attr" scriptlet now found in ! uBlock Origin via https://github.com/gorhill/uBlock/commit/11ca4a39239478e35605ec072fca140ac4c70d3b ! example.com##+js(trusted-set-attr, [selector], attribute, value) ! Multiple attributes can be separated with | , but each attribute will be assigned the same value. ! Value isn't type checked, but since this scriptlet uses function element.setAttribute(name, value) ! to set the value, the value is always a string even without quotation marks. ! This scriptlet runs once when the page loads then afterward on DOM mutations. ! ! 5. Rules in this list redirect normal YouTube video links to an embedded ! version of the video which displays it in the entire page/tab rather than ! on a normal YouTube page. ! Another advantage of this is that standard YouTube ads are not run in ! the embedded video player. ! The downside of this though is that some videos, such as the free ad-supported ! movies from Google Play, will not play in the embedded player, and it will ! appear as if the video does not exist. ! ! 6. The countdown period of some file hosts has been removed or shortened. ! In some of these cases the countdown may not display, so press the ! button to perform the download anyway. For file hosts that do server-side ! checks on the countdown, such as Filefactory, you will still have to wait ! the normal period before downloading even if no countdown timer is displayed. ! ! 7. A relative few websites may still require the use of a custom Javascript ! snippet to be fully functional even when using these rules. Such a ! script can be saved as a bookmark in the web browser and selected when ! on the webpage which requires it. ! filecr.com currently doesn't require the following script for the ! download button to work, but it did in the past. ! The script to activate the download button @ filecr.com is: ! javascript:(function(){DD = document.querySelector("a.download_allow.download_allow.btn-primary_dark.full");downloadLink = document.createElement("input");downloadLink.type="submit";DD.appendChild(downloadLink);})(); ! ! 8. Due to the way that Wikipedia's responsive website design currently ! works or rather doesn't work, these rules force a style suited to a ! 1920 pixel width screen. If your screen is a different size, adjust the ! three rules which set this style: !wikipedia.org##html:style(width: 99vw !important; height: 99vh !important; margin-left: 0 !important; margin-right: 0 !important; padding-left: 0 !important; padding-right: 0 !important; min-width: 1510px !important; max-width: 1510px !important;) !wikipedia.org##div[class="mw-page-container"]:style(width: 99vw !important; height: 99vh !important; margin-left: 10px !important; margin-right: 0 !important; padding-left: 0 !important; padding-right: 0 !important; min-width: 1510px !important; max-width: 1510px !important;) !wikipedia.org##div[class="mw-content-container"]:style(width: 1190px !important; height: 99vh !important; margin-left: 0 !important; margin-right: 0 !important; padding-left: 0 !important; padding-right: 0 !important; min-width: 1190px !important; max-width: 1190px !important;) ! example.org##+js(set-attr, selector, attr [, value]) ! `selector`: CSS selector of DOM elements for which the attribute `attr` must be modified. ! `attr`: the name of the attribute to modify ! no quotes for attribute value because they are added by the set-attr.js scriptlet from https://github.com/gorhill/uBlock/blob/master/assets/resources/scriptlets.js ! `value`: the value to assign to the target attribute. Possible values: ! `''`: empty string (default if not specified) ! `true` ! `false` ! positive decimal integer 0 <= value < 32768 ! `[other]`: copy the value from attribute `other` on the same element ! no quotes for attribute value because they are added by the set-attr.js scriptlet from https://raw.githubusercontent.com/gorhill/uBlock/master/assets/resources/scriptlets.js ! Brave's native adblocking does not support the "has-text()" filter. ! Brave also does not support upward() nor remove(). ! Brave's native adblocking does not support "$all" so use * or ^ (without preceding forward slash) instead. ! "^*" in Brave is the equivalent of "^$all" in uBlock Origin and also works in uBlock Origin as such. ! uBlock Origin does not use * as a universal catchall like Brave, so using ! "/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css" ! instead of "/$all" or "/*" is the functional equivalent choice that works with ! both Ublock Origin and Brave's native adblocking EXCEPT when just a hostname is being blocked. ! In that case use "^*" instead as it also blocks HEAD request to the hostname. ! NOTE: "^$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css" ! is NOT the equivalent of "^$all" because "^$all" blocks HEAD requests to the host ! and the former does NOT block those requests. ! The following will block those HEAD requests in both uBlock Origin and using Brave's native adblocker. ! The host/domain specified is the one issuing the HEAD requests NOT the target domain you want blocked. ! mega4upload.com,mega4upload.net,mega-4up.com##+js(no-fetch-if, method:HEAD) ! mega4upload.com,mega4upload.net,mega-4up.com##+js(no-xhr-if, method:HEAD) techydino.net##+js(acs, adsbygoogle) techydino.net##+js(aopr, adsbygoogle) techydino.net##+js(aopw, adsbygoogle) techydino.net##div[id="overlay"]:remove() techydino.net##div[id^="div-gpt-ad-"]:remove() techydino.net##div[id^="hbagency_space_"]:remove() techydino.net##div[id="Modalad"]:remove() techydino.net##div[class="floating-banner"]:remove() techydino.net##div[class="floawing-banner"]:remove() techydino.net##+js(acs, window.googletag) techydino.net##+js(aopr, window.googletag) techydino.net##+js(aopw, window.googletag) techydino.net##ins[data-sizes-desktop]:remove() ! TODO: ^script doesn't work with attributes since checked before DOM created? !techydino.net##^script[onerror]:remove() techydino.net##script[onerror]:remove() techydino.net##script[onerror]:remove-attr(onerror) !techydino.net##+js(remove-attr, onerror, script[onerror], stay) techydino.net##+js(remove-attr, onerror) techydino.net##^script:has-text(decodeURIComponent):remove() techydino.net##+js(remove-node-text, script, /decodeURIComponent/gm) techydino.net##+js(acs, decodeURIComponent) !techydino.net##+js(no-window-open-if, !/techydino\.net/i, , , log, 1) techydino.net##+js(no-window-open-if, !/techydino\.net/i) techydino.net##+js(acs, anchorSlot) techydino.net##+js(aopr, anchorSlot) techydino.net##+js(aopw, anchorSlot) techydino.net##+js(acs, interstitialSlot) techydino.net##+js(aopr, interstitialSlot) techydino.net##+js(aopw, interstitialSlot) techydino.net##+js(nobab) techydino.net##+js(nobab2) techydino.net##+js(adjust-setInterval, , *, 0.01) ! nofab.js was removed; would need to add https://raw.githubusercontent.com/gorhill/uBlock/a94df7f3b27080ae2dcb3b914ace39c0c294d2f6/src/web_accessible_resources/nofab.js !techydino.net##+js(nofab) ! blocks both inline and external scripts !||techydino.net^$inline-script,script ! an in-line script(s) is preventing techydino.net from working properly !||techydino.net^$inline-script !||techydino.net^$3p,script,domain=arc.io !||techydino.net^$script,redirect=noopjs blocks Cloudflare ||techydino.net^$3p,script,redirect=noopjs ||techydino.net/filesadblock/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fw.adsafeprotected.com^* ||cluster.adultadworld.com^* ||ad.z5x.net^* ||*.cloudfront.net/tracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.fhserve.com/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cfcdn.fhserve.com/www/images/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||93.115.84.106/openx/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||us.popcpm.com^* ||www.rakuten.com/scripts/omniture/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||images.rakuten.com/buy_assets/scripts/omniture/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adshost2.com/impression.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adshost2.com/ads-sync.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adshost2.com/set-action-cookie.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adshost2.com/ads^* ||www.adshost2.com/js/show_ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pespn.chartbeat.net/ping/ad?h=ads.espn.go.com$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pespn.chartbeat.net/ping$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||horizon.maxim.com/horizon/track$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||yardbarker.tags.crwdcntrl.net^* ||tags.crwdcntrl.net^* ! TODO: Don't use the following rule? ||pagead2.googlesyndication.com/getconfig/sodar?tid=pal&tv=1.0$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pagead2.googlesyndication.com/apps/domainpark/show_afd_ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pagead2.googlesyndication.com/apps/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pagead2.googlesyndication.com/simgad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pagead2.googlesyndication.com/pagead/managed/js/adsense/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pagead2.googlesyndication.com/pagead/show_companion_ad.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pagead2.googlesyndication.com/pagead/show_ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pagead2.googlesyndication.com/pagead/osd.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pagead2.googlesyndication.com/pagead/ping?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$important,script,redirect=googlesyndication_adsbygoogle.js,domain=1cloudfile.com !||pagead2.googlesyndication.com/pagead/js/*/show_ads_impl.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pagead2.googlesyndication.com/pagead/js/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pagead2.googlesyndication.com/pagead/$important,domain=~/(www\.)?gog\.com/|~kokostream.me|~anydebrid.com|~1cloudfile.com,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pagead2.googlesyndication.com/activeview$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pagead2.googlesyndication.com/activeview_ext$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pagead2.googlesyndication.com/pcs/activeview$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pagead2.googlesyndication.com/bg/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pagead2.googlesyndication.com/gampad/ads$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pagead2.googlesyndication.com/omsdk/releases/live/omweb-v1.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pagead2.googlesyndication.com/omsdk/releases/live/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||googleads.g.doubleclick.net/pagead/ads/client$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||googleads.g.doubleclick.net/pagead/ads$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||googleads.g.doubleclick.net/pagead/adview$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||googleads.g.doubleclick.net/pagead/conversion/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||googleads.g.doubleclick.net/pagead/drt/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||googleads.g.doubleclick.net/pagead/html/*/zrt_lookup.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||googleads.g.doubleclick.net/pagead/html/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||googleads.g.doubleclick.net/pagead/id$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||googleads.g.doubleclick.net/pagead/interaction/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||googleads.g.doubleclick.net/pagead/lopri$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||googleads.g.doubleclick.net/pagead/test_domain.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||googleads.g.doubleclick.net/pagead/viewthroughconversion/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css /^https?:\/\/googleads\d?\.g\.doubleclick\.net\/(btr|pcs)\/view$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||googleads.g.doubleclick.net/apps/domainpark/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||googleads.g.doubleclick.net/aclk$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||googleads.g.doubleclick.net/pcs/click$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||googleads.g.doubleclick.net^$domain=forbes.com !||www.googleadservices.com/pagead/conversion/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.googleadservices.com/pagead/conversion.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.googleadservices.com/pagead/conversion$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.googleadservices.com/pagead/conversion_async.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.googleadservices.com/pagead/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn-static.liverail.com/js/LiveRail.AdManager-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adexcite.com/ads/video/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adexcite.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.statcounter.com/counter/counter.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.statcounter.com/counter/counter_xhtml.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.statcounter.com/counter/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||kinja.com/assets/ad_iframe.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.indeed.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.indeed.com##div[data-tag-type="publisher"][data-load-status="notloaded"]:remove() ||vod.espn.go.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||assets.espn.go.com/ad/dtdi_test/tracking_test/espnAdLogger.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||assets.espn.go.com/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||assets.espn.go.com/prod/scripts/foresee/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.dedicatedmedia.com^* ||i.i.com.com/cnwk.1d/Ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adlog.com.com/adlog/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||neoxads.com/data/ad_images/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.mmadsgadget.com/t^id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*-events.olark.com^* !Flash Ads ||cdn.atdmt.com/ds/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c.betrad.com^* ||www.vbknowledgebase.com/Utils/Ui/Clientscripts/TrackingScript.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.vbknowledgebase.com/Utils/TrackingService.svc/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.paypal-search.com/baynote/tags3/baynoteObserver/listener2^customerid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.paypal-search.com/baynote/tags3/baynoteObserver/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adshost1.com/ads^* ||www.adshost1.com/js/show_ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adshost1.com/ads-sync.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||movie-stars.us/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.ehow.com##div[id*="dclkAdsFrameID"] ||cdn.atdmt.com/ds/*.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||view.atdmt.com/NYC/iview/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.mlstat.com/statistics/appid/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.mlstat.com/scripts/appid.V2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||popcpm.com/images/blank.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.gildor.org/smf/index.php?action=keepalive;$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||images10.newegg.com/WebResource/Scripts/TP_CoreMetrics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||images10.newegg.com/WebResource/Themes/2005/CSS/USA/googleAdsense.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c1.neweggimages.com/WebResource/Scripts/TP_CoreMetrics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s3.amazonaws.com/com.alexa.toolbar/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ggo.directrev.com^* ||cdn.crtracker.com/images/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ceu.sitescout.com/disp^pid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.nude.mk/images/nude.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.alexa.com/tbplatform/images/promotebuttons/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.wigetmedia.com/tags/rapidgator.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdnt_in.meteorsolutions.com/api/setid$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdnt_in.meteorsolutions.com/api/track$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||b.siftscience.com^* ||cdn.siftscience.com/s.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ehow.us.intellitxt.com^* ||counter.d.delivery45.com^* ||ad.doubleclick.net/adj/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !ad.doubleclick.net/N6839/adj/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !ad.doubleclick.net/N701/adj/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !ad.doubleclick.net/N2/adj/bottom.interactive.wsj.com^* !ad.doubleclick.net/N2/adj/interactive.wsj.com^* ad.doubleclick.net/N*/adj/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.doubleclick.net/adi/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.doubleclick.net/activity;$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.doubleclick.net/N*/adi/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ad.doubleclick.net/ad/N1823.nytimes.com$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ad.doubleclick.net/ad/N4359.msn.com$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.doubleclick.net/ad/N*.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.doubleclick.net/imp;$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.doubleclick.net/pfadx/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ad.doubleclick.net/N4215/pfadx/imdb2.consumer.video/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.doubleclick.net/N*/pfadx/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.doubleclick.net/dot.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ad.doubleclick.net/ad/macw.mw.home/TSO_impressions;sz=1x1;ord=?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.doubleclick.net/ad/*/TSO_impressions$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.doubleclick.net/ad/mercurynews.com$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ad.doubleclick.net/N8264/ad/aw-cbsi/tracking;$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.doubleclick.net/*/ad/aw-cbsi/tracking;$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad-apac.doubleclick.net/N*/adj/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad-apac.doubleclick.net/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad-emea.doubleclick.net^* !||ad-ace.doubleclick.net/ad/N6092.hulu.com^* ||ad-ace.doubleclick.net/ad/N*.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad-apac.doubleclick.net/adj/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.ehow.com/media/ad.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.ehow.com/px.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.crowdscience.com/start-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dw.com.com/clear/c.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||attwireless-www.baynote.net/baynote/tags3/baynoteObserver/listener2^* ||attwireless-www.baynote.net/baynote/tags3/baynoteObserver/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.att.com/scripts/foresee_global/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.att.com/webtrends/scripts/dcs_tag.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.att.com/webtrends/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdnt.meteorsolutions.com/api/track$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.wireless.att.com/webtrends/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.atdmt.com/images/pixel.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||usea1l3lc5*.livefyre.com:8080/livecountping/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.livefyre.com:8080/livecountping/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lc.livefyre.com/livecountping/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.gamespot.com/js/tracking/omniture/omniture.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.gamespot.com/js/tracking/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||aglobal.go.com/stat/s_code.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||aglobal.go.com/stat/dolWebAnalytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||aglobal.go.com/stat/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||widgets.pinterest.com/v3/pidgets/log/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||shared.opendns.com/js/opendns-ga-track.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.filmanator.com/adfy$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||scenelog.eu/analytics/piwik.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||scenelog.eu/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||opendownloadmanager.com/campaign2/campaign.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||opendownloadmanager.com^* ||www.csoonline.com/js/doubleclick_ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.csoonline.com/js/leadgen_tracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.csoonline.com/js/click_tracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||1phads.com/afu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||freakshare.com/stuff/javascript/adscounter.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css sharedbit.net##.ilv:remove() ||tracktrk.net^* ||whos.amung.us/pingjs/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.traidnt.net^* ||www2.adserverpub.com/group.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||b.adinch.com/static/sdk/sdk.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||b.adinch.com^* ||propellerpops.com/apu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||map.media6degrees.com/orbserv/hbpix$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||map.media6degrees.com/orbserv/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||lognormal.net/boomerang/config.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lognormal.net/boomerang/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.downloadmr.com/dmr/download/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fiberupload.com/images/728x90-avs.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fiberupload.net/images/300x250-avs.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tracking100.com/loader^* ||r.letsw.com^* !||mflashplayer.com/l13/en/landing.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mflashplayer.com^* !||dl01.socdn.com/n/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dl01.socdn.com^* ||secure.gaug.es/track.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||h.verticalscope.com/beacon/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adshost1.com/no-impression.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||images.industrybrains.com/adimages/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.bit.ly/TweetAndTrack.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.foxsportssouthwest.com/common/ad_media/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||bcpd.x7y24z365.com/dot.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bcpd.x7y24z365.com^* !||srv.clickfuse.com/showads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||srv.clickfuse.com^* !||loadr.exelator.com/load/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||loadr.exelator.com^* ||ds.bluecava.com^* ! The following rule will remove all of the content from the page. !www.bikeradar.com##storefront-ad:remove() www.bikeradar.com##storefront-ad[class="header-ad"]:remove() www.bikeradar.com##storefront-element[type="ad"]:remove() www.bikeradar.com##iframe[name]:matches-attr(name=/^__\S+Locator$/):remove() www.bikeradar.com##img[class="loaded error"]:style(display: block !important;) !||www.gstatic.com/domainads/tracking/partner.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.gstatic.com/domainads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.waninkoko.info/track.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css d1lxz4vuik53pc.cloudfront.net##+js(abort-on-property-write, loggingManager) d1lxz4vuik53pc.cloudfront.net##+js(abort-on-property-read, loggingManager) luna.amazon.com##div[class^="ReactModal__Overlay"]:has(div[id="ftue_home_terms_and_conditions"]):remove() luna.amazon.com##div[data-portal-id="cookie-consent"]:remove() www.amazon.com###ape_OfferListing_ilm_All_iframe:remove() www.amazon.com##div[class="creative-container"][aria-label="Sponsored Ad"]:remove() www.amazon.com##img[class="ad-background-image mrc-btr-creative"]:remove() www.amazon.com##+js(remove-node-text, script, /window\.\$ad\s?=/gm) www.amazon.com##+js(aopr, window.$ad) www.amazon.com##+js(aopw, window.$ad) www.amazon.com##+js(remove-node-text, script, /Creative\.default\(\$ad\,/gm) www.amazon.com##+js(aopr, window.imageCreative) www.amazon.com##+js(aopw, window.imageCreative) www.amazon.com##div[class*="_adLabelContainer_"]:remove() www.amazon.com##div[data-ad-feedback-label-id]:remove() www.amazon.com##div[data-ad-creative-list]:remove() www.amazon.com##div[data-ad-feedback-payload]:remove() www.amazon.com##div[data-ad-details]:remove() www.amazon.com##div[class*="_ad-feedback-"]:remove() www.amazon.com##div[id="dp-ads-center-promo_feature_div"]:remove() www.amazon.com##+js(abort-on-property-write, window.$ad) www.amazon.com##+js(abort-on-property-read, window.$ad) www.amazon.com##+js(abort-on-property-write, window.imageCreative) www.amazon.com##+js(abort-on-property-read, window.imageCreative) www.amazon.com##+js(set-constant, window.navHamburgerMetricLogger, noopFunc) www.amazon.com##+js(aeld, click, /window\.navHamburgerMetricLogger/) www.amazon.com##+js(set-constant, adDivId, "") www.amazon.com##+js(set-constant, csaLatencyPlugin, noopFunc) www.amazon.com##+js(set-constant, updateViewableLatency, noopFunc) gaming.amazon.com##+js(trusted-set-local-storage-item, csm:adb, adblk_no) gaming.amazon.com##+js(trusted-set-local-storage-item, prime-gaming.returning-user, false) www.amazon.com##+js(trusted-replace-node-text, script, /=\s?['"]adblk_(yes|unk)['"]/gm, ="adblk_no") ! TODO: set ue_adb_rtla in the following rule to 0? www.amazon.com##+js(trusted-replace-node-text, script, /var ue_adb_rtla\s?=\s?1;/gm, var ue_adb_rtla = 1;) ||images-na.ssl-images-amazon.com/images/I/21osHGI8lOL._RC|21s1agdqUYL.js_.js$replace=/if\s?\(!1\s?===\s?b\.phoneVerificationNeeded\s?\&\&\s?!1\s?===\s?b\.benefitsEnabled\)\s?return\s?!0;/b.benefitsEnabled = 1;/gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||media.amazon.map.fastly.net/images/I/21osHGI8lOL._RC|21s1agdqUYL.js_.js$replace=/if\s?\(!1\s?===\s?b\.phoneVerificationNeeded\s?\&\&\s?!1\s?===\s?b\.benefitsEnabled\)\s?return\s?!0;/b.benefitsEnabled = 1;/gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! TODO: Make rule(s) to change "benefitsEnabled" to true? !gaming.amazon.com/prime/status !request !benefitsEnabled=false&phoneVerificationNeeded=false !response !{"benefitsEnabled":false,"phoneVerificationNeeded":false} ||gaming.amazon.com/prime/uedata/uedata$uritransform=/\|adblk_yes/|adblk_no/,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fls-na.amazon.com/1/batch/1/OP/$uritransform=/adblk_yes/adblk_no/,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css s.amazon-adsystem.com##iframe[src^="//s.amazon-adsystem.com/v3/pr?"]:remove() images-na.ssl-images-amazon.com,media.amazon.map.fastly.net##+js(abort-on-property-write, $ad) images-na.ssl-images-amazon.com,media.amazon.map.fastly.net##+js(abort-on-property-read, $ad) images-na.ssl-images-amazon.com,media.amazon.map.fastly.net##div[id="ad"]:has(div[class="creative-container"][aria-label="Sponsored Ad"]):remove() images-na.ssl-images-amazon.com,media.amazon.map.fastly.net##div[id="ad"]:has(div[aria-label="Sponsored Ad"]):remove() images-na.ssl-images-amazon.com,media.amazon.map.fastly.net##div[id="ad"]:has(div[role="link"]):remove() images-na.ssl-images-amazon.com,media.amazon.map.fastly.net##div[role="link"][aria-label="Sponsored Ad"]:remove() images-na.ssl-images-amazon.com,media.amazon.map.fastly.net##div[id="ad"]:remove() images-na.ssl-images-amazon.com,media.amazon.map.fastly.net##div[id="adLink"]:remove() images-na.ssl-images-amazon.com,media.amazon.map.fastly.net##div[class*="adchoices-container"]:remove() images-na.ssl-images-amazon.com,media.amazon.map.fastly.net##img[id="ape_impression"]:remove() images-na.ssl-images-amazon.com,media.amazon.map.fastly.net##img[id="ape_amzn_viewability"]:remove() images-na.ssl-images-amazon.com,media.amazon.map.fastly.net##img[id="ape_iab_viewability"]:remove() images-na.ssl-images-amazon.com,media.amazon.map.fastly.net##img[id="ape_groupm_viewability"]:remove() images-na.ssl-images-amazon.com,media.amazon.map.fastly.net##img[id="ape_measurability"]:remove() images-na.ssl-images-amazon.com,media.amazon.map.fastly.net##script[creativeReplayStatus]:remove() images-na.ssl-images-amazon.com,media.amazon.map.fastly.net##+js(set-constant, loggingManager, noopFunc) images-na.ssl-images-amazon.com,media.amazon.map.fastly.net##+js(abort-on-property-write, loggingManager) images-na.ssl-images-amazon.com,media.amazon.map.fastly.net##+js(abort-on-property-read, loggingManager) images-na.ssl-images-amazon.com,media.amazon.map.fastly.net##+js(remove-node-text, script, /LoggingClientManager\.default\(/gm) images-na.ssl-images-amazon.com,media.amazon.map.fastly.net##+js(remove-node-text, script, /loggingManager\.addViewabilityListener\(\$ad\)/gm) images-na.ssl-images-amazon.com,media.amazon.map.fastly.net##+js(remove-node-text, script, /CustomEvent\("creativeReplayComplete"\)/gm) ||aax-us-east-retail-direct.amazon.com/e/xsp/getAdj?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||aax-us-iad.amazon.com/e/xsp/imp?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||unagi-na.amazon.com/*/events/com.amazon.csm.nexusclient.prod$xhr,method=post ! TODO: The following rule may prevent "activation" @ gaming.amazon.com. ||unagi.amazon.com/*/events/com.amazon.csm.csa.prod$xhr,method=post ||unagi.amazon.com/*/events/com.amazon.MessageUs.NA.Prod.BrowserMetrics$xhr,method=post ||unagi-na.amazon.com/*/events/com.amazon.eel.SponsoredProductsEventTracking.prod$xhr,method=post ||unagi-na.amazon.com/*/events/com.amazon.eel.katal.metrics.core.nexus$xhr,method=post ||mbdvgoj27h.execute-api.us-east-1.amazonaws.com/prod/v1/log$xhr,method=post ||www.amazon.com/message-us/log-data?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.amazon.com/gp/product-ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.amazon.com/gp/yourstore/external/send-impressions.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.amazon.com/gp/gateway-center-stage/ajax/record-impressions.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.amazon.com/gp/deal/ajax/impressionTracker.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.amazon.com/empty.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.assoc-amazon.com/s/ads-common.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.assoc-amazon.com/s/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||atv-ps.amazon.com/cdp/usage/QualityCapped$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||atv-ps.amazon.com/cdp/usage/Clickstream?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||m.media-amazon.com/images/G/01/csm/showads.v2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||unagi.amazon.com/1/events/com.amazon.eel.SearchAutocompleteUIServiceMetrics.nexus$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||images-na.ssl-images-amazon.com/images/G/01/browser-scripts/site-wide-js-1.2.6-beacon/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||g-ecx.images-amazon.com/images/G/01/gno/beacon/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||images-na.ssl-images-amazon.com/images/G/01/advertising/dev/js/live/adSnippet.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||z-ecx.images-amazon.com/images/G/01/browser-scripts/p13nlogger/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||advertising-api-eu.amazon.com^* ||device-metrics-us.amazon.com^* ||mads-eu.amazon.com^* ! TODO: Does the following rule prevent "activation" @ gaming.amazon.com? ||fls-na.amazon.com/*/batch/1/OE/$xhr,method=post ||fls-na.amazon.com/*/prime-presentation-metrics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fls-na.amazon.com/*/action-impressions/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fls-na.amazon-adsystem.com/*/action-impressions/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fls-na.amazon-adsystem.com/*/associates-ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||aax-eu.amazon-adsystem.com^* !||aax-cpm.amazon-adsystem.com/x/getad?jsd=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||aax-cpm.amazon-adsystem.com^* !||aax-us-east.amazon-adsystem.com/e/dtb/bid$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||aax-us-east.amazon-adsystem.com^* !||fls-eu.amazon-adsystem.com/1/associates-ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fls-eu.amazon-adsystem.com^* ||ir-na.amazon-adsystem.com^* !||ps-eu.amazon-adsystem.com/scripts/aps-adserving.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ps-eu.amazon-adsystem.com^* !||ps-us.amazon-adsystem.com/images/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ps-us.amazon-adsystem.com^* !||ws-eu.amazon-adsystem.com/widgets/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ws-eu.amazon-adsystem.com^* !||rcm-na.amazon-adsystem.com/e/cm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rcm-na.amazon-adsystem.com^* !||z-na.amazon-adsystem.com/widgets/onejs$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||z-na.amazon-adsystem.com^$3p,domain=~amazon.com,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c.aps.amazon-adsystem.com/apstag.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c.aps.amazon-adsystem.com^$3p,domain=~amazon.com,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||config.aps.amazon-adsystem.com^$3p,domain=~amazon.com,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||client.aps.amazon-adsystem.com/publisher.js$3p,script,domain=~amazon.com ||client.aps.amazon-adsystem.com^$3p,domain=~amazon.com,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn-a.amazon-adsystem.com/video/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn-a.amazon-adsystem.com^$3p,domain=~amazon.com,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||c.amazon-adsystem.com/aax2/apstag.js$script,domain=www.247checkers.com|www.247chess.com|www.247solitaire.com|www.247pinball.com|www.247spacerocks.com|www.247games.com !||c.amazon-adsystem.com/aax2/apstag.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||c.amazon-adsystem.com/aax2/amzn_ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||c.amazon-adsystem.com/aax2/getads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||c.amazon-adsystem.com/bao-csm/forensics/a9-tq-forensics-incremental.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c.amazon-adsystem.com^$3p,domain=~amazon.com,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s.amazon-adsystem.com/v3/pr?$3p,domain=www.xfinity.com,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s.amazon-adsystem.com/iu3?$3p,domain=www.xfinity.com,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.amazon-adsystem.com^$3p,domain=~amazon.com,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The following rule blocks ads on Amazon's website. !||s.amazon-adsystem.com^* !||v.amazon-adsystem.com/va/fw/getAds$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||v.amazon-adsystem.com^$3p,domain=~amazon.com,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||amazon-adsystem.com^$domain=forbes.com ||ieluqbvv.telemetry.connect.us-east-1.amazonaws.com/prod/put-metrics$xhr,method=post ||affiliationjs.s3.amazonaws.com^* ! TODO: redirect the audioAdStarted to audioAdStopped instead of blocking it? audioAdStarted is never called if the source of the ad is blocked. !||*/api/audioAd$uritransform=/\/audioAd(Started|Error|Resumed|Paused)/\/audioAdStopped/,from=music.amazon.com,to=na.mesk.skill.music.a2z.com,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css /^https?:\/\/na\.mesk\.skill\.music\.a2z\.com\/api\/audioAd(Started|Error|Resumed|Paused)/$uritransform=/\/audioAd(Started|Error|Resumed|Paused)/\/audioAdStopped/,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||na.mesk.skill.music.a2z.com/api/audioAdStarted$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||na.mesk.skill.music.a2z.com/api/audioAdError$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||na.mesk.skill.music.a2z.com/api/audioAdResumed$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||na.mesk.skill.music.a2z.com/api/audioAdPaused$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||na.mesk.skill.music.a2z.com/api/audioAdStopped$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! TODO: The following rule just prevents Amazon from knowing that a disabled button was pressed? ||na.mesk.skill.music.a2z.com/api/actionDenied$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||9edrkgf9qh.execute-api.us-west-2.amazonaws.com/default/MaestroLoggerV2$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! TODO: Does d8aqog0hzpkc8.cloudfront.net only host ads for Amazon music? ||d8aqog0hzpkc8.cloudfront.net^$3p,image,domain=music.amazon.com ! The following rule redirects the audio to a null file instead. ||d8aqog0hzpkc8.cloudfront.net^$3p,media,redirect=noopmp3-0.1s,domain=music.amazon.com ! The following two rules will remove buttons that lead to automatically purchasing a subscription music.amazon.com##div[class="detail-button-container"]:has(music-button:has-text(Try Amazon Music Unlimited)):remove() music.amazon.com##music-button[title="UPGRADE"][aria-label="UPGRADE"]:remove() ! Enabling the next and previous buttons doesn't really help the free tier of Amazon Music as the button just displays a popup to purchase the premium subscription. music.amazon.com##music-button[id="nextButton"][class*="disabled"]:remove-class(disabled) music.amazon.com##+js(remove-class, disabled, #nextButton, stay) music.amazon.com##music-button[aria-label="Previous"][class*="disabled"]:remove-class(disabled) music.amazon.com##+js(remove-class, disabled, music-button[aria-label="Previous"][class*="disabled"], stay) music.amazon.com##music-button[id="transport-overlay-button"]:remove-attr(disabled) music.amazon.com##+js(remove-attr, disabled, #transport-overlay-button, stay) ! userHash should be the {"level":"HD_MEMBER"} JSON so use the following format: music.amazon.com##+js(trusted-set-constant, userHash, {"value": {"level":"HD_MEMBER"}}) ! TODO: The values in the following four rules are either being overridden or are not being set although they appear to be set according to the logs. music.amazon.com##+js(trusted-set-constant, window.amznMusic.appConfig.isRedhoodPlusMetricsEnabled", {"value": false}) music.amazon.com##+js(trusted-set-constant, window.amznMusic.appConfig.isAccentOutlineUpsellBadgeEnabled", {"value": false}) music.amazon.com##+js(trusted-set-constant, window.amznMusic.appConfig.isAnonymousFreeTierDialogEnabled", {"value": false}) music.amazon.com##+js(trusted-set-constant, window.amznMusic.appConfig.weblabV2Enabled", {"value": true}) ! Sets these values in the in-line script instead. ! TODO: If using trailing comma's in the following rules, the comma's must be escaped in both the find AND replacement parameters. ! Do NOT use comma's since the script may reorder the items and the last one won't have a comma. music.amazon.com##+js(trusted-replace-node-text, script, /"isRedhoodPlusMetricsEnabled": true/gm, "isRedhoodPlusMetricsEnabled": false) music.amazon.com##+js(trusted-replace-node-text, script, /"isAnonymousFreeTierDialogEnabled": true/gm, "isAnonymousFreeTierDialogEnabled": false) music.amazon.com##+js(trusted-replace-node-text, script, /"isAccentOutlineUpsellBadgeEnabled": true/gm, "isAccentOutlineUpsellBadgeEnabled": false) music.amazon.com##+js(trusted-replace-node-text, script, /"weblabV2Enabled": false/gm, "weblabV2Enabled": true) music.amazon.com##+js(trusted-replace-node-text, script, /"isClientMetricsLambdaEnabled": true/gm, "isClientMetricsLambdaEnabled": false) ! "AMF" is the free tier; "UNLIMITED_HD" is the paid tier. ! Using the following rule to set the tier will prevent music from playing ("playback error" screen) if on the free tier, i.e. "AMF". ! This one setting does change the shuffle button to a play button. ! It also causes a music subscription to be started and charged if no free trial for the account. ! the colon needs to be escaped in the following rules for some reason. !music.amazon.com##+js(trusted-replace-node-text, script, /"tier"\: "AMF"/gm, "tier": "UNLIMITED_HD") ! Using the following rule to set the tier will prevent music from playing ("playback error" screen) if on the free tier, i.e. "AMF". !music.amazon.com##+js(trusted-set-constant, window.amznMusic.appConfig.tier, UNLIMITED_HD) ! TODO: Finish and use one of the following rules to force the userHash value on an POST request? !music.amazon.com##+js(trusted-replace-outbound-text, , /\{"level":"FREE_MEMBER"\}/, {"level":"HD_MEMBER"}) !music.amazon.com##+js(trusted-replace-outbound-text, , FREE_MEMBER, HD_MEMBER) ||bentoncourier.com/sites/default/files/Adams030711.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bentoncourier.com/sites/default/files/Bakers300x250Nov2012.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bentoncourier.com/sites/default/files/Benton-Floral033111.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bentoncourier.com/sites/default/files/BinThereDumpThat-051612.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bentoncourier.com/sites/default/files/Everett-mar25-11.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bentoncourier.com/sites/default/files/RollerBallard030711.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bentoncourier.com/sites/default/files/collegebasketball.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bentoncourier.com/sites/default/files/smithcaldwell1012.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ndn.cdn.auditude.com/flash/modules/ndn-1.0/AuditudeAdUnit.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s.imp.microsoft.com/zag.gif?Log=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.imp.microsoft.com^* ||assets.msnbc.msn.com/rendering/msnbc/html40/assets/Js/Analytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||att.yahoo.com/vendor/foresee/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||l.yimg.com/os/assets/globalmedia/traffic/traffic-simulation.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||l.yimg.com/os/assets/globalmedia/traffic/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||home.secureapp.att.net/js/Webtrends/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||l.yimg.com/zz/combo?/os/mit/media/p/att/vendor/foresee/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||l.yimg.com/qg/att/portal/webtrends/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||images.toolbox.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adfusion.com/Adfusion.PartnerSite/categoryhtml.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||us.bc.yahoo.com/b?P=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.bluelithium.com^* ||yd.adfusion.com^* !||adm.fwmrm.net/p/msnbc_live/AdManager.swf?logLevel=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adm.fwmrm.net/p/msnbc_live/AdManager.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adm.fwmrm.net/p/msnbc_live/VPAIDAdRenderer.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adm.fwmrm.net/p/msnbc_live/VideoAdRenderer.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adm.fwmrm.net/p/msnbc_live/TraditionalFlashAdRenderer.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adm.fwmrm.net/p/5min_live/AdManager.swf?logLevel=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adm.fwmrm.net/p/5min_live/AdManager.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adm.fwmrm.net/p/5min_live/ExternalHTMLAdRenderer.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adm.fwmrm.net/*/ExternalHTMLAdRenderer.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adm.fwmrm.net/p/5min_live/VideoAdRenderer.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||2df7f.v.fwmrm.net/ad/l/1?kv=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||2df7f.v.fwmrm.net/ad/l/1?s=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||2df7f.v.fwmrm.net/ad/l/1?init=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||2df7f.v.fwmrm.net/ad/l/1?metr=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||2a86.v.fwmrm.net/ad/l/1?et=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||2df7d.v.fwmrm.net/ad/g/1?nw=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||bd0dc.v.fwmrm.net/ad/l/1?last=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||2a86.v.fwmrm.net/ad/g/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.v.fwmrm.net/ad/g/1?nw=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.v.fwmrm.net/ad/g/1?prof=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.v.fwmrm.net/ad/l/1?ct=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.v.fwmrm.net/ad/l/1?et=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.v.fwmrm.net/ad/l/1?init=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.v.fwmrm.net/ad/l/1?kv=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.v.fwmrm.net/ad/l/1?last=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.v.fwmrm.net/ad/l/1?metr=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.v.fwmrm.net/ad/l/1?s=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||jmp.clickbooth.com/ads/display_ads.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||jmp.clickbooth.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cpcserve.clickbooth.com/ad_images/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cpcserve.clickbooth.com/deliv/adsby.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cpcserve.clickbooth.com/deliv/cbcpc.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cpcserve.clickbooth.com^* ||extras.mnginteractive.com/live/js/omniture/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||extras.mnginteractive.com/live/omniture/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||e.yieldmanager.net/script.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||e.yieldmanager.net^* ||dynamic1.anandtech.com/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pvideos.5min.com/ads//lobsterfest/3.22/Lobsterfest_US_10_5_YDRR1003000_SD_hl_700.flv ||pvideos.5min.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||home.suddenlink.net/images/track/track.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||home.suddenlink.net/images/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||home.suddenlink.net/ads/displayad.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||home.suddenlink.net/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||authorize.suddenlink.net/mediation/1/rest/log/write?payload=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||authorize.suddenlink.net/mediation/1/rest/log/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||suddenlink.siena1.syn-api.com/v1/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||b.aol.com/ping$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cfiles.5min.com/FlexPlayers/extfiles/AdInjector_217.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cfiles.5min.com/FlexPlayers/extfiles/AdInjector_$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||l.5min.com/PSAdI^* !||uts-api.at.atwola.com/uts-api/audiences?callback=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||uts-api.at.atwola.com/uts-api/audiences^* ||static.emerald.synacor.com/assets/res.php^j;suddenlink;en_US;*;javascripts*maxymizer~omniture$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.emerald.synacor.com/assets/res.php^s;suddenlink;en_US;*;ad_placement$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wwwimages.adobe.com/uber/js/omniture/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||wwwimages.adobe.com/www.adobe.com/js/foresee/foresee-trigger.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wwwimages.adobe.com/www.adobe.com/js/foresee/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adobe.com/js/foresee/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||js.nyt.com/js/app/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||js.nyt.com/js/adx/googleads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||js.nyt.com/js/adx/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||graphics8.nytimes.com/adx/images/ADS/32/78/ad.327858/SateFarm_INCP3BNYT168x28.gif ||graphics8.nytimes.com/adx/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.nytimes.com/adx/bin/clientside/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.nytimes.com/adx/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pnytimes.chartbeat.net/ping$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stat.inkfrog.com^* !||rover.ebay.com/roverimp/0/0/9?imp=2046301&trknvp=cp%3D0%26ghi%3D10&1364875374581 ||rover.ebay.com/roverimp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||counter4.pushauction.com^* ||msnbcmedia.msn.com/i/MSNBC/SiteManagement/Ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dynamic1.dailytech.com/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cz.search.etargetnet.com/generic/advert.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bdimg.share.baidu.com/static/js/logger.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.shacknews.com###adRectangle:remove() www.shacknews.com###adSquare:remove() www.shacknews.com/ads/blank.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||i.cmpnet.com/shared/omniture/s_code_remote.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||i.cmpnet.com/shared/omniture/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||entjs.msn.com/script/tracking12108.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||blstj.msn.com/br/chan/udc/js/udctrack.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||blstj.msn.com/br/chan/om/js/s_code.2010.12.13.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||blstj.msn.com/br/chan/om/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||a.collective-media.net/adj/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.collective-media.net^* !||www.privateinternetaccess.com/ads/serve.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.privateinternetaccess.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||icdn.toolbox.com/BUILD_2018/js/z.omniture.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||b3.mookie1.com/1/TRACK_Discover/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||b3.mookie1.com^* ||sdc.usbank.com/dcs*/dcs.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||chaseonline.chase.com/content/secure/foresee/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dz.glanceguide.com/errl.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.releaselog.net/uploads2/4fed9f476e21ca46be403da0339f577b.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||admin.cnet.fyre.co/v3/tracking/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||admin.gamespot.fyre.co/v3/tracking/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||admin.fisher-0.fyre.co/v3/tracking/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||admin.*.fyre.co/v3/tracking/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.livefyre.com/tracking/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.cbc.ca/includes/ads/gfx/ad_label_h.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.cbc.ca/includes/ads/masthead_ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.cbc.ca/includes/ads/bbframe.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.cbc.ca/includes/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.cbc.ca/g/stats/pagetracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.cbc.ca/g/stats/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||po.st/v1/counter$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||po.st/v1/status$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||futurepublications.uk.intellitxt.com/al.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||futurepublications.uk.intellitxt.com/v4/init?ts=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||futurepublications.uk.intellitxt.com/intellitxt/front.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||futurepublications.uk.intellitxt.com^* !||images.intellitxt.com/ast/js/vm/jslib/metrics_1329390699.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||images.intellitxt.com/ast/js/vm/jslib/metrics_$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.itmanagement.com/js/portomniture.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||res.octonet.com/safead/800notes/TF-160x600.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||res.octonet.com/safead/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||img.sedoparking.com/jspartner/google.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||img.sedoparking.com/r/ads/adcode.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||img.sedoparking.com/jspartner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||img.sedoparking.com/r/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||shared.9msn.com.au/share/long_cache/js/omniture/third_party/ninemsn.omniture-1.3.15.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||shared.9msn.com.au/share/long_cache/js/tracking/udc/ninemsn.tracking.udc-1.1.2.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||shared.9msn.com.au/share/long_cache/js/ads/ninemsn.ads-2.4.75.7823.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||shared.9msn.com.au/share/short_cache/js/ads/ninemsn.ads.loader-1.0.0.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||shared.9msn.com.au/share/long_cache/js/omniture/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||shared.9msn.com.au/share/long_cache/js/tracking/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||shared.9msn.com.au/share/long_cache/js/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||shared.9msn.com.au/share/short_cache/js/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||i2.technet.microsoft.com/Areas/Global/Content/Omniture/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lp.longtailvideo.com/5/yourlytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||meta.wikimedia.org/wiki/Special:RecordImpression^* ||deskwww.s3.amazonaws.com/new/javascripts/deskanalytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static-01.cafemomstatic.com/41599/js/track.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.bittorrent.com/scripts/ga_social_tracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||728x90.popcpm.com/ad.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||728x90.popcpm.com^* !||cdn.assets.craveonline.com/js/tracking/gn_tracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.assets.craveonline.com/js/tracking/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.assets.craveonline.com/comscore_branding/cr-branding.js?useDarkLogo=true$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.assets.craveonline.com/comscore_branding/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||utm.amikay.com/assistly.com/__utm.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||utm.amikay.com^* !||cafemom.us.intellitxt.com/al.asp?ts=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cafemom.us.intellitxt.com/v4/init?ts=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cafemom.us.intellitxt.com/intellitxt/front.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cafemom.us.intellitxt.com^* ||401-edd-684.mktoresp.com/webevents/visitWebPage$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||krxd.nexac.com/dlx.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||krxd.nexac.com^* !||rum-collector.wpm.neustar.biz/beacon$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rum-collector.wpm.neustar.biz^* ||assets3.desk.com/*/javascripts/tracking/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||assets3.desk.com/*/assets/tracking_libraries.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||track.cafemomstatic.com/v2/noscript$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||track.cafemomstatic.com^* !||p.acxiom-online.com/pixel/sci$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||p.acxiom-online.com^* ||apiservices.krxd.net/um?partner=exelate&r=//loadm.exelator.com/load/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||apiservices.krxd.net/um?partner=acxiom&r=p.acxiom-online.com/pixel/sci$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||rapidgator.net/images/banners/button.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rapidgator.net/images/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.ricanadfunds.com/images/banner.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||j.bimlocal.com/t_ad?usr=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||j.bimlocal.com/t?usr=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||j.bimlocal.com/js/cm3y/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||j.bimlocal.com^* !||a.bimlocal.com/ad_d/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||a.bimlocal.com/uid$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.bimlocal.com^* ||www.komonews.com/templates/FIN_ds_ad_iframe.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cse.adziff.com/CSE/BestPrice$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static.adziff.com/qhint/topad_gk.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.adziff.com^* ||www.lijit.com/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||as.sexad.net/as/pu?p=prop$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||as.sexad.net^* ||www.topblogarea.com/tracker.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.botsvisit.com/services/mblv/mblv.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.botsvisit.com/services/yblv/dyblv.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.botsvisit.com/services/gblv/gblv.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||img.adsensecamp.com/images/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||img.adsensecamp.com^* !||banner.adsensecamp.com/images/banner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||banner.adsensecamp.com^* ||www1.adsensecamp.com/show/frame.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adsensecamp.com/show/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.auto-ping.com/iping.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.counters4u.com/backlink.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s09.flagcounter.com/count/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s*.flagcounter.com^* ||www.blogtoplist.com/tracker.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||craftkeys.com/tracker/analytics$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||craftkeys.com/track.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||remosoftware.supportaxis.net/scripts/iptracker.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||remosoftware.supportaxis.net/scripts/js/monitor.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xslt.alexa.com/site_stats/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.mypagerank.net/services/sn/servicesn_js.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||blockmetrics.com/static/adimages/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||blockmetrics.com/static/adblock_detection/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||blockmetrics.com/adblock_detection/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.escapistmagazine.com/global/clickheat/click.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.escapistmagazine.com/global/clickheat/js/clickheat.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.escapistmagazine.com/global/clickheat/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||odownloadmanager.com^* ||www.selfgrowth.com/solos/innerbonding.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||themenest.net/platform/script/track$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||network.adsmarket.com/click/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||network.adsmarket.com^* !||ad.bc.vc/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.bc.vc^* ||ads.bc.vc^* ||www.poparb.com/zzpop.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||poparb.com/zz.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.poparb.com/lod.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||zwaar.org/code.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||zwaar.net/open_site.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.aradown.com/templates/aradown/js/jmpopups.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn3.adexprt.com/lp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn3.adexprt.com^* ||cdn.filefactory.com/js/jquery/jquery.popunder.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.r69.cf1.rackcdn.com/pixel.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||px.pub-fit.com/pixel.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||px.pub-fit.com^* ||ads.pub-fit.com^* ||www.psimg.com/scripts/cookie/_ps_visit2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||service.maxymiser.net/cdn/pokerstarscom/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||st.extabit.com/s/js/hitua2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.filefactory.com/js/premium.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.multiupload.nl/popunder/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||trk.update-com.info^* ||update-com.info^* ||www.gaminatoare.ro/embeds/sizzlinghot.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.multiupload.nl/ad.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||3stepprofitz.com/splash4.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||main.linktrackr.com/adfly$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adlock.in/file3/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||billionuploads.com/images/Download.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||liftdnartb-d.openx.net^* !||rt.liftdna.com/SLD.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||rt.liftdna.com/liftrtb_4.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rt.liftdna.com^* ||media-social.s-msn.com/s/js/18.41/activityTrackSdk.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||media-social.s-msn.com/s/js/loader/activity/trackloader.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||osmdcs.interclick.com/pixel.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||osmdcs.interclick.com/pixelChecked.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||osmdcs.interclick.com^* !||www.woopra.com/track/ping/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.woopra.com/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||magazine3k.com/banner/banner.top-logged.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||imgtrack.com/i/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||overclockersclub.us.intellitxt.com^* !||www.releaselog.net/ad/728b.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.releaselog.net/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.lijit.com/___umgul_rc17/res/js/lite.beacon.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.lijit.com/ip.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.bizographics.com/collect/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.adap.tv/beacons^* ||ads.adap.tv/cookie^pageUrl=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.mercent.com/js/tracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||media.nashbar.com/wcsstore/ConsumerDirectStorefrontAssetStore/javascript/coremetrics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||chappel.videogamer.com/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tracking.searchmarketing.com/welcome.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tracking.searchmarketing.com/click.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adaptv.pixel.invitemedia.com/adaptv_sync$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adaptv.pixel.invitemedia.com^* !||cm.eyereturn.com/adaptv/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cm.eyereturn.com^* !||hit36.hotlog.ru/cgi-bin/hotlog/count$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hit36.hotlog.ru^* !||hit41.hotlog.ru/cgi-bin/hotlog/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hit41.hotlog.ru^* ||*.hotlog.ru/cgi-bin/hotlog/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||img2.depositfiles.com/adroot/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ua5.hit.stat24.com^* ||sub2.bubblesmedia.ru/ctrack/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||block.stableprofit.ru/show.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||block.stableprofit.ru^* ||www.gsm-advance.com/cron.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.fastclick.net/js/adcodes/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.pokerstars.com/?source=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||webmaster.extabit.com/1.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||e.sexad.net^* ||www.streamate.com/landing/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||media1.break.com/adops/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.break.com/apextracker/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||media1.break.com/break/js/brktrkr.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cgpeers.com/log.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||zpag.es/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||zpag.es/css/top_ad.css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ezinearticles.com/encrypt/blank.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.turingts.com^* ||www.hellobar.com/hellobar*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sharefiles.co/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sharefiles.co/mBanner.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||oascentral.datasphere.com^* ||adserving.cpmgo.com^* ||www.itnews.com.au/t.ashx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||c.effectivemeasure.net/v4/em_js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c.effectivemeasure.net^* !||nodes.r66t.com/node_api/*/entry/main.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nodes.r66t.com^* ||www.vpn4all.com/application/views/layouts/images/p2p/banner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.propellerads.com^* ||www.game-debate.com/scripts/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.toshibadirect.com/js/third-party/omniture/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.toshibadirect.com/js/coremetrics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||forum.csmania.ru/ads/view.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||forum.csmania.ru/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||stat.csmania.ru/piwik.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stat.csmania.ru^* !||stat.dealtime.com/DealFrame/DealFrame.cmp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.game-debate.com##div[id^="oggiBanner"]:remove() www.game-debate.com##.loadIn728by90:remove() ||i.ubm-us.net/shared/omniture/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||js.bizographics.com/convert_data.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||domains.googlesyndication.com/apps/domainpark/domainpark.cgi$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.hlserve.com/Delivery/ClientPaths/Overstock/Delivery.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.hlserve.com/Delivery/ClientPaths/Sears/Delivery.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.hlserve.com/Delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.sears.com/ue/home/foresee-surveydef.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.overstock.com/foresee/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ak1.ostkcdn.com/js/thirdparty/omtr/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||filestay.com/fscustom/javascript/jquery-bubble-popup-v3.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||filestay.com/fscustom/css/jquery-bubble-popup-v3.css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.downws.com/templates/DownWs/js/jmpopups.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.quickmeme.com/media/roscattiletwo.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.quickmeme.com##.meme_adwrap:remove() !||tag.yieldoptimizer.com/ps/ps$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tag.yieldoptimizer.com^* !||s.thebrighttag.com/tag$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.thebrighttag.com^* ||n4g.us.intellitxt.com^* ||eclick.baidu.com/a.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.cpro.baidu.com/s.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pos.baidu.com/ecom^* ||www.d3-battte.tk^* ||a.torcache.net^* !||e-2dj6wak4sjd5clo.stats.esomniture.com^* ||*.stats.esomniture.com^* !||core.insightexpressai.com/adserver/invites/GetContent.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||core.insightexpressai.com/adserver/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||images.insightexpressai.com/adserver/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||beliefnet.us.intellitxt.com/v3/smartad.jsp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||beliefnet.us.intellitxt.com/intellitxt/front.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||beliefnet.us.intellitxt.com^* !||inskinad.com/ISAPAdServer/AdS.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||inskinad.com/ISAPAdServer/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||log.feedjit.com^* ||feedjit.com/serve/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||feedjit.com/router/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||feedjit.com/wa/tf.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.webgozar.ir/c.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c.speedtest.net/flash/wave-ad-wide.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dualstack.zd.map.fastly.net/javascript/ads/ad.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||b.cdnst.net/javascript/ads/ad.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||b.cdnst.net/javascript/prebid.*.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dualstack.zd.map.fastly.net/javascript/prebid.*.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dualstack.zd.map.fastly.net/javascript/amazon.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||b.cdnst.net/javascript/amazon.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.att.com/scripts/baynote.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adslm.dohrenburg.net^* ||oascentral.sears.com^* ||oascentral.sportsfanlive.com^* ||oascentral.ibtimes.com^* ||catalog.video.msn.com/FraudDetect.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||shopsocially.com/js/merchant_conf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||shopsocially.com/js/all.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||oascentral.beliefnet.com/RealMedia/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||oascentral.beliefnet.com/Scripts/oas_analytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||oascentral.beliefnet.com^* !||cs.twcczhu.com/js/p/120600.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cs.twcczhu.com/js/p/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cs.twcczhu.com/p/p.jsx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||p.gm99.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||p.gm99.com/cs/cpc.html_step2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||p.gm99.com/cs/cpc.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www13.glam.com/clear.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www2a.glam.com/files/affiliate/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www2.glam.com/app/site/affiliate/viewChannelModule.act$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www2.glam.com/app/site/affiliate/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www22.glam.com/cTagsImgCmd.act$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www22.glam.com/gad/glamadapt_jsapi_track.act$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www*.glam.com/clear.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www*.glam.com/files/affiliate/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www*.glam.com/app/site/affiliate/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www*.glam.com/cTagsImgCmd.act$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www*.glam.com/gad/glamadapt_jsapi_track.act$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www*.glam.com/gad/glamadapt_jsapi.act$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||gadcreatives.glam.com/glamadapt_files/ade/creative/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gadcreatives.glam.com^* !||www35t.glam.com/jsadimp.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www35f.glam.com/ade/default/GlamSelectDefaultAds.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www35.glam.com/gad/glamadapt_jsrv.act$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www*.glam.com/jsadimp.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www*.glam.com/ade/default/GlamSelectDefaultAds.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www*.glam.com/gad/glamadapt_jsrv.act$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||video.od.visiblemeasures.com/log^* !||data.inskinmedia.com/trackports/rep/base/track.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||data.inskinmedia.com/trackports/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cbjs.baidu.com/js/logAdvanced.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cbjs.baidu.com/js/log.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cbjslog.baidu.com/log$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cbjslog.baidu.com^* !||ad.adnetwork.net/st$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.adnetwork.net^* !||counter.yadro.ru/hit$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||counter.yadro.ru^* ||count.rin.ru^* !||vitesseads2.widearea.co.uk/openx/www/delivery/lg.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vitesseads2.widearea.co.uk^* ||ads.ookla.com^* ||cdn.ads.ookla.com^* !||aff.my7s.com/idevaffiliate.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||aff.my7s.com^* !||srv.admailtiser.com/pix/asyncPixelLoader.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||srv.admailtiser.com^* ||ad.retargeter.com^* !||secure.quantserve.com/pixel/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||secure.quantserve.com^* ||pi.pardot.com/analytics$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||go.pardot.com/olark/analytics$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www2.sorensonmedia.com/analytics$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||etrx.co/track.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||jpmedia.go2cloud.org/aff_c^* ||kate.wtstats.com/trackingcode.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||support.microsoft.com/Scripts/webtrends.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||support.microsoft.com/Scripts/jquery.bi.dataconsumers.webtrends.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||support.microsoft.com/common/script/fx/surveytrigger.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||l.sharethis.com/log$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gamedayr.com/wp-content/plugins/awpcp-featured-ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||jocksandstilettojill.com/js/awstats_misc_tracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*/js/awstats_misc_tracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||widgets.video.msn.com/report.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.bonetown.com/webAdds/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.bonetown.com/webAdds/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cosplayerotica.com/webmasters/swfbanners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.hermoment.com/realmedia/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||free.cosplayerotica.com/fhg/img/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css img.atdmt.com/images/pixel.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||extabit.com/s/img/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ds.reson8.com/pop.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ds.reson8.com/vendor.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ds.reson8.com^* ||www.ag.ru/jscodes/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||728x90.omgcpm.com/ad/mad.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||728x90.omgcpm.com/mad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||728x90.omgcpm.com^* !||affiliates.investintech.com/js/at.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||affiliates.investintech.com^* ||ad.rambler.ru^* !||cnt.kanobu.ru/ban.ban$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cnt.kanobu.ru^* ||www.xbitlabs.com/images/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.xbitlabs.com/cms/module_banners/xbanner.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||popcpm.com/show_i.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gif.barclaycardus.com/apply/js/base/tagging/adbe/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.barclaycardus.com/app/japply/js/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||urlcheck.hulu.com/blacklistservice/service.svc/adcheck$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.qsstats.com/dcs*/dcs.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||feed.validclick.com/result_redir.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||feed.validclick.com/result.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||feed.validclick.com^* ||hugefiles.net/openx/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||my.clickdesk.com/rest/visitor/proactive$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||my.clickdesk.com/rest/visitor/widget/preferences$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||my.clickdesk.com/rest/visitor/widget/template$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||my.clickdesk.com/rest/visitor/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.movieworldsite.com/fox/105$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nexus.ensighten.com/symantec/scode/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||a.gfxz.org/yaim.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.gfxz.org^* !||myuniques.ru/application/x-shockwave-flash/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.myuniques.ru^* ||myuniques.ru^* ||www.futuremark.com/js/custom_tracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||community.futuremark.com/hwc/js/adbox.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||otn.dsparking.com/?epl=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||otn.dsparking.com^* !||40359.skooble.com/fly?q=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||40359.skooble.com/fly4?sid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||40359.skooble.com^* ||clients.bluecava.com/data/?p=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||icqad010.net/klgqerkl.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||icqad010.net/icq.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||icqad010.net/check.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||z1150.takru.com/in.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||z1150.takru.com^* !||stats.wmtransfer.com/Levels/pWMIDLevel.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stats.wmtransfer.com^* ||www.noowho.com/text.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.newsmaxstore.com/images/promo_tracking/promo_conversion_image.cfm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.newsmaxstore.com/images/promo_tracking/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||objects.tremormedia.com/embed/js/banners.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||t4.nrelate.com/r3/^type=ad&$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dw.com.com/rubicsimp/c.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||blitzdown.com/wp-content/plugins/social-traffic-pop/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.linxdown.me/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||event.trove.com/log.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||moneta.trove.com/RevenuePlatform/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||regie.espace-plus.net/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.megavisites.com/promote.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fr.1sponsor.com/js/popunder_auto.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fr.1sponsor.com/aclk/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.mirrorupload.net/js/ads.ad6media.fr.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||x.porn.fr/js/tc_promo_functions.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||x.porn.fr^* ||www.pubdirecte.com/script/iframe/i1.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.pubdirecte.com/script/banniere.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.pubdirecte.com/script/pop.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.pubdirecte.com/script/externe.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.pubdirecte.com/script/pop_redirect.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||log.go.com/log$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ext.host-tracker.com/uptime-img/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ext.host-tracker.com^* !||promo.vador.com/js/tc_promo_functions.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||promo.vador.com/js/tc_loader.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||promo.vador.com^* ||dl.installiq.com/Pixels/PublicPixel.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ophan.guardian.co.uk/t.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.vuiads.org^* ||cheviet.vn/modules/mod_vvisit_counter/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad2.ycasmd.info^* ||wwwstats.info/links.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.cbs.com/assets/js/ad_utils.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||thewrapapp.com/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mycdn.media.net/fcmdynet.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mycdn.media.net/mediamain.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||search.keywordblocks.com/mediamainlog.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.cpamixer.com/down-aff.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.cpamixer.com/redirect.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ht.cdn.turner.com/ttn/big/video/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ht.cdn.turner.com/cnn/big/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||i.cdn.turner.com/xslo/cvp/config/cnn/aspenanalytics.json$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.cdn.turner.com/xslo/cvp/config/cnn/aspenanalytics.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.hitslyrics.com/bot_ban.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.hitslyrics.com/top_ban.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.stlyrics.com/songs/bot_ban_az.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.stlyrics.com/songs/top_ban_az.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||affiliate.irotracker.com^* ||ad.admixer.net^* !||cdn.admixer.net/scriptlib/adscanner.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.admixer.net^* ||js.rmbn.ru/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||js.rmbn.ru/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||g4p.grt01.com^* ||g4p.redtram.com^* ||2baksa.net/download/reklama/adx2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bubblesmedia.ru/invoke.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sub2.bubblesmedia.ru/display/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||bubblesmedia.ru/cpa_adv/html_images/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bubblesmedia.ru/cpa_adv/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fileplaneta.com/^op=redirect_to$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.forumfusion.net/public/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a1.admaster.net^* ||dn.yourfiledownloader.com^* ||adsplius.lt/banners_15min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.torrent.ai/v2/advise/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.torrent.ai/v2/advise/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.torrent.ai/v2/advise/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||filezy.net/static_ads/embed_ads.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||filezy.net/static_ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||js01.pixelsnippet.com/pixel_static.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||j.hub.com.pl/inpl_ad_simple.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||x.interia.pl/inpl/inpl.intad.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||advertisingawards.info^* ||www.cpalead.com/cpalock.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.wigetmedia.com/tags/putlocker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||itpro.uk.intellitxt.com/intellitxt/front.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.uk.intellitxt.com^* !||guru3d.us.intellitxt.com/intellitxt/front.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.us.intellitxt.com^* ||ads.investingchannel.com^* ||www.insidermonkey.com//ad.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.investingchannel.com/ic_beacon.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||goku.brightcove.com/1pix.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||video.dailymail.co.uk/brightcove/tracking/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.blitzdownloads.com/js/popup/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.assoc-amazon.de/s/ads-common.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.assoc-amazon.de/s/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||installer.betterinstaller.com/js/betterInstaller_generic.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||1-ps.googleusercontent.com/beacon$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tureprofit.com/images/banner300x250.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||dennispublishing.112.2o7.net^* !||questsoftware.112.2o7.net^* ||*.112.2o7.net^* ||*.122.2o7.net^* !||www.down1oads.com/nlp/e/smb/7_zip?p1=filegagjbfs&p3=1&utm_source=smb&utm_medium=affiliate&utm_campaign=filegagjbfs&utm_content=7_zip$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.down1oads.com/nlp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.namcobandaigames.com/js/tracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||a.gfx.ms/*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*^cdn.baidupcs.com/monitor.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||resources.faronics.com/acton/bn/*/visitor.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ht.brandent.msn.com/beet75/Video/Delta_IntroBumper_0220v2.mp4$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The following rule redirects the video to a null file instead. !||ht.brandent.msn.com/beet75/Video/*.mp4$media,redirect=noop-1s.mp4 ||ht.brandent.msn.com/beet75/Video/*.mp4$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||msvn.vo.msecnd.net/usx200/m/1/188286/66/829378/OQAU9503H_PIZZA_15s_1280x720_3000_1363637198_49593608.flv$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||msvn.vo.msecnd.net/usx200/m/1/188286/14/877710/AHNL4453H_CleaningLadyREV1_NS1_1280x720_1366407939_1307_30.mp4$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||msvn.vo.msecnd.net/usx200/*.flv$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The following rule redirects the video to a null file instead. !||msvn.vo.msecnd.net/usx200/*.mp4$media,redirect=noop-1s.mp4 ||msvn.vo.msecnd.net/usx200/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.runpatch.com/b/stats$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||oascentral.dell.com^* ||b.247wallst.com/vanity/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.woopra-ns.com^* ||static.woopra.com/js/woopra.v2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||b.aol.com/master/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||at.atwola.com/addyn/3.0/5113.1/221794/0/-1/allowedSizes=728x90$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||at.atwola.com/addyn/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||searchtermresults.com/searchinfo$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||searchtermresults.com^* ||onlinefwd.com^* ||www.delish.com/cm/delish/scripts/omniture-tags.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.bigresource.com/js/menu_text/tracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.medialib.oxm.co.uk/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||news.techworld.com/index.cfm?event=General.trackUserAction$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn3.techworld.com/scripts/omniture-video-tracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !Paypal Account Phishing ||www.raimondi.com.au/activate.login.home.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.blizzcon-store.tk^* ||www.blizzcons-prove.tk^* ||guildwars2.com.login-arenanet.pw^* ||guildwars2.com.nc-support.pw^* ||j2332.s3-website-us-west-2.amazonaws.com^* ||gf.wiretarget.com/a_b.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gf.wiretarget.com/lwxxx.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||imagec12.247realmedia.com/RealMedia/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.att.com/scripts/reporting.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.newhua.com/adimg/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tunngle.adspirit.de^* ||counter.scribblelive.com^* ||*.s.ad6media.fr^* ||*.b.ad6media.fr^* ||c.ad6media.fr^* ||hc.rapidshare.com/counter.cgi$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||turbotraff.net/m/xtendmedia300.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mplayerdownloader.24trk.com^* !||idvisitor.foreignpolicy.com/identity/public/visitor.json$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||idvisitor.socialreader.com/identity/public/visitor.json$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||id.slate.com/identity/public/visitor/ip_address.json$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||id.slate.com/identity/slateLogin/isBannedLogin.json$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||idvisitor.foreignpolicy.com^* ||idvisitor.socialreader.com^* ||id.slate.com^* ||event.slate.com/log.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css slate.com##div[class^="slate-ad"]:remove() slate.com##div[id^="mid-article-spot-xl-"]:remove() slate.com##div[class="advertisement"]:has-text(/Advertisement/):remove() slate.com##div[class="adblock-message"]:remove() slate.com##section[class="top-ad"]:remove() slate.com##section[class="bottom-ad"]:remove() ! The following rule removes more than one inline script. slate.com##+js(remove-node-text, script, /"__tcfapiLocator"/gm) slate.com##+js(remove-node-text, script, /window\.googletag\.pubads\(\)\.[gs]etTargeting\(/gm) slate.com##+js(remove-node-text, script, /function\s?\(f\,b\,e\,v\,n\,t\,s\)/gm) slate.com##+js(remove-node-text, script, /function\s?\(a9\,a\,p\,s\,t\,A\,g\)/gm) slate.com##+js(trusted-replace-node-text, script, /window\.PARSELY\.conversions\.trackLeadCapture\(event\);/gm, null;) slate.com##+js(aopr, pbjsConfig.consentManagement.gdpr) slate.com##+js(aopw, pbjsConfig.consentManagement.gdpr) ||slate.com/_components/adblock-message/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||slate.com/_components/slate-ad-aps/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||slate.com/_components/slate-analytics-js/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||slate.com/_components/analytics-js-loader/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||dot.cdnslate.com/static/media/components/slate-ad-prebid/prebid.min.9fb13a0.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dot.cdnslate.com/static/media/components/slate-ad-prebid/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||center-paypal-resolution-com.cgi-bin.koonsun.com.mx^* ||*.stats.paypal.com^* ||ads.fulltraffic.net^* ||ads.gamershell.com^* ||ads.allinspace.com^* ||*.hit.gemius.pl^* ||hit.gemius.pl^* ||count.carrierzone.com^* ||stats.nordicgames.at^* !||img.directadvert.ru/images/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||img.directadvert.ru^* !||code.directadvert.ru/show.cgi$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||code.directadvert.ru^* ||n.adonweb.ru/payclick/adv-out/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||patch.ali213.net/js/pop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tcss.qq.com/ping.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||fxmad-cpt.freenet.de/js.ng/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fxmad-cpt.freenet.de^* !||tags1.z5x.net:5280/?ad_type=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tags1.z5x.net^* ||cdn3.kovla.com/static/js/popunder.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.prelist.ws/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.prelist.ws/js/stats.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||search.spotxchange.com/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||search.spotxchange.com/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||search.spotxchange.com/openrtb/*/dados$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||search.spotxchange.com/vast/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||search.spotxchange.com^* ! The following rule has an exception for pluto.tv ||sync.search.spotxchange.com/partner?adv_id=$domain=~pluto.tv,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.cpmfun.com/getad-.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad2games.com/slave.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.cpmfun.com/getad.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||assets.msnbc.msn.com/rendering/msnbc/html40/assets/OmnitureTracking/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||media1.s-nbcnews.com/i/MSNBC/SiteManagement/Ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||technet.microsoft.com/Areas/Global/Content/Omniture/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||i2.technet.microsoft.com/Areas/Sto/Content/Scripts/webtrendsscript.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||entjs.msn.com/script/tracking*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||al1.sharethis.com/impr?campaign=adx-impr$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||al1.sharethis.com/impr$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||avp.wikia.com/__spotlights/lg.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.avpgalaxy.net/ad/largead.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.avpgalaxy.net/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||avp.wikia.com/__varnish_liftium/beacon$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||avp.wikia.com/__spotlights/spc.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||slot1.images.wikia.nocookie.net/__am/62154/groups/-/oasis_shared_core_js,adengine2_js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ox.irrawaddy.org/openx/www/delivery/lg.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||count.9yx.com/show_ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||servedby.openxmarket.asia/w/1.0/arj$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tracking.cindyclips.com/tracker.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ad.onlineadserv.com/st$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ox.irrawaddy.org^* ||count.9yx.com^* ||servedby.openxmarket.asia^* ||tracking.cindyclips.com^* ||ad.onlineadserv.com^* !||d.nster.net/a/319/2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d.nster.net^* !||js.nster.net/00/03/19.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||js.nster.net^* ||androidpromedia.blogspot.com/b/stats$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.queenshare.com/queen_pop.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||d.addelive.com/widget/render/hash/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d.addelive.com^* !||media.extole.com/track/traction.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||media.extole.com/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tag.perfectaudience.com/serve/5089994bf74eb6000200002d.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tag.perfectaudience.com^* !||bbnaut.ibillboard.com/g/ca$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bbnaut.ibillboard.com^* !||z.cdn.turner.com/money/.element/script/4.0/omniture/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||z.cdn.turner.com/money/.element/script/*/omniture/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||propellerpops.com/apu2.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||c1.popads.net/pop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c1.popads.net^* !||logs1252.xiti.com/hit.xiti$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||log*.xiti.com^* ||api.soundcloud.com/e1/me/track_likes/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||eventlogger.soundcloud.com/pageview$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||eventlogger.soundcloud.com/click$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||eventlogger.soundcloud.com^* ||dn.goforfiles.com^* !||my.blueadvertise.com/__adserver/insertions/show.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||my.blueadvertise.com^* ||cdn.adbooth.net^* ||ads.adsinimages.com^* ||guildwars2.com.en-support.pw^* ||count.channeladvisor.com^* !||image.gamespotcdn.net/gamespot/www/js/global/ads/siteAds.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||image.gamespotcdn.net/gamespot/www/js/global/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.gamespot.com/js/global/ads/siteAds.minLocal.js?v=1363375123$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.gamespot.com/js/global/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||dw.com.com/levt/video/e.gif?ts=1370029756386&event=adblock$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dw.com.com/levt/video/e.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.bit.ly/v3/clicks?callback=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||mp.apmebf.com/ad/tr/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mp.apmebf.com/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||altfarm.mediaplex.com/ad/tr/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||altfarm.mediaplex.com/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||c2.popads.net/pop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c2.popads.net^* ||jss.15yule.com/getpvstat.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||anomaly.realgravity.com/javascripts/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www2.adv-adserver.com/perl/tserve/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bayfiles.net/js/pop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.nbcnewyork.com/includes/ots_omniture_code.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.nbcnewyork.com/includes/customOmnitureData.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||t4.nrelate.com/r3/?type=ad$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.crn.com/scripts/AdvertisementCode.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||blu.stj.s-msn.com/br/chan/udc/js/udctrack.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||blu.stj.s-msn.com/br/chan/js/SetOmniVar.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||blu.stj.s-msn.com/br/chan/om/js/s_code.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||blu.stj.s-msn.com/br/chan/js/contextualad.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||d4.cc.b6.a0.top.list.ru/counter$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.top.list.ru/counter$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||secure.runescape.com.m-uid.ws^* ||s5.scribdassets.com/aggregated/javascript/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.documentcloud.org/pixel.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.gamesgate.com/track.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.indieroyale.com/scripts/stats.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||b.winamp.com/vanity/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.winamp.com/traffic/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cspix.media6degrees.com/orbserv/hbpix$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||u.optorb.com/m?p=1&r=QTr4R44AgNCirvb.Computers&r=Wlq9qCKXjOmIvAZ.Misc+Computers&r=5ubEXizZNqkBoJ2.Misc+Computers-p1891&r=PawZvvnt8383e6I.1208097339$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||u.optorb.com/f/n$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||u.optorb.com^* ||legitreviews.pgpartner.com/analytics.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||legitreviews.pgpartner.com/search_getprod_ad.php/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||show.onenetworkdirect.com/digitalriver/571162.gif?e=dxhbksbchkxxsb$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||show.onenetworkdirect.com^* ||lemonadiom.ru^* ||rotator.d1110e4.se^* ||95.211.113.13/openx/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.isohunt.com/js/adframe.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||isohunt.com/js/iframeAd.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||isohunt.com/a/adlog.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||exityield.advertise.com^* ||az413505.vo.msecnd.net/scripts/compressed.pop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||go.cz.bbelements.com/please/showit/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||earringsbyemily.com/img/get.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||earringsbyemily.com^* ||ads.mylikes.com^* ||pixel.everesttech.net/3756/cq?ev_sid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c.vioij.com^* !||63442.xml.admanage.com/xml/click/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||63442.xml.admanage.com^* ||67.201.62.155/index2.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||yourwirelesscash.com/search?uuid=51b44c2f51f2ea5615000003$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||yourwirelesscash.com/search/*?src=51a40c9651f2ea753e000000$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||yourwirelesscash.com/search^* ||account.guildwars2.com.id-game.pw^* ||secure.runescape.com.legal-form.ws^* ||*/js/webThunderDetect.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||analytics-union.sandai.net^* !||record.kuai.xunlei.com/r?k=ad_show_94$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||record.kuai.xunlei.com^* ||img.kuai.xunlei.com/js/statistics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.avclub.com/ads/vast/avc_player.xml$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.avclub.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||metrics.chmedia.com/pixel.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||metrics.chmedia.com^* ||www.infoq.com/styles/i/__utm.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn3.infoq.com/scripts/tracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||106242.hittail.com/mlt.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.hittail.com/mlt.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.vanityfair.com/_jcr_content/analytics.sitecatalyst.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.vanityfair.com/_jcr_content/ads_config.plugin_loader.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||subscribe.vanityfair.com/ams/page-ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||subscribe.vanityfair.com/circulation/shared/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||event.vanityfair.com/js/eventTracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||events.kalooga.com/event?eventtype=impression$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn2-b.examiner.com/sites/all/modules/custom/ex_omniture/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||us.battle.com.th-game.pw^* ||www.dsogaming.com/interstitial/interstitial.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pikachu.vr-zone.com.sg/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vr-zone.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||extras.mnginteractive.com/live/js/mngiads/AdsInclude.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||extras.mnginteractive.com/live/js/mngiads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||video.dmtracker.com/images/zig.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||track.eyeviewads.com/sync/adaptv$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||track.eyeviewads.com^* ||ads.adap.tv/creative?creativeid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.cracked.com/tracking/pixel/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.cracked.com/tracking/views/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.cracked.com/tracking/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ad.yieldmanager.com/cms/v1?esig=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.yieldmanager.com/cms/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||x.refban.com/banner.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||x.refban.com^* ||media.datahc.com/banners/affiliate/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||46.246.120.230/pop-imp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||track.bidtrk.com:81/?s=impression&c=61&h=851d9d68419060334509f968c69467eb&sub1=289748$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||track.bidtrk.com^* ||gameinvite.24trk.com/wthunder/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||urcommunity.org/wp-content/plugins/google-analyticator/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||js.hubspot.com/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ww25.barclayus.com/tracking^* !||481516.net/trk/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||481516.net^* ||track.viewster.com^* ||www.viewster.com/trendingnews_ac?utm_source=propads$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||event.on24.com/utils/trackHitServlet.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||infinitymasterminds.com/expop/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||return.bs.domainnamesales.com/return_js.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||forumimg.ipmart.com/ipmart_one/banner.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||forumimg.ipmart.com/ipmart_three/banner.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||forumimg.ipmart.com/ipmart_two/banner.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||p2-pn3srhyvrooqe-ract4wkqxvsh4qu2-if-v6exp3-v4.metric.gstatic.com/v6exp3/iframe.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.metric.gstatic.com^* ||banners.playocio.com^* ||tracker.hightrafficacademy.com^* ||billionuploads.com/megaplayer/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||programe.pro/ban.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||top.list.ru/counter?id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.upc.nl/javascript/pc/stat/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.one.ru/cgi-bin/cnt.cgi$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.upc.nl/tracking/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.rumbletalk.com/client/ads.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||counter.spylog.com^* !||s.svtrd.com/stats?siteid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||t.svtrd.com/t-120?i=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.svtrd.com^* ||t.svtrd.com^* !||stats.editingarchive.com/twatch/jslogger.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stats.editingarchive.com^* ||downloadfile24.com/landings/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||downloadfile24.com/DownloadFile.exe$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||183.110.235.2/ck_log.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||logging.admicro.vn^* ||oascentral.yellowpages.com^* ||www.viewster.com/trendingnews_ac$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.blackhat-static.com/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.blackhatworld.com/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||srv.buysellads.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.mojoportal.com/Data/Sites/1/media/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d1piupybsgr6dr.cloudfront.net/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www2.adv-adserver.com/perl/tserve/itrafficserver.cgi$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www2.adv-adserver.com/perl/tserve/gateway.cgi$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www4.adv-adserver.com/perl/tserve/publisher_feed.cgi$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.adv-adserver.com/perl/bserve/bserve.cgi$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.adv-adserver.com/perl/bserve/banner_feed.cgi$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www*.adv-adserver.com/perl/bserve/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www*.adv-adserver.com/perl/tserve/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdna.1sadx.net//adgear.js/current/adgear.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdna.1sadx.net/adgear.js/current/iframes/iframe_adspot.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdna.1sadx.net/adgear.js/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.glispa.com^* ||pgssl.com/media/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s3.amazonaws.com/shvideobkt/vid-player-tracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s3.amazonaws.com/shvideobkt/openx.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||direct.revsci.net/adr$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||redirect.xmladfeed.com/presults.jsp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.blizzard-eu-composr.tk^* !||openx.stronghold.com/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||openx.stronghold.com^* ||d.1sadx.net^* !||teknogods.com/advert.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||shop.oreilly.com/omniture/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||shop.oreilly.com/googleanalytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||emisja.adsearch.pl^* ||counter.theconversation.edu.au/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.somethingawful.com/js/site-adhelper.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.somethingawful.com/__utm.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||moviesonline.vehnix.com^* ||topix.cachefly.net/ext/adtrack_$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||horcherhiq.co.uk/img/info.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||getnewcodecs.mediasearch-vv.com^* !||x.cnt.my/cmp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||x.cnt.my/px/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||x.cnt.my/async/parser/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||x.cnt.my/async/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||x.cnt.my/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||gomediainc.com/?b=prop&v=791089556 ||gomediainc.com^* ||ileads.ru/redirect2.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rzftrack.rfsoao.com^* ||ideamk.com/counter.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||scoopsandiego.com/tncms/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||scoopsandiego.com/shared-content/art/tncms-ad-manager/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bloximages.newyork1.vip.townnews.com/scoopsandiego.com/content/tncms/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bloximages.newyork1.vip.townnews.com/scoopsandiego.com/content/tncms/assets/v3/bannerad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||escaleasaigon.com/img/info.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||stats-newyork1.bloxcms.com/shared-content/stats/common/tracker.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stats-newyork1.bloxcms.com^* ||stats.pingdom.com^* ||adfishmedia.go2cloud.org^* ||survey.g.doubleclick.net^* ||francescamaffiodo.it/img/info.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||jacksonville.com/files/advertising/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||jacksonville.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.orlandosentinel.com/hive/javascripts/taxonomy-ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tfc-ad.com/openx/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.ecommercebytes.com/phpAdsNew-2.0/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www1.adv-adserver.com/perl/tserve/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www3.adv-adserver.com/perl/tserve/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||log.pinterest.com^* !||s.m2pub.com/player.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.m2pub.com^* !||www.appround.biz/bestcodecspack/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.appround.biz/lp/codecperformer/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.appround.biz^* ||extabit.com/popup.jsp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pop.billionuploads.com/ppp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pop.billionuploads.com^* ||guildwars2.com.support.en-log.pw^* ||facebook.apps.identify.suspened.drgaia-hosting.com^* ||folder.richbanner.ru/rbn.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||valleywag.gawker.com/assets/ad_iframe.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||valleywag.gawker.com/stats/mark$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||valleywag.gawker.com/stats/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||musicbusinessschool.co.uk/v.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.joystiq.com/_uac/adpage.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||akiwood.com/v.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.data1003838.com/ver.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.updateflashnow.com/flashupdate.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.updateflashnow.com^* ||b.zeroredirect2.com^* ||1phads.com/lg.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||1phads.com/notice.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tr.cdnfile.com/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.cpmleader.com/hlavni2.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.cpmleader.com/credit2.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.cpmleader.com/b_468x60.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.cpmleader.com/b_300x250.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cpmleader.com/advertisers/cpmleader_iframe.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cpmleader.com/advertisers/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ro2.biz/ad.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ro2.biz/ad_js.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||media.quakelive.com/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.quakelive.com/web/2010080607/ads/300x250.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.quakelive.com/web/*/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||image.gamespotcdn.net/gamespot/www/js/tracking/omniture/omniture.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||image.gamespotcdn.net/gamespot/www/js/tracking/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||serve.adhance.com^* ||oas.theguardian.com^* ||oas.support.microsoft.com^* ||oxm.co.uk^* ||aps.hearstnp.com/Scripts/initDefineAds.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||aps.hearstnp.com/Scripts/loadAdsMain.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.chron.com/js/hdn/omniture/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.chron.com/js/omniture/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||aps.hearstnp.com/Scripts/loadAds.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||contribute.chron.com/ver1.0/Stats/Tracker.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||contribute.chron.com/ver1.0/Stats/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cantiere.org/modules/main.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.blizzard-eu-comiopooz.tk^* ||www.nydailynews.com/nydn/js/nydn-ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||i.i.cbsi.com/cnwk.1d/Ads/common/manta/derefbkcookie.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||i.i.cbsi.com/cnwk.1d/Ads/common/manta/adFunctionsD-zdnet.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||i.i.cbsi.com/cnwk.1d/Ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ads.inagist.com/api/v1/record_hbeacon$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.inagist.com^* ||oasc17.247realmedia.com/Scripts/oas_analytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.graddit.com/js/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||articles.baltimoresun.com/tracker.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.baltimoresun.com/hive/javascripts/taxonomy-ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.baltimoresun.com/hive/javascripts/metrics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||articles.baltimoresun.com/google_ad_request.js.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||articles.baltimoresun.com/tracker.js.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cn.cbsimg.net/cnwk.1d/Ads/common/dotclear.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cn.cbsimg.net/cnwk.1d/Ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.livefyre.com/v3/tracking/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||delivery.uasdel.com/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||delivery.uasdel.com^* ||ads.adsrvmedia.com^* ||adlog.cbsi.com^* ||www.advertiseyourgame.com/publish/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css mediarouting.com/ads/landing/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||mediarouting.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mediarouting.com/ads$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bannerplacetv.com/xts.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||clkads.com/banners/script/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||clkads.com/banners/img-banner.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||clkads.com/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||clkads.com/adServe/banners^* ||clkads.com/adServe/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.clkads.com/adServe/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||staffcop.ru/stats/track/default.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||staffcop.ru/stats/track.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||staffcop.ru/stats/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.softy360.com/lp/codecperformer/v14/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.softy360.com/lp/codecperformer/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.softy360.com/bestcodecspack/v9/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.softy360.com/bestcodecspack/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||scripts.dailymail.co.uk/static/bundles/googleads$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pixel.tapad.com/idsync/ex/receive?partner_id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pixel.tapad.com^* !||r.nexac.com/e/getdata.xgi$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||r.nexac.com^* ||8bbd5066.any.gs/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||guildwars2.com.account.arenanet-zh.pw^* !||www.pcanalysis.net/bridge/3.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.pcanalysis.net^* !||cdn.adsrvmedia.com/adsrvmedia/scripts/smart/smart.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.adsrvmedia.com^* ||count39.51yes.com^* ||www.trackbacksecure.com/cpa.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.noyapps.com/lp/codecperformer/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.noyapps.com/bestcodecspack/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||linuxgizmos.com/ad-images/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||w.coin.scribol.com/sites/all/modules/traffix/traffix-track.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||w.coin.scribol.com/sites/all/modules/traffix/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||st.pay-click.ru/data/links_block/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||n.pcads.ru/save_block_size.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pc.adonweb.ru/adv_out.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||st.pc.adonweb.ru/js/adv_out.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||n.pcads.ru^* ||pc.adonweb.ru^* ||st.pc.adonweb.ru^* ||www.zippytune.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||thebunsenburner.com/bottomads.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||thebunsenburner.com/bottomads2.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||by.uservoice.com/t/160526/x/p/RyBTZA8XWTo0pKp/track.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||by.uservoice.com/t/160526/x/p/track.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||by.uservoice.com/t/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||y.Ahoo.it^* !||ping.onscroll.com:3000/init.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ping.onscroll.com^* ||api.mixbit.com/api/v1/msee/video/track_view/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.websimages.com/active-static/target/stats/collector.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||collector.stats.webs.com^* !||pixel.fetchback.com/serve/fb/blank$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pixel.fetchback.com^* ||www.softologicsa.com/download/*^exename=CodecPerformerSetup$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.evga.com^* ||ads.dnainfo.com^* ||rt.com/s/js/counters/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||z.cdn.turner.com/xslo/cvp/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||z.cdn.turner.com/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.independent.co.uk/independent.co.uk/editorial/web/adsense/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.independent.co.uk/independent.co.uk/assets/js/omniture/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||images.highspeedbackbone.net/affiliate/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gan.doubleclick.net/gan_impression$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||media.cmgdigital.com/shared/media/*/web/common/javascript/omniture_$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||media.cmgdigital.com/shared/media/*/web/common/javascript/widgets/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www4.clustrmaps.com/counter/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||id13327.luxup.ru/show/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gredinatib.biz/news.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gredinatib.biz/viewt.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.dsultra.com/images/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||go4up.com/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.adk2.com/adstract/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||a.adorika.net/c/banner_s^* ||a.adorika.net^* ||gyszz.freemoviesonline.autoacessory.com^* ||lbdnc.globaladsopt.com^* ||cs.atdmt.com^* ||account.guildwars2.com.login.allow.eymfcas.pw^* ||ads.gorillavid.in^* !||q.stripe.com/csp-report$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||q.stripe.com^* ! js.stripe.com/v3/fingerprinted/ blocking wholesale prevents payment forms from working. ||js.stripe.com/v3/fingerprinted/$3p,domain=dailycaller.com,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.softologicsb.com/download/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.softologicsb.com^* ||fbcdn-creative-a.akamaihd.net/hads-ak-ash3/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||creative-lga.xx.fbcdn.net/hads-prn1/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||max.gunggo.com/show_ad.ashx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.engine.trklnks.com/Scripts/MediaScripts/PopUnder.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||monster.gostats.ru/bin/count^* ||gostats.ru/js/counter.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||clikz.com/abp/px.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adriacafe.com/search_caf.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adriacafe.com/track.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adriacafe.com/js/detectABP.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adriacafe.com/tg.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.value-bit.com/pix.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ibizavacanze.eu/info.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||lavoronuovo.it/info.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ibizavacanze.eu^* ||lavoronuovo.it^* !||aff.optionbit.com/l.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||aff.optionbit.com^* ||l6.yimg.com/av/moneyball/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||u2sb.interclick.com/beacon.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.yieldmanager.com/get-user-id^* ||ad.yieldmanager.com/csync^* ||ads.teamcoco.com^* ||i.cdn.turner.com/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ht.cdn.turner.com/tbs/big/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.tbs.com^* ||i.cdn.turner.com/ttn/ttn_adspaces/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||idpix.media6degrees.com/orbserv/hbpix$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||idpix.media6degrees.com^* ||sync.mathtag.com/sync/img?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ckm-m.xp1.ru4.com/activity$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ckm-m.xp1.ru4.com^* !||oxmonline.uk.intellitxt.com/intellitxt/front.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||resources.fairfax.com.au/js/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.nbclosangeles.com/includes/ots_omniture_tracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.nbclosangeles.com/includes/ots_omniture_code.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.nbclosangeles.com/includes/ots_omniture_$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.nbclosangeles.com/includes/customOmnitureData.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||l2.visiblemeasures.com/log$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.rnmd.net^* ||locker.att.net/app/js/frameworks/webtrends/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.quakeone.com^* ||sync.richmetrics.com^* ||track.sigfig.com^* ! opus.analytics.yahoo.com is also blocked by existing ||analytics.yahoo.com^* rule ||opus.analytics.yahoo.com^* !||service.idsync.analytics.yahoo.com/sp/v0/pixels$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||service.idsync.analytics.yahoo.com^* !||tag.idsync.analytics.yahoo.com/sp-frame.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tag.idsync.analytics.yahoo.com^* !||sp.analytics.yahoo.com/spp.pl?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||sp.analytics.yahoo.com/sp.pl?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sp.analytics.yahoo.com^* ||cms.analytics.yahoo.com^* ||ups.analytics.yahoo.com^* !||y.analytics.yahoo.com/p.pl$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||y.analytics.yahoo.com^* ||a.analytics.yahoo.com^* ||o.analytics.yahoo.com^* ||z.analytics.yahoo.com^* ||y3.analytics.yahoo.com^* ||analytics.yahoo.com^* !||beap.adx.yahoo.com/av$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||beap.adx.yahoo.com^* !||stats.slideshare.net/1.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stats.slideshare.net^* ||counter.scribblelive.net^* ||www.loltrk.com/c/redirect/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.loltrk.com/c/r/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||174.139.59.218/Load.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||174.139.59.218/in.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.edomz.com//go.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.edomz.com/go.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.edomz.com/re.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.edomz.net/popup.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.edomz.com/popupads.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.tagshost.com/tags.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.tagshost.com/?id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css&ad_type=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nexus.ensighten.com/target/code/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||beacon-6.newrelic.com^* !||beacon-5.newrelic.com^* !||beacon-1.newrelic.com^* !||beacon-2.newrelic.com^* !||beacon-3.newrelic.com^* !||beacon-4.newrelic.com^* ||beacon-*.newrelic.com^* ||www.klixfeed.com/popup.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rma-api.gravity.com/v1/beacons/log$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||espn.go.com/espn/sponsoredlinks/adsense/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||softarchive.net/js/getBanner.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.huffingtonpost.com/ads/ad_html_wh.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.huffingtonpost.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.speedcurve.com/js/lux.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static4.businessinsider.com/assets/js/track.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||permutive.businessinsider.com/v2.0/internal/metrics$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||permutive.businessinsider.com^* ||analytics.businessinsider.com^* ||horizon.businessinsider.com/horizon/track$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.businessinsider.com/track.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.businessinsider.com/adframe$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.businessinsider.com/service-worker.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.businessinsider.com##.tp-modal:remove() www.businessinsider.com##.tp-active.tp-backdrop:remove() www.businessinsider.com##div[class*="ad-wrapper"]:remove() www.businessinsider.com##div[class*="subnav-ad-"]:remove() www.businessinsider.com##div[class*="ad-label"]:remove() www.businessinsider.com##div[class*="ad-callout-wrapper"]:remove() www.businessinsider.com##div[class*="sticky-rail-ad-container"]:remove() www.businessinsider.com##div[data-type="ad"]:remove() www.businessinsider.com##div[data-adunit]:remove() www.businessinsider.com##aside[class*="has-video-ad"]:remove() www.businessinsider.com##script[data-osano="ANALYTICS"]:remove() www.businessinsider.com##script[id="consent-manager-script"]:remove() www.businessinsider.com##script[id="gtm-config-script"]:remove() www.businessinsider.com##+js(set-constant, setAdblockerCookie, noopFunc) www.businessinsider.com##+js(set-constant, adblocker, false) www.businessinsider.com##div[data-component-type="paywall"]:remove() www.businessinsider.com##div[data-component-type="inline-backup-paywall"]:remove() www.businessinsider.com##div[class="prebid-helper"]:remove() www.businessinsider.com##div[class^="in-post-sticky only-"]:remove() www.businessinsider.com##sticky-footer-ad:remove() www.businessinsider.com##+js(remove-node-text, script, /createMark\(toAdLibrary\);/gm) www.businessinsider.com##+js(remove-node-text, script, /window\.googletag\.pubads\(\)\.[gs]etTargeting/gm) www.businessinsider.com##+js(remove-node-text, script, /window\.__gpp_addFrame\(["']__gppLocator["']\)/gm) www.businessinsider.com##+js(remove-node-text, script, /[a-zA-Z]\.frames\[["']__uspapiLocator["']\]/gm) www.businessinsider.com##+js(remove-node-text, script, /[a-zA-Z]\.ads_data_redaction\s?=/gm) www.businessinsider.com##+js(remove-node-text, script, /window\.initialDataLayer\s?=/gm) www.businessinsider.com##+js(set-constant, window.initialDataLayer, {}) ! TODO: The following three rules prevents images on the page from loading due to the lazy loading script being removed and not loaded. !www.businessinsider.com##+js(remove-node-text, script, /window\.allScripts\.push\(\{/gm) !Uncaught TypeError: can't access property "sampleSpeedcurve", window.Fenrir is undefined !www.businessinsider.com##+js(remove-node-text, script, /window\.Fenrir\s?=\s?\{["']config["']:\s?\{["']ads["']:/gm) !www.businessinsider.com##+js(remove-node-text, script, /window\.Fenrir\.cm\.(us|eu)PrivacyApplies/gm) www.businessinsider.com##img[class="t-gif"]:remove() www.businessinsider.com##iframe[name]:matches-attr(name=/^__\S+Locator$/):remove() ||c.businessinsider.com/t.gif?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.businessinsider.in##div[class*="leaderboard-scrollable-"]:has(div[data-adunit]):remove() www.businessinsider.in##div[class*="mrec-scrollable-"]:has(div[data-adunit]):remove() www.businessinsider.in##div[id^="div-gpt-ad-"]:remove() www.businessinsider.in##span[class="mrec-ads-text"]:remove() www.businessinsider.in##div[data-ad-slot]:remove() www.businessinsider.in##div[data-adunit]:remove() ||api.assertcom.de/pageview$3p,xhr,method=post|options ||toplist.eu/count.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||phys.org/openx/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||guyspeed.com/wp-content/plugins/google-analyticator/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www2.localdirectory.com/banners.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||resource.guim.co.uk/global/survey/foresee/foresee-trigger.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||haymarket-whistleout.s3.amazonaws.com/iTnews_Ad.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||articledigg.com/banners.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||articledigg.com/bn/at_160.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.localivin.com/banners.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nbc.ideascale.com/a/widget/super/campaign/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static.greatappsdownload.com/lp/adbr_adc.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.greatappsdownload.com^* !||dmp.tendatta.com/dmp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dmp.tendatta.com^* !||engine.trklnks.com/Redirect.engine^* !||engine.trklnks.com/link.engine^* ||engine.trklnks.com^* ||entry-stats.huffpost.com^* ||pop.tufapenult.com^* ||s1.softpedia-static.com/images/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cpm.geoadserver.com^* ||ads-pd.nbcuni.com^* ||www.endlessmatches.com/tadv.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.endlessmatches.com/advertise^* !||click.sureonlinefind.com/ads-clicktrack/click/newjump2.do$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||click.sureonlinefind.com/ads-clicktrack/click/newjump1.do$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||click.sureonlinefind.com/ads-clicktrack/resources/js/backcookie.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||click.sureonlinefind.com/ads-clicktrack/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rtbstream.com/click?data=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ts.vindicosuite.com/Tracking/V3/Instream/Impression/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ts.vindicosuite.com/Tracking/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.royale.spongecell.com/api/ad_tags/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||splitter.ndsplitter.com^* ||analytics.spongecell.com^* ||ads.ad-center.com^* ||www.hypable.com/wp-content/plugins/google-analytics-for-wordpress/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fileom.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.mastiya.com/cdn-cgi/pe/bag$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.mastiya.com/cdn-cgi/nexp/abv=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||w2.megarapid.net/script/pop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||megarapid.net/script/pop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pings.conviva.com^* ||lp.ezdownloadpro.info^* !||din1.advmb.es/go.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||din1.advmb.es^* ||widget.breakingburner.com/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||our.glossip.nl/ad2/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s3.amazonaws.com/ownlocal.adforge.production/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.newstogram.com/rmv2/ad_code/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pn2.adserver.yahoo.com^* ||pp-serve.newsinc.com/repub/*/unitsdata.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.bestbuys.com/scripts/jwplayer/jwplayer.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.bestbuys.com/scripts/jwplayer/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||us.battle.net.login.characters.co.vu^* ||test1.sem-tracking-analytics.com^* ||uswfb.adsrvr.org^* ||static.bbci.co.uk/frameworks/istats/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||news.bbcimg.co.uk/js/app/bbccom/0.3.203/advert.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.techcentral.ie/bannercontrol/abmw.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.techcentral.ie/bannercontrol/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.vcdq.com/tag.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||as.ebz.io/api/choixPubJS.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||scripts.chitika.net/getads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads2.opensubtitles.org^* ||www.opensubtitles.org/libs/js/ad_slideout.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ww2.hstpnetwork.com/ads/zeus241.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ww2.hstpnetwork.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.bet365.com/home/logstatus.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.bet365.com/home/logpull.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||85.17.76.150/partner/view/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||api.adlure.biz/partner/view/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.adlure.biz^* ||rocket.adlure.biz^* ||www.subs.to/log/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.subs.to/search/tsc.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads-by.vemba.com^* ||adrotator.se^* !||a.abcnews.com/assets/static/ads/digcsserver.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.abcnews.com/assets/static/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.abcnews.com/assets/js/adCallOverride.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.abcnews.com/assets/js/fw.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lp.sharelive.net^* !||lp.sharelive.net/scripts/lp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||help.ledonford.com/visitor/index.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.lottoelite.com/scripts/track.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||revenuehits.com/demo/topbanner.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||asmassets.mtvnservices.com/asm/*/GW2_FreeTrialConv_15sec_ESRB_*.mp4$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The following rule redirects the video to a null file instead. !||asmassets.mtvnservices.com/asm/*/GW2_FreeTrialConv_15sec_ESRB_*.mp4$media,redirect=noop-1s.mp4 !||onclickads.net/afu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||onclickads.net/fpix.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||onclickads.net^* ||www.trendsonline.mobi/cdn-cgi/pe/bag$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.ocaholic.ch/openx/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.ocaholic.ch/piwik/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mash.network.coull.com/getaffiliatorjs$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.tagjunction.com/admax/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.888media.net/ados.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||media1.break.com/break/js/lamp/pageview.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.ziddu.com/images/wxdfast/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.ziddu.com/get_dnf728.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.ziddu.com/pop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.mp3olimp.net/stats.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.shagaholic.com/aff.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.xdatenow.net/shg/aff.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xdatenow.net/aff/scripts/rd.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||affiliates.upforitnetworks.com/scripts/rd.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adsdelta.com/images/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||assets.greensmoke.com/planet/banner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.bullsmoke.com/idevaffiliate/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||specialoffer.eversmoke.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||affiliates.southbeachsmoke.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||affiliates.eversmoke.com/accounts/default1/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||affiliates.southbeachsmoke.com^* ||affiliates.eversmoke.com^* ||fbcdn-creative-a.akamaihd.net/hads-ak-frc3/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.zeroto.net^* ||48ed4acf13b.se^* !||www.intactdownload.com/download.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.intactdownload.com^* ||stat.skymonk.net^* ||www.hm-analytics.com/Scripts/clickheat-min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||impressions-proxy-1085035873.us-east-1.elb.amazonaws.com^* !||www.downloadlian.com/go/mplayer$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.downloadlian.com^* ||q1mediahydraplatform.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||track.creafi-online-media.com^* ||track.hubrus.com^* !||dp.g.doubleclick.net/apps/domainpark/domainpark.cgi$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dp.g.doubleclick.net^* ||ads.lanistaads.com^* !||ads.stickyadstv.com/user-matching$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.stickyadstv.com^* ||clkmon.com/static/rdr.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.softologicsb.com/download/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.noyapps.com/media/videoperformer/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.noyapps.com###ib-download-popup:remove() www.noyapps.com##.plugleft:remove() !||www.media-save.com/ft/42/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.media-save.com^* ||aad73c550c.se^* ||downote.com/images/468x60_003.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||downote.com/images/ads*.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||widget.plugrush.com^* ||ppctrck.com/lp/adfocus/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d9ae99824.se^* hugefiles.net##.ad-top:remove() !||www.clickandownload.com/download/hugefiles_c.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.clickandownload.com^* !||www.1clickmoviedownloader.net/download/url.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.1clickmoviedownloader.net^* !||api.lanistaads.com/ServeAd$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.lanistaads.com^* !||ad.leadboltmobile.net/show_app_wall$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.leadboltmobile.net^* ||krebsonsecurity.com/a-tr/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||krebsonsecurity.com/b-ver/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||krebsonsecurity.com/b-spi/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css krebsonsecurity.com###top-banner-image:remove() krebsonsecurity.com##.a-img:remove() krebsonsecurity.com###sidebar-box:remove() krebsonsecurity.com##div[class*="themonic-ad"]:remove() ||s.krebsonsecurity.com^* !||cm.npc-suntimes.overture.com^* !||cm.npc-nydn.overture.com^* ||cm.npc-*.overture.com^* ||southtownstar.suntimes.com/csp/cms/sites/STM/assets/js/omniture-integration.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dev.virtualearth.net/webservices/v1/LoggingService/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.nydailynews.com##.yahoo_ads:remove() ||www.nydailynews.com/logger/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||scontent-a-iad.xx.fbcdn.net^* !||nlets.ru/item.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nlets.ru^* ||jmn.jangonetwork.com^* ||playtime.tubemogul.com/ad_promoted_videos/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sanzpont.com/swldo.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||offers.bittorrent.com/w/1.0/afr$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||offers.bittorrent.com^* ||stattracker.meiamso.me^* ||u20295832.letitbit.net/images/download/ins_728_90_1.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||antibotsystem.com/js/mediaplayer.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.managemydownload.com^* ||filestoorageonline.com^* !||t.sellpoints.com/h.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||t.sellpoints.com^* ||m.bestofmedia.com/sfp/images/js/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||m.bestofmedia.com/s/commun/js/adsense.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||m.bestofmedia.com/sfp/images/js/bomSocialTracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.intergi.com^* !||adserver.adtechus.com/adserv/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adserver.adtechus.com^* ||65454.xml.premiumxml.com/xml/click/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||174.139.59.218/in2.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||search.businessesizes.com/go.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||search.businessesizes.com/re.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||search.businessesizes.com/se.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||search.businessesizes.com/of.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||search.businessesizes.com^* ||www.tarakc1.net/hit.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.blog-hits.com/b2.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mediadvo.com/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||greatis.net/esupport/scripts/track.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||stats.pagefair.com/stats/page_view_event/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stats.pagefair.com^* ||pagefair.com/static/adblock_detection/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tampermonkey.net/advent.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.punchtab.com/api/v1/stat/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.ebay.com^* ||electronics-mag.com/servepop.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||motionhits.com/p.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||dlvr.readserver.net/imp.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||dlvr.adne.tv/tag$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dlvr.readserver.net^* ||dlvr.adne.tv^* !||inviteads.adk2.co/inviteads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||inviteads.adk2.co^* ||cdn.mobicow.com/deliver/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||data.express-downloader.com^* ||91.205.157.43/TR/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||bookmyzip.in/v1702/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||sharesuper.info/*/up1/dl.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||sharesuper.info/up1/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sharesuper.info^* ||bookmyzip.in^* ||ad.adlantis.jp^* ||tracking.servebom.com^* ||188.40.210.169/message.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||1.rp-api.com//repost/log_button.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rma-api.gravity.com/v1/beacons/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.buysellads.com/ac/pro.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||event.on24.com/utilApp/MediaMetricServlet$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.dntx.com/trax^* ||www.dntx.com/tr?id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||otnnetwork.net/?epl=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||otnnetwork.net^* ||panel.gwallet.com/network-node/click-servlet$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||161-lic-035.mktoresp.com/webevents/visitWebPage$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.notified-users.com/Authenticated.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.notified-users.com^* ||static1.dmcdn.net/js/gen/stats/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.softingo.com/nlp/sc/media/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||klixfeed.com/filter.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.klixfeed.com/re.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.klixfeed.com/go.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.reduxmediia.com/ac.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.reduxmediia.com/lg.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.reduxmediia.com/pop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.reduxmediia.com/apu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||a.livefreefunwith.me/gc.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.livefreefunwith.me^* !||zilliontoolkitusa.info/v1795/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||zilliontoolkitusa.info/download/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||zilliontoolkitusa.info^* !||ad.71i.de/global_js/AdPlayer/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.71i.de^* !||ad.de.doubleclick.net/N5731/adj/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.de.doubleclick.net/*/adj/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adserver.71i.de/cgi-bin/functions/rogator-kkl2ads.pl$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adserver.71i.de^* !||www.gamestar.de/_misc/tracking/iab.cfm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.gamestar.de/_misc/tracking/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.gamestar.de/js/gamestar/my_ad_integration.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.gamestar.de/img/aktionen/_ad2.cfm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.gametroll.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.wizardarcade.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.gamedestroyer.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.arcadeshoot.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.racinggames360.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||assets04.desk.com/assets/tracking/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||assets04.desk.com/assets/tracking-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||assets04.desk.com/assets/tracking$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bestreviewscom.tumblr.com^* ||*.media.tumblr.com/cedexis/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !poetslovemountains.tumblr.com###nu-optica-sticky-darla-ad-1:remove() ! The following two rules cause tumblr.com pages to sometimes immediately disappear after being rendered. tumblr.com#@#+js(set-constant, googletag, {}) tumblr.com#@#+js(set-constant, window.googletag, {}) tumblr.com###nu-optica-sticky-darla-ad-1:remove() tumblr.com##div[id="adBanner"]:remove() tumblr.com##div[data-testid="adBlockTest"]:remove() tumblr.com##div[id="glass-container"]:remove() tumblr.com##div[class="TopeC"]:remove() tumblr.com##div[class="follow-teaser"]:remove() ! comma used to separate multiple elements in has() tumblr.com##div[style="background: rgb(124, 92, 255); color: rgb(255, 255, 255);"]:has(button[aria-label="Sign me up"], button[aria-label="Log in"]):remove() tumblr.com##div[style="background: rgb(124, 92, 255); color: rgb(255, 255, 255);"]:has(div[class="N4Zk9"] > button[aria-label="Sign me up"]):remove() tumblr.com##div[class="I6Lwl"]:has(p:has-text(We see you are using an ad-blocker.)):remove() tumblr.com##div[class="vVe9A"] > div[class*="options"] > form[action=""][method="post"] >p:has-text(Stop: Classified):upward(3):remove() tumblr.com##div[role="dialog"][class="Lq1wm"]:remove() tumblr.com##body:style(overflow: scroll !important;) tumblr.com##iframe[name]:matches-attr(name=/^__\S+Locator$/):remove() tumblr.com##+js(remove-node-text, script, /"__tcfapiLocator"/gm) tumblr.com##+js(set-constant, window.__tcfapi, noopFunc) tumblr.com##+js(aopr, window.__tcfapi) tumblr.com##+js(aopw, window.__tcfapi) !www.tumblr.com##div[class="So6RQ YSitt"]:has(header[role="banner"]):remove() www.tumblr.com##div[class="So6RQ YSitt"]:has(header[role="banner"], a[href*=".smartadserver.com/click?"]):remove() !www.tumblr.com##a[href^="https://use1.smartadserver.com/click?"]:remove() !www.tumblr.com##a[href^="https://use2.smartadserver.com/click?"]:remove() www.tumblr.com##a[href*=".smartadserver.com/click?"]:remove() www.tumblr.com##article[class="FtjPK r0etU"]:has(a[href="/docs/en/relevantads"]):remove() www.tumblr.com##div[class="IvzMP VC_rY hgN9e smX3m"]:has(div[class="IRHBB"]:has-text(/Join over /)):remove() www.tumblr.com##h1[class="hF8Wr"]:has-text(/Sponsored/):remove() ! The following rule can make the page disappear when scrolling. !www.tumblr.com##div[id="prebid_rightrail"]:remove() www.tumblr.com##script[id="prebid-ads-script"]:remove() www.tumblr.com##script[id="google-ads-script"]:remove() www.tumblr.com##+js(trusted-replace-node-text, script, /["']personalizedAdvertisingGdpr["']:\s?true/gm, "personalizedAdvertisingGdpr": false) www.tumblr.com##+js(trusted-replace-node-text, script, /["']personalizedAdvertisingIos["']:\s?true/gm, "personalizedAdvertisingIos": false) www.tumblr.com##+js(trusted-replace-node-text, script, /["']autoTruncatingPosts["']:\s?true/gm, "autoTruncatingPosts": false) ! TODO: The following two rules prevent the "next" button from working and pages after the first one from being displayed. !www.tumblr.com##+js(trusted-replace-node-text, script, /["']hashedUserId["']:\s?["'][0-9a-f}+["']/gm, "hashedUserId": "") !www.tumblr.com##+js(trusted-replace-node-text, script, /["']id["']:\s?["'][0-9a-f}+["']/gm, "id": "") ! The following rule will prevent automatically returning to the top of the page if not logged in. ! TODO: it also prevents login though. !||assets.tumblr.com/pop/js/modern/peepr-route-3ae3db19.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||px.srvcs.tumblr.com/impixu$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.tumblr.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.tumblr.com/svc/pop/exceptions$xhr,method=post ||www.tumblr.com/svc/cspreports$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.tumblr.com/services/cslog$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tumblr.com/assets/scripts/tumblr/dashboard/showads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||assets.tumblr.com/analytics.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||assets.tumblr.com/assets/scripts/vendor/cedexis/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||assets.tumblr.com/assets/scripts/pre_tumblelog.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||assets.tumblr.com/assets/scripts/tumblelog.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||assets.tumblr.com/javascript/tumblelog.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||assets.tumblr.com/pop/js/modern/error-reporter-*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The following rule blocks an ad script. ||flsrv.net/o.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||flsrv.net/$3p,script,domain=tumblr.com ||de.sitestat.com/idgcom-de/gamestar/s$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||c.pcs.baidu.com/monitor.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||bs.baidu.com/monitor.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||bcscdn.baidu.com/monitor.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||d.pcs.baidu.com/monitor.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ipv6.baidupcs.com/monitor.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pcs.baidu.com/monitor.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||hot.baidupcs.com/monitor.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||nj.cache.baidupcs.com/monitor.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||qd.cache.baidupcs.com/monitor.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||small.cdn.baidupcs.com/monitor.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||hot.cdn.baidupcs.com/monitor.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.baidupcs.com/monitor.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||qd.baidupcs.com/monitor.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.baidupcs.com/monitor.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||bj.baidupcs.com/monitor.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.baidupcs.com/monitor.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.baidu.com/monitor.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gastar.ivwbox.de/cgi-bin/ivw/CP/RC_SPC_GEWIN$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||webstats.perfectworld.com^* ||ad2games.com/k?w=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xanew.com/er?rand=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.leaderpub.fr^* ||leadads.go2jump.org^* ||www.neorelease.com/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adsopx.com/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||browse.feedreader.com/track.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||t.zemanta.com/pageview/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||t.zemanta.com^* ||isohits.com/apu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||va.marketer.lpsnmedia.net^* ||billionuploads.com/images/dnow.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||rtb-ads.avazu.net/ttj^* ||rtb-ads.avazu.net^* ||so.v.ali213.net/plus/MukioPlayerPlus.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.game-advertising-online.com/process/serve-f.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||new.adtools.cn^* ||www.beliefnet.com/Includes/JsBin/jquery.tinycarousel.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.beliefnet.com/Includes/JsBin/superfish.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||174.133.197.186/adcode/mediatarget.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||174.133.197.186/adcode/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||70.87.135.2/serve/*/ad.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||alt.coxnewsweb.com/ajc/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||media.cmgdigital.com/shared/media/*/web/common/javascript/qualtrics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||click.fastdld.com/tracking202/static/record.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fastdld.com/wp-content/themes/gadgetry-parent/images/adv_$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||badpiggiescrack.blogspot.com/b/stats$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||az413505.vo.msecnd.net/scripts/compressed.pop.lib.v2.3.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||server.gamefuse.com/authenticate/saveViewLog.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pointclicktrack.com/click/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pointclicktrack.com/click/offer-load/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nm.newegg.com/viewtracking.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad2games.com^* ||www.lightcentre.com/msg.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pinkypleasure.com/msg.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.gekkiebekkies.be/msg.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ter.nl/msg.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.attijah.com/msg.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.aaniqa.com/msg.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hiltonsoft.com/msg.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tacklen.es/msg.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||asdc-astana.kz/msg.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||jordanhomesmn.com/msg.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||jerzykowo.info/msg.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.portailsdesflandres.com/msg.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ahsubs.zz.mu/msg.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||santechaja.url.ph/msg.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||globalmakes.net/hplp52.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||sco1703afq3504.88point8films.com/bofa/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sco1703afq3504.88point8films.com^* ||e97527f0.se^* ||thewrap.rotator.hadj7.adjuggler.net^* ||tracking.amgct.com^* ||onespot-tracking.herokuapp.com^* ||cdn.abclocal.go.com/static/js/omniture.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.abclocal.go.com/static/js/nielsen_v$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.abclocal.go.com/static/js/ad_detect.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.terezowens.com/images/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.guildwars2.com.support.us-en.login.colembin.roaketma.redway214.co.vu^* !||napi.lanistaads.com/ServeAd$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||napi.lanistaads.com^* ||ocaholic.ch/addelivery/www/images/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ocaholic.ch/addelivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||report.qbaka.net/*/ping$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||report.qbaka.net^* ||sub2.bubblesmedia.ru/gocu/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.cityads.ru/click-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.qbaka.net/reporting.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.mlnadvertising.com^* ||ad.yabuka.com^* ||ads.usps.com^* ||www.bestofmedia.com/ws/communicationSpot.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||m.bestofmedia.com/sfp/sfPortal1280_bd8bf7/js/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||m.bestofmedia.com/sfp/sfPortal1192_64a463/js/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||m.bestofmedia.com/sfp/sfPortal*/js/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.informed.su/Verified.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||g.a135.net/apCKrZrx.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||g.a135.net^* ||utarget.ru/clck/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||utarget.ru/goto/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||turbotraff.net/m/yield_superior.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sub2.bubblesmedia.ru/displaycu/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||turbotraff.net/m/creative*.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||w1.webreseau.com/poplayer/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||w1.webreseau.com/impression.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.thumbs.jizzster.com/videos/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.thumbs.jizzster.com^* ||iacd.adkongjian.com^* !||ads.yahoo.com/cms/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.yahoo.com^* ||login.live.com/images/Trans1x1.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rendezvous.skype.com/loc.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||twimgs.com/csb.techweb.com/cdn/templates/global/js/csb-omniture-min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||afftrack.optimarkets.com^* ||www.binary-theorem.info^* ||adrotate.se^* ||dlp.123mplayer.com^* ||3c45d848d99.se^* !||solutionzip.info/ysrcip/ystriptUNIV6_NEW.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||solutionzip.info^* !||vn98r.us.javadown.org/download-yb$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vn98r.us.javadown.org^* ||us.javadown.org^* ||tracking10.com/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||uploading.com/static/banners/IL_dpp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||uploading.com/static/banners/2buttons_live_300x250.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||muchoads.com/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||usenetl.com/ad_ip.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||forum.bzone.us/mobiquo/smartbanner/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||forum.bzone.us/mobiquo/smartbanner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||motionhits.com/p.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||electronics-mag.com/servepop.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.tarakc1.net/hit.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||motionhits.com^* ||electronics-mag.com^* ||www.tarakc1.net^* ||up.media1fire.com/b/3.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||up.media1fire.com/b/2.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||up.media1fire.com/b/1.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sanshare.com/images/sanshare2.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bright-on-design.co.uk/main.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.kingsera.com^* ||www.adcash.com/script/java.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adcash.com/script/pop_packcpm.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adcash.com/ban/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.adcash.com/ad/display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adcash.com/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||truthaboutonlinesluts.com/ru/us/r.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||downloadbox.me/box.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||auto.push2check.com/p.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||auto.push2check.com^* ||ads.yashi.com^* !||redirect.adservesystem.com/impressionsp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||redirect.adservesystem.com^* ||mediahb.com/ad_visit.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mediahb.com/ad_click.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mediahb.com/ad_js.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mediahb.com/ad_160x600.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mediahb.com/ad_728x90.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.down1oads.com/nlp/j/smb/flvplayer^* ||www.down1oads.com^* ||hugefiles.net/button.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||exclusiverewards.lockpiking.com^* ||048700mz2f3zddl0ca.catanexus.com^* ||p8e8.com^* ||www.formpl.us/form/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.bharatstudent.com/ads_ym.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.ziddu.com/wxdownloadmanager.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||forum-andr.net/mobiquo/smartbanner/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||forum-andr.net/mobiquo/smartbanner/appbanner.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cg.clicksolve.com^* ||cdn-static.liverail.com/js/LiveRail.Interstitial-1.0.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gameninja.com/activeads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||trafit.com/counter/counter.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||trafit.com/counter/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.fsdn.com/con/js/webtracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.stockpair.net/link/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||go.stockpair.com/visit/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||creative.rev2pub.com/matomy/scripts/direct/direct.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||creative.rev2pub.com^* ||static.facetz.net/collect.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||front.facetz.net/collect$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||code.xidx.org/partner.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||share.pluso.ru/process?act=counter$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.downbyte.me/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.linuxinsider.com/images/sda/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.ectnews.com/adsys/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.atdmt.com/ds/NMMRTSMGUDYX/DYX_131004_Flash/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||view.atdmt.com/MRT/iview/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.technewsworld.com/images/sda/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bierwinkeltje.nl/msg.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||creative.m2pub.com/matomy/scripts/popup/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||creative.m2pub.com/matomy/scripts/direct/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||creative.m2pub.com/matomy/scripts/smart/smart.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||creative.m2pub.com/matomy/scripts/smart/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads4pubs.com/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||amazon-zg.s3.amazonaws.com/mp3logger.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||wac.a164.edgecastcdn.net/80A164/adsterra-cdn/files-adsterra/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wac.a164.edgecastcdn.net/*/adsterra-cdn/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||counter.blogbus.com/counter_more.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||counter.blogbus.com^* ||kw.ra.icast.cn^* ||ebookee.org/adsense-content-start-geo.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||afp.csbew.com/m.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||afp.csbew.com/a.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||afp.csbew.com^* !||track.ra.icast.cn/ifocus/red.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||track.ra.icast.cn^* !||stats.townnews.com/shared-content/stats/common/tracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stats.townnews.com^* ||www.columbiabasinherald.com/tncms/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bloximages.chicago2.vip.townnews.com/columbiabasinherald.com/content/tncms/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.espace-plus.net/redir/rotation_redir.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.camsympa.com/?id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css&tracker=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||outils.yesmessenger.com/pdv76.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.yesmessenger.com/generateThumbs.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.yieldmanager.com/st^* ||ssl.gstatic.com/docs/common/cleardot.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hulkload.com/b/2.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hulkload.com/b/3.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hulkload.com/b/4.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hulkload.com/b/8.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||hulkload.com/recommended/7zip2.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hulkload.com/recommended/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fileom.com/img/instadownload2.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fileom.com/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||v2.zopim.com^* !||b1210d22.info/Tag.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||b1210d22.info/Redirect.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||b1210d22.info/a36172f5.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.b1210d22.info/Scripts/MediaScripts/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||b1210d22.info^* ||cdn.b1210d22.info^* ||ads.depositfiles.com^* depositfiles.com###ads_z_frame:remove() !||cdn.file2desktop.com/1831/7Zip.exe$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.file2desktop.com/1831/FacebookChatInstantMessenger.exe$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.file2desktop.com^* !||pixel.rapidshare.com/api/getBCode$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pixel.rapidshare.com^* ||www.collect.mentad.com/visit.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tl.r7ls.net/fl/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tl.r7ls.net^* ||lp.jzip.com^* ||bwozz.watch-for-free.musicevideo.com^* ||trahic.ru^* ||pautina.mobi^* ||advombat.ru/api/fastid$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vroll.net^* ||p3s6k.directadsopt.com^* ||tmserver-2.net^* !||tmserver-2.net/async.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||i2.cnt.my/get_link.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||lead.dailynewsupdates.org/in.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||lead.dailynewsupdates.org/in2.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||search.globalnewsupdates.net/of.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lead.dailynewsupdates.org^* ||search.globalnewsupdates.net^* !||poczta.strefa.pl/www/stats/log/stateria.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||poczta.strefa.pl/www/stats/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||b2b.cbsimg.net/b.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||l.yimg.com/zz/combo?/ss/strip_3.2.js&/os/mit/media/p/att/vendor/foresee/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||responseit-host3.com/msg.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||a.kickass.to/adx.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||a.kickass.to/engine/backdoor.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.kickass.to^* ||us-bottle.net^* ||secure.lawsuit-runescape.com^* ||ophan.guardian.co.uk/redir.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ophan.theguardian.com/t.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ophan.theguardian.com/img/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||i2.putags.com/pu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||i2.putags.com^* !||c4tracking01.com/aff/ep.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c4tracking01.com^* !||pu.plugrush.com/t/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pu.plugrush.com^* !||www.graboid.com/affiliates/accounts/default1/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.graboid.com/affiliates/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||edgecast.cam4s.com/web/js/popAds_$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||3520890.dailydollardash.com^* !||sugarqaunicorn01.sugarops.com/w^action=impression$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sugarqaunicorn01.sugarops.com^* ||www.humipapp.com/download/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d2sj2omw0azr1m.cloudfront.net/blocker.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||track.easeus.com^* ||www.rajakamar.com/images/widget/promo/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.tujuh.co.id/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.globe7.com^* !||find-files.biz/get_file/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||find-files.biz^* ||softlook.ucoz.ru^* !||filedocs.org/logs/great.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||filedocs.org/logs/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||vt-1.nrelate.com/vt/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vt-1.nrelate.com^* !||cdn1.adexprt.com/exo_na/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn1.adexprt.com^* !||cdn2.adexprt.com/exo_na/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn2.adexprt.com^* !||1aed83a4.info/Redirect.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||1aed83a4.info/Tag.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||1aed83a4.info/fastpopunder.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||1aed83a4.info^* ||www.fastdld.com/lp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.fastdld.com/lp/as/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ad.directrev.com/RealMedia/ads/adstream_sx.ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.directrev.com^* !||www.dlh.net/advs/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.dlh.net/advs/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ax-d.pixfuture.net/w/1.0/afr$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ax-d.pixfuture.net^* ||analytics.bloomberg.com^* ||www.businessweek.com/dynamic_frames/ads-v2.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.businessweek.com/foresee/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gawker.com/stats/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||t.univide.com^* ||www.pubdirecte.com/image/auto_promo/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||track.szgla.cn/WebIO/AddWebVisit.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||track.szgla.cn^* !||js.adm.cnzz.net/prebat.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||js.adm.cnzz.net^* !||am1.adm.cnzz.net/stat.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||am1.adm.cnzz.net^* ||css.res.szgla.cn/s/jzapp/Scripts/Action/ActivityCountV2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||media.ze5.com/showface.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mo.ze5.com/toM.jsp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pv.778669.com/ppdisplay.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||u592022.778669.com/prc1.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||u592022.778669.com/p.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||u592022.778669.com/fshow.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.7union.net/iclk/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.sohu7777.com/iclk/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||css.res.szgla.cn/c/JS/WebClick.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||css.res.szgla.cn/c/JS/WebVisit.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lw.q1.com/js/googleAnalytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.click.taobao.com^* ||7c3ad1e1.info^* ||a698f611.info^* ||ad.dmg-mobile.com^* ||s3.rotaban.ru^* ||is.gd/mZfqza$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||is.gd/NARCOTRAIFCANTES$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||is.gd/ZAccyV$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||is.gd/9k6Lh0$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||is.gd/JJ7ta$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||is.gd/kIVGbp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||flagcounter.com/count/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s1.softpedia-static.com/images/afh/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s2.softpedia-static.com/images/aetd/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css 7gomedia.ru/show/i.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||7gomedia.ru/direct/bdk.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||7gomedia.ru/show/bdk.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||7gomedia.ru/show/i.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||7gomedia.ru/show/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||medianaft.com/trafback.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||megogo.net/ru/view/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||megogo.net/s/js/v3/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||megogo.net/s/js/v3/steal/steal.production.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vclicks.net/scripts/track.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||platform.wondershare.com/rest/v2/downloader/track^* ||www.lifescript.com/Services/IntersticialServer.asmx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.lifescript.com/Services/Reporting.svc$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.lifescript.com/JavaScript/Ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.lifescript.com/webtools/AdSources.ashx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.lifescript.com/JavaScript/Tracking/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||is.gd/Timidez123$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||is.gd/tTExIn$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||is.gd/9vOaGz$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||is.gd/xqdgYW$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||is.gd/hUaxRk$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||services.bunndle.com/ProductServices/FetchAgent$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||services.bunndle.com^* !||tracking.fccinteractive.com/user_tracking/user_tracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tracking.fccinteractive.com/tracking/article/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tracking.fccinteractive.com^* !||widgets.fccinteractive.com/marketplaceV2/mktad/js/mktad.videoOverlay.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||widgets.fccinteractive.com/marketplaceV2/mktad/mktad.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||widgets.fccinteractive.com/marketplaceV2/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.dualshockers.com/wp-content/themes/dualshockers2/ds_ad.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.gotraffic.net/q/v/20131108_163411/javascripts/q_reskin-min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.gotraffic.net/vendor/foresee_v_1/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.gotraffic.net^* !||location.bloomberg.com/query/jsonp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||location.bloomberg.com^* ||www.bloomberg.com/bcom/article/iframe/google-adwords$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.gameinformer.com/js/site_catalyst.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rotator.trafficbee.com^* ||tracking.bloomberg.com^* ||cdn.webglstats.com^* ||006.free-counters.co.uk^* !||www.amoninst.com/download.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.amoninst.com^* ||d.ebz.io^* !||stat.ebuzzing.com/stats/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stat.ebuzzing.com^* ||api.ebuzzing.com/partners/1.0/getHasAdSelector$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.ebuzzing.com/api/ebz-distribution.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||looksmile.ru/js/stat.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn3.kovla.com/static/js/popunder2.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||u.pub-fit.com^* ||schema.org/WPAdBlock$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||creative.xtendmedia.com/proxy/matomymediaproxy.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||creative.xtendmedia.com^* !||www.inetinteractive.com/ads/output.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.inetinteractive.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.sevenforums.com/abp/adblock_detector.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||social.technet.microsoft.com/wiki/analytics.ashx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||windowssecrets.com/shared/js/ga_social_tracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||installer.betterinstaller.com/get_cl_installer_url$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||logic.bijscode.com/dl$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||track.cmllk2.info^* ||ncrypt.in/layer.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||t.go-for-files.com^* ||zhidao.baidu.com/s/toutu/promotion.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.persianstat.com/service/stat.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pushtraffic.net/TDS/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||letitbit.net/js/draw_stat.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tag.remnantize.com/tags/HenchFilecom/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tag.remnantize.com^* !||www.ft-download.com/temporary/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.ft-download.com^* !||www.torntv-tvv.org/temporary/Cabelas.African.Adventures.Green.exe ||www.torntv-tvv.org/temporary/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||dl.downf468.com/n/3.0.26/11930758/File_installer.exe ||dl.downf468.com^* !||money.v2cigs.com/idevaffiliate.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||money.v2cigs.com^* ||www.sillylikes.com/counter.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||app.videostat.com/v2/bin/youtube.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||app.videostat.com/v2/bin/common.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||app.videostat.com/v2/wscript.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||app.videostat.com/v2/iframe.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||app.videostat.com/v2/iframe.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||app.videostat.com/v3/iframe?publisher_id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||app.videostat.com/v3/iframe$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||3ccc7f90.info/Tag.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||3ccc7f90.info/9298d41d.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.3ccc7f90.info/Scripts/MediaScripts/p.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||3ccc7f90.info^* ||cdn.3ccc7f90.info^* ||keep2share.cc/ext/evercookie/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nx.redhelper.ru/nx/presence/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.humipapp.com/tinydownload/gts/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.humipapp.com/tiny/gts/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.zilliontoolkitusa.info/v887/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.zilliontoolkitusa.info^* !||dtym7iokkjlif.cloudfront.net/dough/1.0/shareaholic-analytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.cloudfront.net/dough/1.0/shareaholic-analytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.ayads.co^* ||log.sitemeter.com^* ||scenelog.eu/cdn-cgi/l/chk_jschl$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.directrev.com/js/gb.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.directrev.com/js/gp.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gamejolt.com/adserver/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gamejolt.com/mint/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adforce.ru/code/banner1.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adforce.ru/code/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||alltereg0.ru/code/bshow.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gameninja.com/1active/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.yengo.com/show.cgi$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.yengo.com/th/show.cgi$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.bumq.com^* ||adsbybumq-inter.bumq.com^* !||tracker.bumq.com/ad_tracker.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tracker.bumq.com^* ||show2.bumq.com/ad_show3.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.mypagerank.net/services/mblv/mblv.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.gbotvisit.com/services/gblv/gblv.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.scriptme.info/services/gblv/gblv.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.ybotvisit.com/services/yblv/dyblv.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.statisticbrain.com/b_grav.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.statisticbrain.com/wp-content/plugins/simple-ads-manager/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||buffalo-bill.nl/message/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ini-europe.com/media/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||excipientfest.com/media/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||papironi.com/archive/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.techpowerup.com##div[class="no-ad-found"]:remove() www.techpowerup.com##+js(remove-node-text, script, /window\._paq\s?=/gm) www.techpowerup.com##div[br-cls=""][class="s--item"]:has(img[src^="/reviyuu/b784/"]):remove() www.techpowerup.com##div[class="oiltrgr"]:has(img[src^="/reviyuu/b784/"]):remove() www.techpowerup.com##div[class="miukmzun"]:has(a[href^="/reviyuu/b784/"]):remove() www.techpowerup.com##div[btr-cls=""]:has(a[href^="/reviyuu/b784/"]):remove() www.techpowerup.com##div[class="v-port"] > div:has(a[class="gbreb"][href^="/reviyuu/b784/"]):remove() ||img.techpowerup.com/images/bnnrs/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.techpowerup.com/reviyuu/b784/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! TODO: The following rule blocks more than just ad images on techpowerup.com !||tpucdn.com/images/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tiads.timeinc.net/ads/tii_bk-coretag.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tiads.people.com/ads/tgx.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tiads.timeinc.net^* ||tiads.people.com^* !||img.timeinc.net/tii/omniture/h/common.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||img.timeinc.net/tii/omniture/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||collect.rewardstyle.com^* ||www.walmart.com/px/*/xhr/b/s/beacon$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.walmart.com/px/PXu6b0qd2S/xhr/api/v2/collector$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.walmart.com/px/*/xhr/api/v2/collector$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||grocery.walmart.com/grocery-electrode/api/logger$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.walmart.com/topic/api/logger$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||i2.walmartimages.com/webanalytics/omniture/s_code.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||i2.walmartimages.com/webanalytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||i5.walmartimages.com/beacon/beacon.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||beacon.grocery.walmart.com^* ||beacon.walmart.com^* ||beacon.lightest.walmart.com^* ||beacon.stage.walmart.com^* ||csp.walmart.com^* ||omniture.walmart.com^* ||rfxwalmart.112.2o7.net^* ||tracking.walmart.com^* ||walmart.112.2o7.net^* ||walmartcom.112.2o7.net^* !||rptrcks.walmart.com^* !||b.www.walmart.com/rum.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||b.www.walmart.com/rum.js?bh=beacon.lightest.walmart.com$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css /^https?:\/\/b\.www\.walmart\.com\/rum\.(?:js|gif)/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||account.guildwars2.com.ickyby.tedady.brogvan.deathbys.co.vu^* ||tredir.go.com/capmon/GetDE$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.sepn.com/js/detectABP.js?adType=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||scenelog.org/analytics/piwik.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||scenelog.org/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||analytics.bluekai.com^* ||oascentral.123greetings.com^* ||www.crakmedia.com/js/punderad.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.visions3x.com/mailCatcher.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||crakpass.com/script/Crakpass.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lp.downloadquick.net^* ||29bca6cb72a665c8.se^* ||www.mysoftvault.com^* ||www.kv.de/impressum.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.untrackd.com/libs/analytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||carnage.spider.ad/spider3.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||carnage.spider.ad/generateCookie.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||carnage.spider.ad^* ||ro2.biz/popup.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||banners.coolmirage.com^* ||extra33.com/apu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn4.spider.ad/img/sidebanner_sprites_new1.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn4.spider.ad/js/spider_ad_jquery.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn4.spider.ad^* !||impr.adsafiliados.com.br/impressao/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||impr.adsafiliados.com.br^* !||adsafiliados.com.br/analytics_1.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adsafiliados.com.br/anuncio/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.adsafiliados.com.br^* ||painel.adsafiliados.com.br^* !||et.nytimes.com/pixel$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||et.nytimes.com^* !||graphics8.nytimes.com/bi/js/analytics/EventTracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||graphics8.nytimes.com/bi/js/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||graphics8.nytimes.com/ads/marketing/mm09/verticalst/verticals_arts.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||graphics8.nytimes.com/ads/marketing/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||graphics8.nytimes.com/js/adx/googleads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||graphics8.nytimes.com/js/adx/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||graphics8.nytimes.com/js/app/analytics/trackingTags_v1.1.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||graphics8.nytimes.com/js/app/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||graphics8.nytimes.com/ads/blank.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||advert.uloz.to^* ||gameguardian.net/forum/kangelo/smartbanner/appbanner.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.ventivmedia.com^* ||ads.trkclk.net^* ||www.sharebeast.com/sharebeast_downloader.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sharebeast.com/topbar.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.sharebeast.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lizads.com/tags/sharebeast.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.sharebeast.com/serve/serve.js8$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.fastdld.com/lp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.fastdld.com^* ||www.sq2trk2.com/click.track$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cytoclause.com/Redirect.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cytoclause.com/Tag.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cytoclause.com/uts.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cytoclause.com/fastpopunder.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cytoclause.com^* !||server20.getmideast.com/men.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||server31.getmideast.com/men.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||server*.getmideast.com/men.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||smaato-ads.s3.amazonaws.com^* !||server20.getmideast.com/java.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||server*.getmideast.com/java.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ct1.dsr.livefyre.com/v3.1/collection/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ct*.dsr.livefyre.com/v3.1/collection/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||col.stj.s-msn.com/br/sc/js/51/anatm.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||k2s.cc/ext/evercookie/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.zenaps.com/pvr.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.awin1.com/cshow.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||awin1.com/appshow.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.affiliatewindow.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||getsoftfree.com^* !||files.getsoftfree.com/get/click/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||files.getsoftfree.com^* !||static.getclicky.com/js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.getclicky.com^* ||in.getclicky.com^* ||popupviet.com^* ||ads1.qadabra.com^* ||noticias7web.com/a.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adsafiliados.com.br/analytics_1.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adsafiliados.com.br/anuncio/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||popup.smusic.ir^* ||d3anogn3pbtk4v.cloudfront.net/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d2bgg7rjywcwsy.cloudfront.net/creatives/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mead-production.s3.amazonaws.com/advertiser_creative/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||web02.adfalcon.com:808/BN/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||web02.adfalcon.com^* ||adsrv.admanic.com^* !||oxn.gerkon.eu/www/images/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||oxn.gerkon.eu^* ||optimized-by.simply.com^* ||www.great-appdownloads.com^* ||cs.clickigniter.io/__req.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||aussiehotties.com/whatpop2.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||iamjahjah.com/whatpop2.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.iamjahjah.com/whatpop2.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||backplane1.janrainbackplane.com/identity-services.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||redsocial.diosesbueno.com/page/do-not-give-up$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||redsocial.diosesbueno.com/page/mensaje-de-amo$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||redsocial.diosesbueno.com/page/red-social-divertida$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||redsocial.diosesbueno.com/page/christian-content-by-handsomest-writer$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||redsocial.diosesbueno.com/page/best-gadgets-page$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||redsocial.diosesbueno.com/page/iglesias-de-la-calle$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||redsocial.diosesbueno.com/page/orando-por-gente$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||redsocial.diosesbueno.com^* ||tr.rttrckr.com^* ||analytics.brightedge.com^* ||www.vmware.com/files/include/vmf/module/core/js/log.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.vmware.com/files/templates/inc/tracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.vladan.fr/wp-content/mbp-banner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||css.anime-sharing.info/clientscript/symphony/click-counter/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.gameupdates.org###cpa_rotator_block_108_0:remove() ||www.downlist.eu/showad.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.tinydl.com/cdn-cgi/ping$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.torrentfunk.com/cdn-cgi/pe/bag2$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||coinurl.com/get.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.sharfiles.com^* !||zone29.hotwords.com.br/imp2barrainferior.jsp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||zone26.hotwords.com.br/imp2barrainferior.jsp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||zone*.hotwords.com.br/imp2barrainferior.jsp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||zone29.hotwords.com.br/scriptbarrainferior.jsp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||zone*.hotwords.com.br/scriptbarrainferior.jsp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s16.cpmaffiliation.com/ban_300x600.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s16.cpmaffiliation.com^* !||zone29.hotwords.com.br/scriptsello.jsp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||zone26.hotwords.com.br/scriptsello.jsp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||zone*.hotwords.com.br/scriptsello.jsp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ban.cpmaffiliation.com^* ||zone29.hotwords.com.br/richmedia.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css adv.li###banner:remove() ||scribe.livefyre.com/listener/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.mirrorupload.net/js/ads.ad6media.fr.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.mirrorupload.net/*/js/ads.ad6media.fr.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||instantpaydaynetwork.com/splash1.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||instantpaydaynetwork.com^* ||www.v2cigs.com/8975.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css openfeint.openfeint.openfeint.ibsdl.apk.iandphone.net###NPV219:remove() openfeint.openfeint.openfeint.ibsdl.apk.iandphone.net###fb813:remove() ||adsearcher.ru^* ||www.apkrim.com/img/banner.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.ahok.biz/xmlrpc.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adv.blogupp.com^* ||cloud.cashtrafic.info/ban/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stream1.gamespot.fyre.co/v3.1/collection/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ads42257.hotwords.com/show.jsp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads*.hotwords.com/show.jsp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hscripts.com/images/buildmylink-ad.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nexus.ensighten.com/error/e.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||i.answers.microsoft.com/static/js/logging.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||support.microsoft.com/common/surveyscripthandler.ashx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||answers.microsoft.com/en-us/pagestatistics/addthreadviewcount$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||i2.technet.microsoft.com/Areas/Sto/Content/Scripts/omni_rsid.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.mediafiles.com/log/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.allsoftdll.com^* !||ttb.thesoftdll.com/download/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ttb.thesoftdll.com^* !||dl5.vib4installer.com/download/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dl5.vib4installer.com^* !||1-vinstaller.com/api/download$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||1-vinstaller.com^* ||www.cmltrk2.com/downloadprem.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.g2a.com/js/affiliate.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tny.cz/pop/jspopunder.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.lpcloudsvr302.com^* ||dlp.cloudsvr322.com^* ||ad.evozi.com^* ||js.bizographics.com/insight.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.depositfiles.com/dfdownloader_*.exe$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||analytics1.sortable.com^* !||m12n.servebom.com/m12n/2/m12n$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||m12n.servebom.com^* !||static.m12n.servebom.com/m12n/m12n_srv_thus.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.m12n.servebom.com^* ||prosperent.com/affiliate/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||prosperent.com/targeting/script$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||prosperent.com/js/ad.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||imagec10.247realmedia.com/RealMedia/ads/Creatives/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||beacon.tracelytics.com^* ||j.theadsnet.com^* ||l.go-for-files.com^* ||msn.foxsports.com/content/campaigns/buzzer/articleInline/ros*x$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||msn.foxsports.com/content/fsdigital/fscom/buzzer/story/jcr:content/articleContent/artcileInlineAdParsys/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||msn.foxsports.com/content/campaigns/buzzer/below-navigation/ros*x$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||msn.foxsports.com/content/fsdigital/fscom/buzzer/jcr:content/adplaceholderBelowNavigation/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||msn.foxsports.com/content/campaigns/buzzer/column-b-middle-andbuzzer/ros*x$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||msn.foxsports.com/content/fsdigital/fscom/buzzer/jcr:content/newsMiddleAdParsys/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||a.sitemeter.com/analytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.sitemeter.com^* !||s50.sitemeter.com/js/counter.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s50.sitemeter.com/js/counter.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s*.sitemeter.com/js/counter.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s*.sitemeter.com/js/counter.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||js.adm.cnzz.net/js/abase.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tampermonkey.net/bner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||native.sharethrough.com/assets/beacon_tunnel$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||native.sharethrough.com/assets/tag.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||apex.gamespot.com/aws/rest/v2.0/apexTarget$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cn.cbsimg.net/cnwk.1d/Aud/javascript/gamespot/apex.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cn.cbsimg.net/cnwk.1d/Aud/javascript/zdnet/apex.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cn.cbsimg.net/cnwk.1d/Aud/javascript/*/apex.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pixel.everesttech.net/1/gr?url=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pixel.everesttech.net^* glo.msn.com##.ad:remove() glo.msn.com##.ad-LREC:remove() glo.msn.com##.adId:remove() ||geobanner.friendfinder.com^* ||rose.ixbt.com/cgi-bin/r.cgi$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||1.rp-api.com/repost/log_button.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||videos.rawstory.com/embed/player/modules/ad.mason$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ds-cc.serving-sys.com/BurstingCachedScripts//Ad_2_12_2_0/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ds-cc.serving-sys.com/BurstingRes/CustomScripts/OAD_disableECT.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ds-cc.serving-sys.com^* ||s.zol-img.com.cn/bms/js/cbsi_stat.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.zol-img.com.cn/bms/js/stat.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||stat.cbsi.com.cn/rs/bms_tag.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stat.cbsi.com.cn^* ||www.hao123.com/images/track.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||js-1.pchome.net/stat/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||stat.xgo.com.cn/cgrs.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stat.xgo.com.cn^* ||s0.hao123img.com/res/js/track.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stat.zol.com.cn^* ||zdw.w8.com.cn/p.ht$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ssl.luckyorange.com/json.ping.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||prod.rumanalytics.com/sampler/sample?auth_token=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||prod.rumanalytics.com^* ||www.wikihow.com/Special:BounceTimeLogger$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.clickigniter.io/ci.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.dpmsrv.com^* ||ssl.safaribooksonline.com/files/pixel.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.sharpfile.com^* ||rsnvlbgcba.ibiz.cc^* ||fukbb.com^* ||www.maximumpc.com/sites/all/modules/google_analytics_event_tracking/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.maximumpc.com/sites/all/modules/nielsen_geotarget/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.maximumpc.com/sites/all/modules/future_comscore/js/sitestat.js?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||1cc72296.info^* ||www-runescape.com-log.in^* ||l.yimg.com/zz/combo?/os/mit/media/m/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||l.yimg.com/zz/combo?/os/mit/media/m/base/tracking-min-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||finance.yahoo.com/_td_api/beacon/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||log.outbrain.com/loggerServices/fallBackEvent$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||log.outbrain.com^* ||sj.wsj.net/blogs/js/wsj_blogs_omniture.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||aivu41.defyhope.com^* ||stream1.newyorker.fyre.co/v3.1/collection/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s120.turbobit.ru/pics/new_muzebra_eng.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.turbobit.ru/pics/new_muzebra_eng.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cityads.ru/res/js/promo/comp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stream1.cnet.fyre.co/v3.1/collection/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||i.i.cbsi.com/cnwk.1d/Aud/javascript/cnet/apex.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||media.boingboing.net/wp-content/themes/2012/ads/ad_google_rect.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||media.boingboing.net/wp-content/themes/2012/ads/ad_t-shirts.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||media.boingboing.net/wp-content/themes/2012/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||media.boingboing.net/wp-content/themes/2012/ad_squares.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||boingboing.net/wp-content/themes/2012/ads/ad_leaderboard.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||boingboing.net/wp-content/themes/2012/ads/ad_skyscraper.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||boingboing.net/wp-content/themes/2012/ads/ad_squares.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||boingboing.net/wp-content/themes/2012/ads/ad_300.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css boingboing.net###ad_squares_frame:remove() boingboing.net###ds_content_frame_parent:remove() boingboing.net###ds_cpp:remove() boingboing.net###ds_player_container:remove() boingboing.net##.ad:remove() boingboing.net##div[class*="dtads-"]:remove() boingboing.net##div[class="ds_sponsorbox"]:remove() boingboing.net##div[class^="ad ad300"]:remove() boingboing.net##div[class*="stickyAdBlock"]:remove() boingboing.net##div[class*="ad_unit"]:remove() boingboing.net##div[class*="ad-unit"]:remove() boingboing.net##div[class*="text-ad"]:remove() boingboing.net##div[class*="text_ad"]:remove() boingboing.net##div[data-freestar-ad]:remove() boingboing.net##div[id="boing-512091316"]:remove() boingboing.net##div[id^="FreeStarVideoAd"]:remove() boingboing.net##div[id*="pmAdTag"]:remove() boingboing.net##div[id="ds_ad_container"]:remove() boingboing.net##div[id^="boing-"]:has(sellwild):remove() boingboing.net##div[id^="dtads-"]:remove() boingboing.net##sellwild:remove() ! Only the following rule needs to be used to set the width and height of the iframe containing the embedded Youtube video. boingboing.net##figure[class*="wp-block-embed-youtube"]:style(padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 99vw !important; max-height: 99vh !important; width: 99vw !important; height: 99vh !important; user-select: all !important; pointer-events: all !important;) !boingboing.net##div[class="wp-block-embed__wrapper"]:style(padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 99vw !important; max-height: 99vh !important; width: 99vw !important; height: 99vh !important; user-select: all !important; pointer-events: all !important;) !boingboing.net##span[class="embed-youtube"]:style(padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 99vw !important; max-height: 99vh !important; width: 99vw !important; height: 99vh !important; user-select: all !important; pointer-events: all !important;) ! The following rule renders the video itself at 99vw and 99vh, but the iframe containing it is still constrained to its parent container. !boingboing.net##iframe[class="youtube-player"]:style(left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; overflow:auto !important; user-select: all !important; pointer-events: all !important;) boingboing.net##+js(trusted-set-attr, iframe[class="youtube-player"], width, 100%) boingboing.net##+js(trusted-set-attr, iframe[class="youtube-player"], height, 100%) boingboing.net##+js(trusted-set-attr, iframe[class="youtube-player"], webkitallowfullscreen, true) boingboing.net##+js(trusted-set-attr, iframe[class="youtube-player"], mozallowfullscreen, true) boingboing.net##+js(trusted-set-attr, iframe[class="youtube-player"], scrolling, no) !boingboing.net##+js(trusted-set-attr, iframe[class="youtube-player"], scrolling, true) boingboing.net##+js(trusted-set-attr, iframe[class="youtube-player"], frameborder, 0) boingboing.net##+js(trusted-set-attr, iframe[class="youtube-player"], marginwidth, 0) boingboing.net##+js(trusted-set-attr, iframe[class="youtube-player"], marginheight, 0) boingboing.net##+js(trusted-set-attr, iframe[class="youtube-player"], seamless, seamless) boingboing.net##+js(trusted-set-attr, iframe[class="youtube-player"], autoplay, yes) !boingboing.net##+js(trusted-set-attr, iframe[class="youtube-player"], referrerpolicy, origin) boingboing.net##+js(trusted-set-attr, iframe[class="youtube-player"], referrerpolicy, unsafe-url) boingboing.net##+js(trusted-set-attr, iframe[class="youtube-player"], allowtransparency, true) boingboing.net##+js(trusted-set-attr, iframe[id^="iframe_streaming_"], allow, picture-in-picture; autoplay; fullscreen; encrypted-media; clipboard-write; accelerometer; gyroscope; web-share;) boingboing.net##+js(trusted-set-attr, iframe[class="youtube-player"], oallowfullscreen, true) boingboing.net##+js(trusted-set-attr, iframe[class="youtube-player"], msallowfullscreen, true) !boingboing.net##+js(trusted-set-attr, iframe[class="youtube-player"], loading, eager) ! TODO: Setting the sandbox attribute may break the video player. !boingboing.net##+js(trusted-set-attr, iframe[class="youtube-player"], sandbox, allow-pointer-lock; allow-top-navigation; allowTransparency; allow-modals; allow-scripts; allow-same-origin; allow-popups; allow-popups-to-escape-sandbox; allow-storage-access-by-user-activation; allow-forms) ! The value in the following rule is already set by the web page. boingboing.net##+js(trusted-set-attr, iframe[class="youtube-player"], allowfullscreen, true) ! TODO: This does not prevent the scripts from loading as they appear to be removed after the page is processed. boingboing.net##script[id^="advanced-ads-"]:remove() boingboing.net##script[id^="google_gtagjs-js"]:remove() boingboing.net##script[id="boing-ready"]:remove() boingboing.net##script[id^="jetpack-stats-"]:remove() boingboing.net##script[id="bidstream-lite-script"]:remove() boingboing.net##+js(set-constant, advanced_ads_check_adblocker, noopFunc) !boingboing.net##+js(set-constant, window.advanced_ads_check_adblocker, noopFunc) boingboing.net##+js(set-constant, window.advanced_ads_ready, noopFunc) boingboing.net##+js(set-constant, advadsCfpQueue, []) boingboing.net##+js(set-constant, advadsCfpAd, noopFunc) boingboing.net##+js(set-constant, _comscore, []) boingboing.net##+js(set-constant, _stq, []) boingboing.net##+js(set-constant, window.advads_admin_bar_items, []) boingboing.net##+js(set-constant, advanced_ads_ga_UID, "") boingboing.net##+js(set-constant, freestar, {}) boingboing.net##+js(set-constant, _hbopts, {}) boingboing.net##+js(set-constant, _hbwrap, []) boingboing.net##+js(set-constant, hbldr, noopFunc) boingboing.net##+js(aopr, advadsCfpAd) boingboing.net##+js(aopw, advadsCfpAd) boingboing.net##+js(aopr, window.advads_admin_bar_items) boingboing.net##+js(aopw, window.advads_admin_bar_items) boingboing.net##+js(aopr, window.advanced_ads_ready_queue) boingboing.net##+js(aopw, window.advanced_ads_ready_queue) boingboing.net##+js(aopr, _qevents) boingboing.net##+js(aopw, _qevents) ||boingboing.net/wp-content/plugins/advanced-ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.sofanti.com/lp/codecperformer/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.sofanti.com^* !||www.humipapp.com/download/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.humipapp.com^* ||iad-login.dotomi.com/commonid/match?rurl=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||brxcdn3.btrll.com/54888/CTCT_Yoga_Spot-standard.flv$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||brxcdn3.btrll.com^* ||adfarm.mediaplex.com/ad/tr/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||softingo.com/clp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||softingo.com^* ||www.adworkmedia.com/creatives/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adworkmedia.com/image.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pixxur.com/GETBANNERS.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adworkmedia.com/js/bannerRotator.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||download.mediafilesdownload.com/adviframe/query4.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||download.mediafilesdownload.com^* ||www.adworkmedia.com/bLoader.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pixxur.com/rotator.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.filesfrog.net/images/download-now.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||99287725.r.cdn77.net/installers/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||99287725.r.cdn77.net^* !||logic.bijscode.com/dl?source_slug=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||logic.bijscode.com^* ||www.filebulldog.com^* ||cdn.bisrv.com/sponsored/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||download.filesfrog.com/software_files/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||download.filesfrog.com^* www.filesfrog.net###sponsor1:remove() www.filesfrog.net###sponsor2:remove() www.filesfrog.net###sponsor3:remove() !||go.pub2srv.com/apu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||go.pub2srv.com^* !||ads1.msn.com/library/dap.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads1.msn.com^* ||www.hardwareheaven.com/mobiquo/smartbanner/appbanner.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adspserving.com^* ||search.vertoz.com^* ||47848.542.filter.danarimedia.com/iframe$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||47848.542.filter.danarimedia.com/ncp/checkBrowser$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||nami.t.domdex.com/search.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nami.t.domdex.com^* ||www.hotpopups.com/popup.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.klixfeed.com/filter.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||peace-cultures.com/request/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||peace-cultures.com^* ||money-online-today.net^* ||www.releaselog.net/uploads2/045a5f26d8bf7b1d16a4c33c43dbf54d.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xch.usualmedia.com/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||usadserver.com/p/d/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||g.admedia.com/banner.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||g.admedia.com^* ||hstpnetwork.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||horizon.voxxi.com/horizon/track$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||prod-services.interactiveone.com/geoip/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stats.jusybes.pw^* ||www.wadegarner.com/allmail/admin.login.main.chi/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||szczottie.pl/request/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||return.uk.domainnamesales.com/return_js.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||return.uk.domainnamesales.com^* ||banner.techarp.com^* !||www.informed.su/Verified.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.informed.su/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||services-runescape.com-login.ws^* ||async-lb-2129785755.us-east-1.elb.amazonaws.com/admantx/service?request=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||swf.mixpo.com/img/blank.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||player1.mixpo.com/player/companion-impression$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||swf.mixpo.com/media/DG/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mosaic5.com/wp-content/plugins/ads-geo-location/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.gamespot.com/js/compiled/adsDeferredDart.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.gamespot.com/js/compiled/tracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tracesearchingbook.com^* ||a.ad-sys.com^* ||www.adpeepshosted.com/adpeeps.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||a.adfornet.com/c/banner_s$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.adfornet.com^* ||www.worldwidemusicexpo.com/poppers.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.creative-serving.com^* ||adcode.rontar.com^* !||s290.meetrics.net^* ||s*.meetrics.net^* ||d8rk54i4mohrb.cloudfront.net/js/reach.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||az351254.vo.msecnd.net/3-0-509/assets/javascript/tracking/systems/tracking.cosmos.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||az351254.vo.msecnd.net/3-0-509/assets/javascript/tracking-iframe-js.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||az351254.vo.msecnd.net/3-0-509/assets/javascript/tracking$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||skypewebexperience.live.com/content/3-0-509/tracking-iframe.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hothardware.com/cs/utility/anonymous.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s.atemda.com/script/TextAds.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s.atemda.com/Admeta.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.atemda.com^* ||lib.onet.pl/s.csr/Admeta/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||atemda.com/JSAdservingMP.ashx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css abclocal.go.com##.fwAdTags:remove() !||m.csr.onet.pl/apps/367/Ad10087279St3Sz529Sq105575441V0Id1/300x600GMFv2.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||m.csr.onet.pl^* !||s.csr.onet.pl/cookieInfo/_s/css/main.css?v=4$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.csr.onet.pl^* !||fng-ads.fox.com/video/campaigns/foxsports/nestle/nebu4024000h_id-132642371766_896000.mp4$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The following rule redirects the video to a null file instead. !||fng-ads.fox.com/video/campaigns/*.mp4$media,redirect=noop-1s.mp4 ||fng-ads.fox.com^* ||fsgonetworklogos.edgesuite.net/adids.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||players.edgesuite.net/flash/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pclab.pl/partners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||allofnexstar.com.analytics.inergizedigital.com/common/pagereporting/nettracker/ntpagetag.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||arkansasmatters.com.analytics.inergizedigital.com/common/pagereporting/nettracker/ntpagetag.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||allofnexstar.com.analytics.inergizedigital.com^* ||arkansasmatters.com.analytics.inergizedigital.com^* ||adobe.com.flashplayer.s3-website-us-east-1.amazonaws.com^* ||deoskh3tljsv6.cloudfront.net/js/betterInstaller_generic_cli.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||deoskh3tljsv6.cloudfront.net/js/betterInstaller_generic_dl.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||m.r30h.com/click.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||m.r30h.com^* ||0c9d8370d.se^* ||cldlr.com^* !||ttb.latestsoftpro.com/download/request/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ttb.latestsoftpro.com^* ||fileom.com/img/downloadnow.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.techdirt.com##.adsbygoogle:remove() !||discovery-pubnet.telemetryaudit.com/ts/*/pse1/blank.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||discovery-pubnet.telemetryaudit.com^* !||t.hulu.com/beacon/* <- blocks Hulu !||t.hulu.com^* !||ads-v-darwin.hulu.com/published/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads-v-darwin.hulu.com^* ||ads-a-darwin.hulu.com^* libreprensa.com##.ads:remove() ||www.yourpcbundle.com^* ||vtgtrk.com^* !||c.zeroredirect2.com/zcredirect$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||c.zeroredirect1.com/zcvisitor/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c.zeroredirect1.com^* !||www.barclayus.com/jr.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.barclayus.com^* ||stats.firedrive.com^* ||fhbmgwswa1rbq.firedrive.com/file/show_ads$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||2f01110e.info^* ||www.chromeadserver.com^* ||www.tcpiputils.com/images/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.turnto.com/webEvent/s.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.insecurewire.com/download/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.insecurewire.com^* ||c.statcounter.com^* ||www.secureupload.eu/gfx/SecureUpload_Banner.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.delish.com/ams/page-ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mp.link-smart.com/page/view$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.gratisjuegos.org/wp-content/plugins/wp-followme/flash/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fileoogle.com^* ||dl.downloadahsaequouzet.com^* ||www.fudzilla.com/openx/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||stats.safelinking.net/piwik.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stats.safelinking.net^* ||web.archive.org/static/js/analytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.dvdinfopro.com/ftp/dvdinfopropk7.txt$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.supreme-business-development.com^* ||palocalworld.info/afu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adsupplyads.com^* !||riverbanksand.com/fastpopunder.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||riverbanksand.com/Redirect.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||riverbanksand.com^* !||th-cdn.effectivemeasure.net/em.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||th-cdn.effectivemeasure.net^* ||ads.thaiware.com^* ||thaiware.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hits.truehits.in.th/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||player.vimeo.com/v2/log/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||chatterfashion.com/cache/nxp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dlforall.net^* !||ya-znayu.info/interactive2/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ya-znayu.info^* ||dl-gate.net^* !||tg.grt02.org/getcode.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tg.grt02.org^* ||trafmag.com/sitecode-02769-5012.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.transdownload.com/download.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.transdownload.com^* ||www.88torrent.com/p/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.heraldnet.com/jQuery/jQuery-DnDScrollerBusinessAds/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adreadytractions.com/rt/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||horizon.youbeauty.com/horizon/track$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||js.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/JS_static/components/beacon.aiq.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||img.webmd.com/pixel/aiq.a.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||edgecdn.cinesport.com/v2/javascripts/csprt_ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.engine.pgmediaserve.com/Scripts/MediaScripts/p.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.engine.pgmediaserve.com/Scripts/infinity.js.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.engine.pgmediaserve.com^* !||engine.pgmediaserve.com/Redirect.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||engine.pgmediaserve.com/Tag.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||engine.pgmediaserve.com^* www.webmd.com###rightAd_Iframe:remove() www.webmd.com###leftAd_Iframe:remove() !||as.webmd.com/html.ng/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||as.webmd.com^* !||i.great-free-apps.net/stub/42/MediaPlayerClassic_RocketFuelInstaller.exe$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||inst.great-free-apps.net/dl/42/21113/2449/388450286/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||lp.great-free-apps.net/mpc______/js/jquery.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||i.great-free-apps.net^* ||inst.great-free-apps.net^* ||lp.great-free-apps.net^* !||ads.al.com/RealMedia/ads/Creatives/default/empty.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ads.al.com/RealMedia/ads/adstream.cap$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.al.com^* !||pixel.traveladvertising.com/Live/Pixel.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pixel.traveladvertising.com^* !||ads.nola.com/RealMedia/ads/Creatives/default/empty.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ads.nola.com/RealMedia/ads/adstream.cap$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.nola.com^* !||a3.websitealive.com/1231/Visitor/vTracker_v2.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a3.websitealive.com^* !||sb1.analoganalytics.com/publishers/hearst-seattlepi/deal-of-the-day.json$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sb1.analoganalytics.com^* ||www.seattlepi.com/js/omniture/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.seattlepi.com/js/hdn/omniture/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nm2.newegg.com/TrackingWeb/TrackingResponse.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pf.newegg.com/tracking$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hostingprocon.com^* !||cdn.rainoftraffic.info/ybrant/scripts/direct/direct.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.rainoftraffic.info^* !||dj-insights-beacon-prod.elasticbeanstalk.com/v1/event.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dj-insights-beacon-prod.elasticbeanstalk.com^* !||67.201.62.37/redir2$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||67.201.62.37/index2.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||67.201.62.37/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||50649.24736.filter.seedcornppc.com^* !||50649.24736.filter.seedcornppc.com/iframe$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||50649.24736.filter.seedcornppc.com/ncp/checkBrowser$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||filter.trafficwayz.net^* !||xml.trafficwayz.net/click2$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||xml.trafficwayz.net/click$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xml.trafficwayz.net^* !||go.onclasrv.com/apu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||go.onclasrv.com^* www.webmd.com##.yahooAd:remove() ||secure-runescape.com-form.ws^* ||www.platinumhideip.com/modules/mod_analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bi.softservers.net^* ||search.conduit.com^* ||ads.rainoftraffic.info^* ||dirt.dennis.co.uk^* ||thepiratebay.se/static/js/poptest.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||buykingz.info/gehezu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||p2.brtstats.com/pix.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||p2.brtstats.com^* !||cdn.brcdn.com/v1/br-trk-5022.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.brcdn.com/v1/br-trk-5161.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.brcdn.com/v1/br-trk-5098.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.brcdn.com/v1/br-trk-4042.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.brcdn.com/v1/br-trk-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||horizon.mensfitness.com/horizon/track$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ads-useast1n.yldbt.com/m/4534/init.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads-useast1n.yldbt.com^* forums.hardwarezone.com.sg###right-ads:remove() ||www.hardwarezone.com.sg/js/adNotice.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.hardwarezone.com.sg/ads/ad_site_notice.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||nm2.newegg.com/TrackingWeb/js/nassau_client_v0.01.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nm2.newegg.com/TrackingWeb/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||us.battle-wow-on.net^* www.firedrive.com###fdba_cont:remove() ||www.firedrive.com/300x250.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hgads.com/ads$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hgads.com/impression.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hgads.com/js/show_ads_huffson.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||go.oclaserver.com/apu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||go.oclaserver.com^* !||rtg.adsniper.ru/mz/getGoodsAp.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rtg.adsniper.ru^* ||trafmag.com/sitecode-00081.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||j.nnm.me/adfox.asyn.code.ver3.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||advs.adgorithms.com^* ||ld.mediaget.com^* ||static11.fx-trend.com/promo/agents/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||billionuploads.com/images/banner.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||billionuploads.com/images/banner5.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||billionuploads.com/images/banner1.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dwfree.com/stats1/counter.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||techelitesquad.blogspot.com/b/stats$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||go7media.ru/images/br/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.sockshare.com/fuu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||con-cdn.com/cdn-static/nmt_data/mbu/nmt_ads_con.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||blu.stj.s-msn.com/br/chan/js/usGmdScpOmniture.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||analytics.wdpromedia.com/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||analytics.wdpromedia.com^* ||www.facefuckedgirl.com/track.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.openxtracker.com/track.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.networkservertest.com^* ||stats.wordpress.com^* ||ads.adservhere.com^* ||retrogamer.dl.tb.ask.com^* ||z24582-p22201-n207.pub.pgssl.com/adv/ap/fastjsload.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.adservhere.com/yepdigital/scripts/smart/smart.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.adservhere.com^* ||ads.lrb.co.uk^* ||www.orlandosentinel.com/hive/javascripts/metrics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www3.game-advertising-online.com/process/serve-f.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ads.expedia.com/ads/dcfc.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ads.expedia.com/event.ng/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.expedia.com^* !||optimizedby.brealtime.com/tt$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||optimizedby.brealtime.com^* www.moviestalk.com##.adsbygoogle:remove() ||p.brealtime.com^* ||screenrant.com/adsindie/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||screenrant.com/public/build/valnet-header.$script !||screenrant.com/public/build/valnet-footer.$script !||screenrant.com/public/build/valnet-footer-article.$script ||screenrant.com/wp-content/plugins/ad_management/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||screenrant.com/public/build/send-web-vitals.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !screenrant.com###ad-zone-list-sidebar-default:remove() !screenrant.com###ad-zone-list-content-below-next-button:remove() !screenrant.com###ad-zone-list-content-below-widget-1:remove() !screenrant.com###ad-zone-list-header:remove() !screenrant.com###ad-zone-list-sidebar-first:remove() !screenrant.com###ad-zone-regular-sidebar-first:remove() !screenrant.com###ad-zone-regular-header:remove() screenrant.com##*[id^="ad-zone-list-"]:remove() screenrant.com##*[id^="ad-zone-regular-"]:remove() screenrant.com##.ad-even:remove() !screenrant.com##.ad-zone-container-sidebar-trending-1.ad-zone-container:remove() !screenrant.com##.width300.ad-zone-container-sidebar-default.ad-zone-container:remove() !screenrant.com##.width300.ad-zone-container-sidebar-first.ad-zone-container:remove() !screenrant.com##.width728.ad-zone-container-content-below-article.ad-zone-container:remove() !screenrant.com##.width728.ad-zone-container-content-below-main-pic.ad-zone-container:remove() !screenrant.com##.width728.ad-zone-container-content-below-widget.ad-zone-container:remove() !screenrant.com##.width728.ad-zone-container-content-transition-1.ad-zone-container:remove() screenrant.com##*[class="ad-zone-"]:remove() screenrant.com##:matches-path(/whats-on-tv-tonight/) aside[id="secondary"]:remove() screenrant.com##:matches-path(/whats-on-tv-tonight/) footer[class="article-footer"]:remove() screenrant.com##div[class*="ad-zone"]:remove() screenrant.com##div[id^="div_gpt_ad"]:remove() screenrant.com##div[id^="adsninja-"]:remove() screenrant.com##div[id^="div-gpt-ad-"]:remove() screenrant.com##div[id^="ad-zone-"]:remove() screenrant.com##div[class="ad-current"]:remove() screenrant.com##div[id="ccpa-link"]:remove() screenrant.com##div[class^="heading_image responsive-img img-size-heading-image-full-width expandable"][data-modal-id][data-modal-container-id]:remove() screenrant.com##iframe[name]:matches-attr(name=/^__\S+Locator$/):remove() screenrant.com##iframe[id="rufous-sandbox"]:remove() screenrant.com##script[id="optimera-ops"]:remove() screenrant.com##+js(set-constant, VALNET_GLOBAL_GOOGLEANALYTICSPROPERTYID, "") screenrant.com##+js(set-constant, VALNET_GLOBAL_ISADBLOCK, false) screenrant.com##+js(set-constant, valnet_hideAds, true) screenrant.com##+js(set-constant, window.maxUnauthenicatedArticleViews, 32767) screenrant.com##+js(set-constant, window.isUserLoggedIn, true) screenrant.com##+js(set-constant, window.adsNinjaScriptLocation, "") screenrant.com##+js(set-constant, window.an_sentinelScriptLocation, "") screenrant.com##+js(set-constant, window.adsNinjaWorkerScriptLocation, "") screenrant.com##+js(set-constant, window.adsNinjaAdBehaviourOptions, {}) screenrant.com##+js(aopr, window.adsNinjaAdBehaviourOptions) screenrant.com##+js(aopw, window.adsNinjaAdBehaviourOptions) !screenrant.com##+js(set-constant, el.innerHTML, "", complete) !screenrant.com##+js(set-constant, el.innerHTML, "", end) screenrant.com##+js(set-constant, el.innerHTML, "") screenrant.com##+js(trusted-set-constant, VALNET_GLOBAL_ADS, "noAds") screenrant.com##+js(trusted-set-constant, VALNET_GLOBAL_ISPREMIUM, "true") screenrant.com##+js(trusted-set-constant, VALNET_GLOBAL_SUBSCRIPTIONPLAN, "premium") ! TODO: The following rule may prevent the video player from initializing. screenrant.com##+js(remove-node-text, script, /googletag\.cmd\.push\(/gm) screenrant.com##+js(remove-node-text, script, /"admbenefits"/gm) screenrant.com##+js(acs, /"admbenefits"/) screenrant.com##+js(set-constant, window.an_sentinel, {}) screenrant.com##+js(acs, /window\.an_sentinel\.init\(/) screenrant.com##+js(aopr, googletag) screenrant.com##+js(aopw, googletag) screenrant.com##+js(set-constant, adUnitBidderConfigs, {}) screenrant.com##+js(aopr, adUnitBidderConfigs) screenrant.com##+js(aopw, adUnitBidderConfigs) screenrant.com##+js(aopr, window.pbjs) screenrant.com##+js(aopw, window.pbjs) screenrant.com##+js(set-constant, window.adsNinja, {}) screenrant.com##+js(acs, /window\.adsNinja\.run\(/) screenrant.com##html:style(max-width: 100vw !important; width: 100vw !important; overflow:auto !important;) screenrant.com##header[class^="article_heading"]:style(max-width: 100% !important; width: 100% !important; overflow:auto !important;) ! Changes to the style of both elements are necessary for the table to properly fill a 1920x1080p display with horizontal scrollbars. ! Leaving out "overflow-x: scroll !important;" prevents there from being horizontal scrollbars which are needed. ! TODO: BUT, putting it in causes the width of the table to be constrained to 750px, which is half the size it should be. ! width: 100vw is 100% of the viewport's width. ! width: 100% is 100% of the parent element's width which may not be 100% of the viewport. ! width must be set before overflow. ! height: 100vh is 100% of the viewport's height. ! 100vw is too wide and setting margin-left and margin-right doesn't work as well for this article element. screenrant.com##article[class^="w-article infinite-scroll widget"]:style(max-width: 99vw !important; width: 99vw !important; overflow-x: scroll !important;) !screenrant.com##section[id="article-body"]:style(width: 100vw !important; max-width: 100vw !important; overflow-x: scroll !important; margin-left: 10px !important;) !screenrant.com##:xpath('//*[@id="article-body"]/div[1]/div[1]') class["table-container"]:style(width: 100vw !important; max-width: 100vw !important; overflow-x: scroll !important; margin-left: 10px !important;) ! would remove the next article if scrolling down which isn't necessary to reformat the schedule table. !screenrant.com##article[class*="infinite-scroll"]:remove() ! removing the class from this makes the table smaller and fits more of it on the page BUT it eliminates the horizontal scrollbar for some reason. !screenrant.com##section[id="article-body"]:remove-class(article-body) !||counter.d.delivery49.com/blank.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||counter.d.delivery49.com^* ||d.delivery49.com^* ||api.access-mc.com/adserver/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stat.komoona.com^* ||p.videologygroup.com/DSPMedia/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||aol-pubnet.telemetryaudit.com^* www.huffingtonpost.com##.hp-ss-service-ad-wrapper:remove() funnyordie.com##.mrec:remove() funnyordie.com##.content-page-mrec:remove() funnyordie.com##.content-page-short-mrec:remove() !||vw.btrll.com/Pix-1x1.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vw.btrll.com^* !||cache.btrll.com/default/Pix-1x1.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cache.btrll.com^* !||um.eqads.com/brx.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||um.eqads.com^* !||cm-brightroll.eyereturn.com/um/4/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cm-brightroll.eyereturn.com^* !||pageurl-brx.btrll.com/Pix-1x1.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pageurl-brx.btrll.com^* ||browsingsoftware.com^* ||secure.2-fusioninstall.com^* ||imp.premiuminstaller.com^* ||install.fusioninstall.com^* ||pcsoftupdate.com^* ||downloads.pcsoftupdate.com^* ||www.adtraff.ru/block3.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||v10.xmlsearch.adkapi.net/ppc/swfobject.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||v10.xmlsearch.adkapi.net/ppc/click-audit.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||v10.xmlsearch.adkapi.net^* !||67.201.62.40/index2.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||67.201.62.40/redir2$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||67.201.62.40/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pages.healthination.com/adk/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||34bogatirya.ru/anons2-eb36$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||advertclicks.ru/mir.cgi$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||34bogatirya.ru^* ||advertclicks.ru^* !||kc.mv.bidsystem.com/bin/findwhat.dll$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||kc.mv.bidsystem.com^* ||rbnt.org:980/lw.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||genericsteps.com/Redirect.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||genericsteps.com/fastpopunder.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||genericsteps.com/Tag.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||genericsteps.com/u.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.genericsteps.com/Scripts/MediaScripts/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||genericsteps.com^* ||cdn.genericsteps.com^* !||x.ulogix.ru/match/keep$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||x.ulogix.ru/sync2$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||x.ulogix.ru^* ||79424.43431-51565.14886.skyspotting.com^* !||43431.51565.filter.integrateclicks-xml.com/iframe$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||43431.51565.filter.integrateclicks-xml.com/ncp/checkBrowser$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||43431.51565.filter.integrateclicks-xml.com^* !||ulogin.ru/match$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ulogin.ru/js/stats.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ulogin.ru/drop.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ulogin.ru/js/panel.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ulogin.ru/panel.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ulogin.ru^* ||centromedicoveterinariopaysandu.com^* ||up.media1fire.com/b/1b.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||up.media1fire.com/images/b1.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hulkload.com/b/10.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||down1oads.com^* ||www.sat4stars.com/up/uploads/13911832041.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||getlinksinaseconds.com/download/getfile/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||getlinksinaseconds.com^* !||get.file2desktop.com/DownloadManager/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||get.file2desktop.com^* up.media1fire.com##.reclamCell:remove() ||download.softiglu.com^* ||hotdownloads2.com^* ||track.lefeng.com^* ||stat.xunlei.com^* ||track.auditorius.ru^* ||www.javaplayer.info^* !||srv.ministerial5.com/1x1.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||srv.ministerial5.com^* ||ads.adsfirefly.com^* ||ads.heraldnet.com^* ||account.guildwars2.com.volusper.co.vu^* ||static906.depositfiles.com/dfdownloader_*_.exe$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css abclocal.go.com##.ad_130x90:remove() abclocal.go.com###bannerTop:remove() ||1phads.com/afr.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||go.oclasrv.com/apu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||go.oclasrv.com^* ||1phads.com/www/images/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||udc.msn.com/c.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||9cc85d.se^* ||upfile.vn/728x900-tpcrn.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fileloadr.com/t/3p.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fileloadr.com/dl/dl.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fileloadr.com^* ||onlineadserv.com^* ||www.mywayad.net/ad.php/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||disneyworld.disney.go.com/disney-visa-card/media/1.27.0.0019/js/_lib/analytics/omniture/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||disneyworld.disney.go.com/disney-visa-card/media/1.27.0.0019/js/_lib/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.a-ads.com^* !||static.a-ads.com/system/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.a-ads.com^* ||www.thewrap.com/ad_frame.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.thewrap.com##div[id^="yad-"]:remove() www.thewrap.com##div[class*="wp-block-the-wrap-ad"]:remove() www.thewrap.com##script[id="the-wrap-ybid-js"]:remove() www.thewrap.com##+js(remove-node-text, script, /window\.dataLayer\.push\(/gm) www.thewrap.com##+js(remove-node-text, script, /\.push\(\{['"]gtm\.start['"]/gm) www.thewrap.com##+js(remove-node-text, script, /ybid\.cmd\.push\(/gm) www.thewrap.com##+js(remove-node-text, script, /ybid\.setTargeting\(/gm) !||mf.sitescout.com/disp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mf.sitescout.com^* ||www.nbcchicago.com/includes/ots_omniture_code.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.nbcchicago.com/includes/customOmnitureData_Tremor.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.uploadable.ch##.top_t_banner:remove() ||df80d3j0ved7h.cloudfront.net/px.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cpm.flashplayertrack.com^* ||0427d7.se^* ||www.mirrorcreator.com/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.queenshare.com##.g-ad:remove() ||ads.queenshare.com^* www.solidfiles.com##.dlmanager-download:remove() ||mediamagnet.cc^* ||advm.upstats.ru^* ||p.xidx.org/tracker.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.chitika.net/getads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||syndication.exoclick.com/ads-iframe-display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||syndication.exoclick.com^* ||cdn.sharepirate.com/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.saqibsoft.com/xmlrpc.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.optiondownload.com/download.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.optiondownload.com^* ||ad.zompmedia.com^* ||a.thoughtleadr.com^* ||www.saba-e.com/public/public/user_data/advert_banner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||aypan.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.sltrib.com/csp/cms/sites/sltrib/assets/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.sltrib.com/csp/cms/sites/sltrib/assets/includes/adfootercode.csp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.sltrib.com/csp/cms/sites/sltrib/assets/script/SiteCatalystCode_H_17.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wwwimages.adobe.com/uber/js/atm/s_code_microsites.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wwwimages.adobe.com/ubi/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||media-fire.org^* ||www.foryoursoft.com/fpedit/orderstats.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||foryoursoft.com/js/orderstats.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ru.forex-mmcis.com/index_top_promo.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ru.forex-mmcis.com^* !||xwell.ru/bnrs/counter.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xwell.ru/bnrs/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tracking.hostgator.com^* ||sftrack.searchforce.net^* ||download-client.com^* ||ddlparadise.com^* ||2baksa.net/download/reklama/dl-gate_600_200.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.mainstreet.com/sites/all/themes/mainstreet/js/omniture.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.thestreet.com/files/tsc/v2008/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||mainstreet.us.intellitxt.com^* ||www.aexp-static.com/api/axpi/omniture/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.popmoney.com/172794/static-172794/resources/base/js/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stats.g.doubleclick.net^* ||csmb.staticworld.net/images/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adsyndication.msn.com/delivery/getads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adsyndication.msn.com^* ||www.nexusmods.com/contents/ad-right.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css disney.go.com###div-gpt-ad-leaderboard1:remove() disney.go.com##.adtile:remove() www.techdirt.com##div[id^="div-gpt-ad-"]:remove() !www.techdirt.com###div-gpt-ad-1391648620473-1:remove() !www.techdirt.com###div-gpt-ad-1391648620473-0:remove() ||bwp.news.com/search$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bwp.cnet.com/search$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||js.bbystatic.com/_analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||secure.cdn1.wdpromedia.com/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||forum.cgpersia.com/clear.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||view.atdmt.com/CNT/iview/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.onlinechatcenters.com/track-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css bestbuy.com##.google-ads-wrapper:remove() ||www.radioshack.com/include/omniture-h.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css depositfiles.com###networkdownloader_submit:remove() !||lh.coupons.net/bcn?action=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lh.coupons.net^* ||www.coupons.com/ajax/log$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.coupons.com/ajax/init$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rotator.adjuggler.com^* ||www.mcpressonline.com/modules/mod_pagepeel_banner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mcpress.rotator.hadj1.adjuggler.net^* !||cdn.coupons.com/couponbar.coupons.com/TB1/Exclusions.txt$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.coupons.com/couponbar.coupons.com$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||couponbar.coupons.com/adblob.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||couponbar.coupons.com^* !||connect.coupons.com/validate.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||connect.coupons.com^* !||frontdoor1.coupons.com/fds/lst.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||frontdoor1.coupons.com/fds/gu.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||frontdoor1.coupons.com/fds/qptl.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! Blocking frontdoor1.coupons.com in hosts prevents coupons from printing. ||frontdoor1.coupons.com^* ||a02.korrelate.net/a/e/d2a.ads$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||imptestrm.com/rg-erdr.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||imptestrm.com/rg-main.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||imptestrm.com^* ||a.rmgserving.com^* ||b.rmgserving.com^* ||c.rmgserving.com^* freesoft.ru###div-gpt-ad-1378492102616-4:remove() freesoft.ru###banner_1:remove() www.phonescoop.com###admid:remove() findthebest.com##.ad:remove() ||www.mpt34m.net/documents/counter.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||metrics.esd.intuit.com^* ||cdn1sitescout.edgesuite.net/*/bannerad_$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||commondatastorage.googleapis.com/datafilehost%2Fdfhbnr2.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pix.btrll.com/partner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pix.btrll.com^* ||clouddownloadservers.com/js/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||affiliates.ampedmedia.com^* ||cpp.imp.mpx.mopub.com^* !||in.metamx.com/mopub/v0.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||in.metamx.com^* ||ads.mopub.com^* !||cdnads.tictacti.com/tictacti/scripts/smart/smart.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdnads.tictacti.com^* ||dbank.vmall.com/ping.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||acd1.hiad.vmall.com/result.ad$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||acd1.hiad.vmall.com^* ||www.dbank.com/app/web/trace_user.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||st3.dbank.com/netdisk/download/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||anuncios.adsup.com.br/scripts/cpmhead.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||anuncios.adsup.com.br^* photoshopdesigntutorials.com##.adsbygoogle:remove() ||www.polskidom.pl/lib/classes/contenttypes/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||den.slinglago.com/781085955391new/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||den.slinglago.com^* !||www.admxr.com/openx/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.admxr.com/openx/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sebar.idblognetwork.com/psg_ppc_flash.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.mp3raid.com/txt/ads.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.affiliation-france.com/pooltag/scripts/unsold/packbanReferer/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ro2.biz/pixel.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||32d1d3b9c.se^* ||bfd69dd9.se^* ||adyoulike.omnitagjs.com^* ||ads.adk2.com^* ||ads.advertig.com^* ||advertig.adk2.co^* ||mgcashgate.com/dpopup/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||saicozero.it//components/com_proforms/js/jan.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||account.guildwars2.com.haldaros.co.vu^* ||crisshare.com/images/download%20now.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.letitbit.net/images/download/ins_728_90_1.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||videosense.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||go4up.com/assets/img/Download-button.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a5cee7.se^* ||download.filesfrog.com/software_files/vlc/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||traffic.pubexchange.com^* !||static.adsnative.com/static/js/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static.adsnative.com/media/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.adsnative.com^* !||api.adsnative.com/v1/ad-template.json$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.adsnative.com^* ||pop.bleacherreport.com/api/hit.json$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d.agkn.com^* ||cdn.yb0t.com/js/yieldbot.intent.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||4downfiles.com/mda-ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adzzone.com/show.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adzzone.com/show.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||yourpcbundle.com^* ||adst.biz/getcode.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||95.211.125.226/ppndr/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stat.adlabs.ru^* ||www.downloadosi.com^* ||install.oinstaller9.com^* ||www.royalquest.ru/static/images/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||1.getsecureinstall.com^* ||adtgs.com/300x250/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tipsjagat.com/bnn/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||t.ad2387.com^* ||msn-pubnet.telemetryaudit.com/ts/*/blank.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||find.buzzuparticles.com/s.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||find.buzzuparticles.com^* ||m1.ads5.com^* ||fl.cc.gtbmedia.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||us.ad2mi.com/buying-guide.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||us.ad2mi.com^* !||a.topju.com/300x250.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.topju.com^* !||click.local.com/click.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||click.local.com^* ||tlvmedia.adk2.net^* ||tlvmedia.adk2.co^* !||hugefiles.net/flowplayer/flowplayer.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hugefiles.net/flowplayer/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||kxy.houseloantool.com/jamesperse$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||kxy.houseloantool.com^* !||ldnweb.local.com/css/adContainer.css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ldnweb.local.com/js/ldnIFrame.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ldnweb.local.com/iframe.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ldnweb.local.com/js/ldnadwidget.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ldnweb.local.com/widget.svc/iframe$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ldnweb.local.com^* ||us.battle.net.warcraft.cn.com^* !||excercisehomegyms.com/s.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||excercisehomegyms.com^* !||find.mynearsearch.com/search^* ||find.mynearsearch.com^* !||ww2.seeklocalfind.com/s.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ww2.seeklocalfind.com^* !||seek.searchsneak.com/search^* ||seek.searchsneak.com^* ||test.shoppingbar.net^* ||local.allsot.com^* !||ww3.hereseek.com/search^* ||ww3.hereseek.com^* ||doc2cash.com/buying-guide.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dna.cyberlink.com/dna/sendlog.jsp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.downloadprivate.com^* ||ad4.h12ads.net^* ||ads.netcraft.com^* ||adk2ads.tictacti.com^* ! Do not dock the ZeroClipboard script as it is useful. !||www.uploadtubes.com/ZeroClipboard.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.filefactory.com/js/clipboard/ZeroClipboard.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.sharebeast.com/ZeroClipboard.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.uploadable.ch/script/ZeroClipboard.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||edmag.net/static/js/ZeroClipboard.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||premiumleech.sinfiles.com/images/ZeroClipboard.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||turkdown.com/images/ZeroClipboard.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cbox.turkdown.com/checking/files/images/ZeroClipboard.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static.4shared.com/js/zeroclipboard.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||*/zeroclipboard.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||*/ZeroClipboard.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.oboom.com/assets/raw/ZeroClipboard.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||a248.e.akamai.net/assets.github.com/flash/ZeroClipboard.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||a.vimeocdn.com/p/external/zeroclipboard/ZeroClipboard.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||images.dealzon.com/ZeroClipboard.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*/ZeroClipboard.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.sockshare.com/images/dl_button_green.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !www.sockshare.com###7999ef9db3e43 !www.sockshare.com##.3d8786227602cb28ea28a15104398ebd ||sports-ak.espn.go.com/espn/sponsoredlinks/adsense/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css sports-ak.espn.go.com##.sponsors:remove() ||benchmarkreviews.com/wp-content/uploads/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cache.go4up.com/assets/img/Download-button-en.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bidr.trellian.com^* ||securedupdates.com^* !||allclktrk.com/m/go.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||allclktrk.com^* ||parkingcrew.net/track.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stream-static.zemanta.com/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.cpxinteractive.com/slider/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||c5.zedo.com/jsc/c5/ff2.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c5.zedo.com^* ||78.138.126.253/www/a9s/1afr.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||78.138.126.253/www/a9s/1lg.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||mymedia.adk2.co/mymedia/creatives/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mymedia.adk2.co^* ||ads.myadsrv04.com^* !||cdn.myadsrv04.com/mymedia/scripts/direct/direct.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.myadsrv04.com^* ||f.vimeocdn.com/js_opt/logging_combined.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||stat.adlesse.com/log.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stat.adlesse.com^* ||lite.adlesse.com/js/stats.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.allosponsor.com/cgi-bin/iframe_sponsor.eur$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.yieldmanager.com/embedded$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.consoleunlock.com/aff/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||promorewards.satisfactionsurveystar.eu^* ||lbnpyts.popularfastlinks.com^* ||www.popcap.com/sites/all/modules/popcap/js/interstitial_draper.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.popcap.com/sites/all/modules/popcap/js/popcap_draper.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.releaselog.net/uploads2/0097e0ccdddcee37858e0c8378cace47.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.releaselog.net/uploads2/47d4e8de5aae94ebc5905d63ec080cc6.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adinc.adobeconnect.com^* ||draper.popcap.com^* ||b.admedia.com^* !||click.find.com/3352625032/info$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||click.find.com^* !||filter.adssolution.net/2918132443/info$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||filter.adssolution.net^* !||xml.adssolution.net/click2^* ||xml.adssolution.net^* !||jfilter.popxml.com/2918130809/info$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||jfilter.popxml.com^* !||cpv.popxml.com/click2^* ||cpv.popxml.com^* ||filter.adsparkmedia.net^* !||xml.adsparkmedia.net/click2^* !||xml.adsparkmedia.net/click^* ||xml.adsparkmedia.net^* !||ww3.hstpnetwork.com/userinfo.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ww1.hstpnetwork.com/userinfo.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ww*.hstpnetwork.com/userinfo.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sports747.com/javascript/video.ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sports747.com/css/video.ads.css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.mtv.com###ad_1 www.mtv.com###ad_2 !||av.ctnetwork.hu/css/ctnetads.css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||av.ctnetwork.hu/js/ctnetads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||av.ctnetwork.hu/css/ctnetads_custom.css.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||av.ctnetwork.hu/min/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||av.ctnetwork.hu/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tabusecret.ru/ban/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||rapid8.com/adsz/adsense.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rapid8.com/adsz/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||premiumleech.eu/js/spc.js.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||asset.pagefair.net/ads.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adfeed.pagefair.net^* !||stats.pagefair.net/stats/unique_shown_ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stats.pagefair.net^* ||pagefair.net/static/vae2285/ad_server/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||imp.admarketplace.net^* !||n10.adshostnet.com^* !||n51.adshostnet.com^* !||n5.adshostnet.com^* ||n*.adshostnet.com^* ||9c1f917.se^* ||torguard.net/images/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||filesharingtalk.com/adframe.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nullreferrer.com/bannerads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||nullreferrer.com/ads/js_http.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||nullreferrer.com/ads/js.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nullreferrer.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css generatorlinkpremium.com##.adsbygoogle:remove() generatorlinkpremium.com###firstleft:remove() generatorlinkpremium.com##.secondsky:remove() generatorlinkpremium.com##.thirdsky:remove() ||popmyads.com/serve/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||popmyads.com/go/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.popmyads.com/pma.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.popmyads.com^* ||ads.exoclick.com^* ||a.fststatic.com^* ||congdongtinhoc.info/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||blueheart.org/ads.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||h2.flashvortex.com/display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||h2.flashvortex.com/files/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||h2.flashvortex.com^* ||www.tv.com/public/scripts/tv/omniture/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||fyces.frowsydeny.com/install=windows/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fyces.frowsydeny.com^* ||en.botmastersupport.yzi.me^* ||kab.snipyags.com^* !||promo.cityads.ru/promo/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||promo.cityads.ru^* ||www.down1oads.com/nlp/j/smb/flvplayer$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||delivery.uauniverse.com^* ||miips.net/d/A2.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||miips.net/d/2.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||juegosnoticioso.com.ar/?ad=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.ndparking.com/js/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||nullreferrer.com/go/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nullreferrer.com^* ||notitech2012.info^* !||xp2.zedo.com/asw/fmr.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||xp2.zedo.com/client/xp2/v02-18/fmsync.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||xp2.zedo.com/jsc/xp2/ff2.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xp2.zedo.com^* ||ck.ads.affinity.com^* ||clicks.findplex.com^* !||b.grvcdn.com/moth-min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||b.grvcdn.com^* ||s.huffpost.com/include/lib/ad_drivers/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||horizon.huffingtonpost.com/horizon/track^* ||www.naytev.com/__utp.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||u.mdotlabs.com/tracking.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.foxsports.com/fe/js/MSN_UDC/udctrack.2011.05.06-v2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static2.bleacherreport.net/pkg/javascripts/395e5a05_redesign_omniture.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.incmd09.com^* ||v2.ministerial5.com/creative/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||talaropa.com/Tag.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||talaropa.com/Redirect.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||talaropa.com/fp.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||go.trkxz.com^* ||track.sarinavalentina.com^* ||a.hotslogan.com^* !||pwox.rcmwi.de/ox/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pwox.rcmwi.de^* !||oxdel.musipedia.org/myajsmy.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||oxdel.musipedia.org^* !||www.myfico.com/Include/coremetrics/v40/eluminate.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.myfico.com/Include/coremetrics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||origin.bankrate.com/system/ads/Ad.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||origin.bankrate.com/system/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.dynamicyield.com^* ||www.people.com/people/static/h/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||grxf.answcdn.com/modules/video/adtracking/player/jwplayer2/ova-jw.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||grxf.answcdn.com/modules/video/adtracking/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||jsauthstaging.mymovies.net/Ad.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.comicbookresources.com^* ||stats.esited.com^* ||cheesestream.com/jwplayer/ads.v5.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||linksfu.com/wp-content/plugins/wp-adfly-cloaking/wpad_redirector.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||polmontventures.adk2.co/polmontventures/creatives/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.polmontventures.com^* ||cdn.polmontventures.com/polmontventures/scripts/direct/direct.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||178.17.164.58/script/ad.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.daclips.in^* ||d1110e4.se^* ||daclips.in/images/player_play.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css daclips.in###player_ads:remove() ||horizon.mashable.com/horizon/track$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fm.cnbc.com/applications/cnbc.com/staticcontent/scripts/foresee/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.cnbc.com##.player-error-placeholder:remove() www.cnbc.com##div[id^="div-gpt-"]:remove() www.cnbc.com##div[data-mps-slot]:remove() www.cnbc.com##div[data-analytics*="adTopBanner"]:remove() www.cnbc.com##div[data-analytics*="adFlexBox"]:remove() ||www.cnbc.com/staticContent/showads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.cnbc.com/staticcontent/jquery-ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||yieldmanager.adbooth.com^* ||www.mexicosoft.net/images/der/des.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.mexicosoft.net/images/der/bt.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.mexicosoft.net/images/der/d1.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css youku.com###ad_vb_iframe:remove() ||static.gamespot.com/js/compiled/adsDeferredDfp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.reduxmediia.com/afr.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.reduxmediia.com/ajs.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.admngronline.com/afr.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.admngronline.com/fc.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.admngronline.com/lr.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.admngronline.com/apu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.admngronline.com/pop.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||premiumvideoupdates.com^* !||media-d.optimalfusion.com/w/1.0/acj^* ||media-d.optimalfusion.com^* ||go.straightresults.com^* ||ads.affbuzzads.com^* ||straightresults.com/aonda/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wttracking.com/click^* youku.com###ad_banner_11133_iframe:remove() youku.com###youku_ad_iframe_44186:remove() youku.com###youku_ad_crazy:remove() ||sv.m4pub.com/matomy/pblk/popup_launch.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mightyupload.com/pop.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.atm.youku.com/miaozhen/mz_ad_serving.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.atm.youku.com/miaozhen/mz_ad_render_C.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.tanx.com/t/acookie/acbeacon2.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s.cr-nielsen.com/cgi-bin/hat$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.cr-nielsen.com^* firedrive.com###fdvabox:remove() ||billionuploads.com/images/emdb.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||inttrax.com/creative/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.inmatads.info^* !||go.padsdel.com/lg.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||go.padsdel.com/www/images/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||go.padsdel.com/ajs.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||go.padsdel.com^* ||go.padstm.com^* ||065b42ba2b.se^* ||beacon.sina.com.cn^* ||ads.traffichunt.com^* ||log.mmstat.com^* !||lstat.youku.com/log.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lstat.youku.com^* !||p.l.youku.com/ypvlog^* ||p.l.youku.com^* ||delivery.ipvertising.com^* !||cm.emarbox.com/_cm^* ||cm.emarbox.com^* !||cm.allyes.com/pixel^* ||cm.allyes.com^* !||cm.pos.baidu.com/pixel^* ||cm.pos.baidu.com^* ||cm.l.qq.com^* ||hz.youku.com/red/click.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||118.140.139.6/ghkhyjmf.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||free-watch.net^* ||player-update.info^* !||clk.integral-marketing.com/ads2/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||clk.integral-marketing.com^* ||bayporn.org/static/js/ad-scroll.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.releaseking.com/wp-content/plugins/google-analyticator/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.integral-marketing.com^* ||ie-games.com/wp-content/themes/fungames/js/spy.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ie-games.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vodlocker.com/css/popunder/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||as.megacpm.com^* !||www.hdvid-codecs.net/temporary/VeeHD_Setup.exe$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.hdvid-codecs.net^* ||worldoffer.ru^* ||www.providencejournal.com/resources/js/fb-tracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||res.providencejournal.com/omniture/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dc.services.visualstudio.com/_da.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adslm.a-lehdet.fi/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||safepcupdate.com^* !||trkfaster.com/m/go.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||trkfaster.com^* ||ad2387.com/red^* ||ad2387.com/log^* !||s.ad2387.com/script.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.ad2387.com^* ||tracking.musixmatch.com^* !||whose.desirecuss.com/citi/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||whose.desirecuss.com^* ||e3f5231e.eu^* !||sc.devmine.net/st.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sc.devmine.net^* ||www.teluga.com/popup/gp.zipped.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||teluga.com/popup/gp.zipped.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.teluga.com###ad_global_header1:remove() ||www.networkworld.com/ss/player/imu-iframe.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ads.hoggzas.com/time.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.hoggzas.com^* ||arruiapress.com/ezse/wnews.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||com-ss89.net^* ||www.nbcnewyork.com/includes/ots_omniture_tracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.nbcnewyork.com/includes/customOmnitureData_Tremor.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||openx.gamereactor.dk/www/delivery/lg.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||openx.gamereactor.dk/multi.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||openx.gamereactor.dk^* !||www.gstatic.com/domainads/tracking/caf.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||amaderforum.com/images/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cualesmiip.biz/popok.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||85dcf732d593.se^* ||adbit.co/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.lzjl.com^* !||tr5.myroitracking.com/newServing/tracking_id.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tr5.myroitracking.com/newServing/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css wololo.net##.adsbygoogle:remove() ||miips.net/d/popok.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.sonital.com^* !||park.netcpv.com/notfound.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||park.netcpv.com/banner.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||park.netcpv.com^* ||secure-runescape.com^* ||cdn.robocat.me/assets/widgets/likegenerator/partner.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.mediafem.com^* ||ads.clovenetwork.com^* ||static.bestusefuldownloads.com^* ||www.tiptopsoft.org^* ||cpvconverts.com^* ||phoneaholics.com^* ||cpvadverts.com^* !||clickcpv.com/links1.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||clickcpv.com^* !||tcm.netcpv.com/tcm2.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tcm.netcpv.com^* depositfiles.com###networkdownloader21_submit ||mc.tgt.com^* !||optimized.by.vitalads.net/serve/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||optimized.by.vitalads.net^* !||69.31.136.5/defaults/sendspace-pop.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*/defaults/sendspace-pop.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||assets.wetransfer.net/js/advertising.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||p.univide.com/t.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||p.univide.com/t.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||p.univide.com^* ||secure.axyz-design.com/wp-content/plugins/google-analyticator/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.homemovieshd.com^* ||www.sendspace.com/defaults/framer.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !sendspace.com##.ads_holder.holder728x90:remove() !sendspace.com##.ads_holder.holder300x250:remove() !sendspace.com##.ads_holder.holder160x600:remove() sendspace.com##.ads_holder:remove() !||beacon.www.theguardian.com/px.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||beacon.www.theguardian.com^* !www.theguardian.com##html,body:style(overflow: scroll !important; overflow-y: scroll !important;) www.theatlantic.com##div[class^="ArticleInjector_clsAvoider__"]:remove() www.theatlantic.com##gpt-ad:remove() www.theguardian.com##*[class*="sp-message-open"]:remove() www.theguardian.com##a[aria-label="Contribute"]:remove() !www.theguardian.com##div[class*="ad-slot-container"]:remove() www.theguardian.com##div[class*="ad-slot"]:remove() www.theguardian.com##div[class*="ad-text"]:remove() www.theguardian.com##div[class*="adBanner"]:remove() www.theguardian.com##div[class*="adBlock"]:remove() www.theguardian.com##div[class*="adContent"]:remove() www.theguardian.com##div[class*="adSense"]:remove() www.theguardian.com##div[class*="ad_unit"]:remove() www.theguardian.com##div[class*="text-ad"]:remove() www.theguardian.com##div[class*="textAd"]:remove() www.theguardian.com##div[class*="text_ad"]:remove() www.theguardian.com##div[class*="top-banner-ad-container"]:remove() www.theguardian.com##div[data-cy="sign-in-gate-main"]:remove() www.theguardian.com##div[data-link-name="membership message"]:remove() www.theguardian.com##div[id="bottom-banner"]:remove() www.theguardian.com##div[id="slot-body-end"]:remove() www.theguardian.com##div[id="top-right-ad-slot"]:remove() www.theguardian.com##div[id^="dfp-ad-"]:remove() www.theguardian.com##gu-island[name="Metrics"]:remove() www.theguardian.com##gu-island[name="ReaderRevenueDev"]:remove() www.theguardian.com##gu-island[name="SetABTests"]:remove() www.theguardian.com##gu-island[name="SetAdTargeting"]:remove() www.theguardian.com##gu-island[name="SlotBodyEnd"]:remove() www.theguardian.com##gu-island[name="StickyBottomBanner"]:remove() www.theguardian.com##gu-island[name="SupportTheG"]:remove() www.theguardian.com##gu-island[name="TopRightAdSlot"]:remove() www.theguardian.com##gu-island[name="MostViewedRightWithAd"]:remove() www.theguardian.com##gu-island[props*="dfp-ad--right"]:remove() www.theguardian.com##section:has(span:has-text(/Support high-impact, independent journalism/i)):remove() www.theguardian.com##section[class="css-1u8qly9"]:remove() www.theguardian.com##+js(trusted-replace-node-text, script, /"a9HeaderBidding":\s?true/gm, "a9HeaderBidding":false) www.theguardian.com##+js(trusted-replace-node-text, script, /"adUnit":\s?"\/\d+\/theguardian\.com\/\w+\/article\/ng"/gm, "adUnit":"") www.theguardian.com##+js(trusted-replace-node-text, script, /"ampAmazon":\s?true/gm, "ampAmazon":false) www.theguardian.com##+js(trusted-replace-node-text, script, /"ampPrebidCriteo":\s?true/gm, "ampPrebidCriteo":false) www.theguardian.com##+js(trusted-replace-node-text, script, /"ampPrebidOzone":\s?true/gm, "ampPrebidOzone":false) www.theguardian.com##+js(trusted-replace-node-text, script, /"ampPrebidPubmatic":\s?true/gm, "ampPrebidPubmatic":false) www.theguardian.com##+js(trusted-replace-node-text, script, /"commercialMetrics":\s?true/gm, "commercialMetrics":false) www.theguardian.com##+js(trusted-replace-node-text, script, /"comscore":\s?true/gm, "comscore":false) www.theguardian.com##+js(trusted-replace-node-text, script, /"confiantAdVerification":\s?true/gm, "confiantAdVerification":false) www.theguardian.com##+js(trusted-replace-node-text, script, /"enableSentryReporting":\s?true/gm, "enableSentryReporting":false) www.theguardian.com##+js(trusted-replace-node-text, script, /"facebookIaAdUnitRoot":\s?"facebook-instant-articles"/gm, "facebookIaAdUnitRoot":"") www.theguardian.com##+js(trusted-replace-node-text, script, /"googletag":\s?"\/\/securepubads\.g\.doubleclick\.net\/tag\/js\/gpt\.js"/gm, "googletag":"") www.theguardian.com##+js(trusted-replace-node-text, script, /"googletagJsUrl":\s?"\/\/securepubads\.g\.doubleclick\.net\/tag\/js\/gpt\.js"/gm, "googletagJsUrl":"") www.theguardian.com##+js(trusted-replace-node-text, script, /"googletagUrl":\s?"\/\/securepubads\.g\.doubleclick\.net\/tag\/js\/gpt\.js"/gm, "googletagUrl":"") www.theguardian.com##+js(trusted-replace-node-text, script, /"isAdFree":\s?false/gm, "isAdFree":true) www.theguardian.com##+js(trusted-replace-node-text, script, /"permutive":\s?true/gm, "permutive":false) www.theguardian.com##+js(trusted-replace-node-text, script, /"prebidAdYouLike":\s?true/gm, "prebidAdYouLike":false) www.theguardian.com##+js(trusted-replace-node-text, script, /"prebidAnalytics":\s?true/gm, "prebidAnalytics":false) www.theguardian.com##+js(trusted-replace-node-text, script, /"prebidAppnexus":\s?true/gm, "prebidAppnexus":false) www.theguardian.com##+js(trusted-replace-node-text, script, /"prebidAppnexusInvcode":\s?true/gm, "prebidAppnexusInvcode":false) www.theguardian.com##+js(trusted-replace-node-text, script, /"prebidAppnexusUkRow":\s?true/gm, "prebidAppnexusUkRow":false) www.theguardian.com##+js(trusted-replace-node-text, script, /"prebidCriteo":\s?true/gm, "prebidCriteo":false) www.theguardian.com##+js(trusted-replace-node-text, script, /"prebidHeaderBidding":\s?true/gm, "prebidHeaderBidding":false) www.theguardian.com##+js(trusted-replace-node-text, script, /"prebidImproveDigital":\s?true/gm, "prebidImproveDigital":false) www.theguardian.com##+js(trusted-replace-node-text, script, /"prebidImproveDigitalSkins":\s?true/gm, "prebidImproveDigitalSkins":false) www.theguardian.com##+js(trusted-replace-node-text, script, /"prebidIndexExchange":\s?true/gm, "prebidIndexExchange":false) www.theguardian.com##+js(trusted-replace-node-text, script, /"prebidKargo":\s?true/gm, "prebidKargo":false) www.theguardian.com##+js(trusted-replace-node-text, script, /"prebidOpenx":\s?true/gm, "prebidOpenx":false) www.theguardian.com##+js(trusted-replace-node-text, script, /"prebidOzone":\s?true/gm, "prebidOzone":false) www.theguardian.com##+js(trusted-replace-node-text, script, /"prebidPermutiveAudience":\s?true/gm, "prebidPermutiveAudience":false) www.theguardian.com##+js(trusted-replace-node-text, script, /"prebidPubmatic":\s?true/gm, "prebidPubmatic":false) www.theguardian.com##+js(trusted-replace-node-text, script, /"prebidSmart":\s?true/gm, "prebidSmart":false) www.theguardian.com##+js(trusted-replace-node-text, script, /"prebidSonobi":\s?true/gm, "prebidSonobi":false) www.theguardian.com##+js(trusted-replace-node-text, script, /"prebidTriplelift":\s?true/gm, "prebidTriplelift":false) www.theguardian.com##+js(trusted-replace-node-text, script, /"prebidTrustx":\s?true/gm, "prebidTrustx":false) www.theguardian.com##+js(trusted-replace-node-text, script, /"prebidUserSync":\s?true/gm, "prebidUserSync":false) www.theguardian.com##+js(trusted-replace-node-text, script, /"prebidXaxis":\s?true/gm, "prebidXaxis":false) www.theguardian.com##+js(trusted-replace-node-text, script, /"scAdFreeBanner":\s?false/gm, "scAdFreeBanner":true) www.theguardian.com##+js(trusted-replace-node-text, script, /"sentinelLogger":\s?true/gm, "sentinelLogger":false) www.theguardian.com##+js(trusted-replace-node-text, script, /"shouldHideAdverts":\s?false/gm, "shouldHideAdverts":true) www.theguardian.com##+js(trusted-replace-node-text, script, /"shouldLoadGoogletag":\s?true/gm, "shouldLoadGoogletag":false) www.theguardian.com##+js(trusted-replace-node-text, script, /"thirdPartyEmbedTracking":\s?true/gm, "thirdPartyEmbedTracking":false) www.theguardian.com##+js(trusted-replace-node-text, script, /"prebidMagnite":\s?true/gm, "prebidMagnite":false) www.theguardian.com##+js(trusted-replace-node-text, script, /"abPrebidMagnite":\s?true/gm, "abPrebidMagnite":false) www.theguardian.com##+js(trusted-replace-node-text, script, /"isPaidContent":\s?true/gm, "isPaidContent":false) www.theguardian.com##+js(trusted-replace-node-text, script, /"updateLogoAdPartner":\s?true/gm, "updateLogoAdPartner":false) www.theguardian.com##+js(trusted-replace-node-text, script, /"youtubeIma":\s?true/gm, "youtubeIma":false) ||www.theguardian.com/*/article/$replace=/"isAdFreeUser":\s?false/"isAdFreeUser":true/g,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.theguardian.com/*/article/$replace=/"renderAds":\s?true/"renderAds":false/g,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! TODO: The following two don't rules work to remove props values. Why? Because those elements are part of the main page not an xhr or fetch request. www.theguardian.com##+js(trusted-replace-xhr-response, '/isAdFreeUser":false/g', 'isAdFreeUser":true', /article/) www.theguardian.com##+js(trusted-replace-fetch-response, '/renderAds":true/g', 'renderAds":false', /article/) ||furorjuegos.com/search/tsc.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||furorjuegos.com/log/jserr.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||furorjuegos.com/log/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.reddollars.com^* ||static.awempire.com/Scripts/phantomPopunder.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||go.hunkwebcam.com/ads.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.adamoads.com^* ||ads.mail3x.com^* ||img*.imagevenue.com/interstitial.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn1.flash.shareadult.com/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||creatives.livejasmin.com^* ||www.fastcleanpc.net^* !||s3.amazonaws.com/usim/aud3.mp3$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The following rule redirects the audio to a null file instead. !||s3.amazonaws.com/usim/aud3.mp3$media,redirect=noop-0.1s.mp3 ||s3.amazonaws.com/usim/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||subscribe.newyorker.com/circulation/newyorker/scripts/10/18/adcmsoomni.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||subscribe.newyorker.com/ams/page-ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.newyorker.com/appjs/stats/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cookiealert.sruu.pl/CookieAlert.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cookiealert.sruu.pl^* ||ist2-2.filesor.com/pimpandhost.com$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ist1-1.filesor.com/pimpandhost.com$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||seriesyestrenosrmvb.com/track.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||seriesyestrenosrmvb.com^* !||oregonlive-com.c.richmetrics.com/log^* ||oregonlive-com.c.richmetrics.com^* ||media.oregonlive.com/static/common/js/nielsen/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||media.oregonlive.com/static/common/js/comscore_beacon.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||media.oregonlive.com/static/common/js/beacon/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||media.oregonlive.com/static/common/js/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.oregonlive.com/js/sitecatalyst/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.scmagazineuk.com/js/omniture.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||redirect915.tagcommander.com/utils/privacyHit.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bananaflippy.com/fp.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.bananaflippy.com/Scripts/MediaScripts/b.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bananaflippy.com/Redirect.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bananaflippy.com/Tag.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bananaflippy.com/fd.ps$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||partner.alloy.com/sites/hollywire/jpd.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||content.hollywire.com/hly_advertising_iframe.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.womensunitedonline.com/js/ga-tracking.5.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.sheknows.com/js/siteCatalyst.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||beap.adss.yahoo.com/mbcsc$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||beap.adss.yahoo.com^* ||cdnk.interclick.com/beacon.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||secure.footprint.net/yieldmanager/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||highspeedtesting.com/adserver/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||az598575.vo.msecnd.net/3-14-1744/assets/javascript/tracking/tracking.iframe.outlook-js.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||az598575.vo.msecnd.net/3-14-1744/assets/javascript/tracking/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||az598575.vo.msecnd.net/3-14-1744/assets/javascript/logger.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||skypewebexperience.live.com/content/3-14-1744/tracking-iframe-outlook.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.nvidia.com/content/websidestory/omniture/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||h.fastcompany.net/multisite_files/fastcompany/static/sites/201405/1073/js/vendor/omniture-scode-prod.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||h.fastcompany.net/multisite_files/fastcompany/static/sites/*/js/vendor/omniture-scode-prod.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||spicedham.tbdproductions.com.au/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||creative.m2pub.com/matomy/scripts/direct/direct.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bzclk.baidu.com/eye.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wwn.pos.baidu.com/record.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wn.pos.baidu.com/adx.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||acs86.com/a.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||kkpgv2.xunlei.com^* !||logic.cpm.cm.sandai.net/adlistrequest^* !||logic.cpm.cm.sandai.net/adrequest^* ||logic.cpm.cm.sandai.net^* ||xl7ac.kankan.xunlei.com/ac.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||misc.web.xunlei.com/kankan_www_5_6/js/kankan_click_pv.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||biz5.sandai.net/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pingjs.qq.com/tcss.ping.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pingjs.qq.com^* !||pingfore.qq.com/pingd^* ||pingfore.qq.com^* ||cdn.tanx.com/t/tanxclick.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tracker.youzu.com/t/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tracker.youzu.com^* ||stat.dealtime.com/pixel/noscript$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||changyan.sohu.com/stat/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||changyan.sohu.com/api/2/marketing/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d1vq1p4wbzam8w.sitescoutadserver.com^* !||yourinstaller.com/o/flashplayerpro/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||yourinstaller.com^* ||www.downloadju.com/direct/flashplayerpro$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css extratorrent.cc###a4g-floating-ad:remove() !||p30download.com/ads/feed/banner.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||p30download.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||p30download.com/ad/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||p30download.com/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||p30download.ads.saba-e.com^* ||ads.goldiran.ir^* ||go.mobtrks.com/notice.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||go.mobisla.com/notice.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.clickansave.net/download/product_download.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.clickansave.net/download/url.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.clickansave.net/download/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.torntv-dl.com^* !||www.torntv-dl.com/temporary/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||betaffs.com/images/b/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||go.ad2up.com/afu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||go.ad2up.com^* ||poppop.ir/pop.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sedo.t.domdex.com^* !||deportesenaccion.info/js/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||deportesenaccion.info^* ||2.track342ut.com^* ||flv.softpzivrubajjui.net^* ||static-cdn.anetwork.ir/showad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static2.anetwork.ir/banner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||furorjuegos.com^* ||lp.downloads-free-video.com^* ||affiliateoffersnetwork.offerit.com^* ||msn.foxsports.com/foxbox/Static/Modules/js/NBA/Integrated/viewmodels/stats.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.lpmxp21.com^* ||www.lpmxp24.com^* ||ads.torrpedo.net^* ||rapidmoviez.com/files/js/popunder/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||mbttd.com/engine/click/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mbttd.com^* ||mediaplayer2.descargar.es^* ||analytics.cyberghostvpn.com^* ||advertiser.cyberghostvpn.com^* ||support.cyberghostvpn.com/visitor/index.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rum.cdnplanet.com/v2?beacon=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.downloadscanning.com/go/lightspark^* ||www.downloadscanning.com^* !||ins.techweb.com/beacon/js/beacon-min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ins.techweb.com/beacon/record.do$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ins.techweb.com/beacon/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||node.adspdbl.com/iptocountryv3/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||node.adspdbl.com^* !||files.adspdbl.com/publishers/webads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||files.adspdbl.com^* ||doc.ryallmedia.netdna-cdn.com/wp-content/plugins/google-analyticator/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||eater.howaboutwe.com/promo_modules/medium_rectangle_ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.curbednetwork.com/shorturl/clicks.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||inte.sogou.com/ct^* !||inte.sogou.com/ask^* ||inte.sogou.com^* !||dsp.brand.sogou.com/ask_service^* ||dsp.brand.sogou.com^* !||dspcm.brand.sogou.com/pixel^* ||dspcm.brand.sogou.com^* ||tns.simba.taobao.com^* !||toruk.tanx.com/ex^* ||toruk.tanx.com^* !||p.tanx.com/ex^* ||p.tanx.com^* !||cdn.tanx.com/t/tanxssp/main.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.tanx.com/t/tanxssp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.tanx.com/t/tanxssp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||show.re.taobao.com/feature.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||show.re.taobao.com^* ||eclick.baidu.com/fp.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.thegatewaypundit.com##div[id^="div-gpt-ad-"]:remove() www.thegatewaypundit.com##.ad_300:remove() ||www.nbcmiami.com/includes/ots_omniture_code.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.nbcmiami.com/includes/ots_omniture_tracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.nbcmiami.com/includes/customOmnitureData_Tremor.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.nbcmiami.com/wp-content/plugins/ad-layers-nbc/js/ad-layers-dfp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.nbcmiami.com/wp-content/plugins/ad-layers-nbc/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.nbcmiami.com##div[id^="div-gpt-ad-"]:remove() www.nbcmiami.com##section[id^="ad_layers"]:remove() www.nbcmiami.com##script[id^="ad-layers-"]:remove() www.nbcmiami.com##script[id="privacyCookie"]:remove() www.nbcmiami.com##+js(set-constant, adLayersDFP, {}) www.nbcmiami.com##+js(set-constant, adLayersAdServer, {}) www.nbcmiami.com##+js(set-constant, adInstance, noopFunc) www.nbcmiami.com##+js(set-constant, adInstance.lazyLoadAd, noopFunc, complete) www.nbcmiami.com##+js(set-constant, AdLayersAPI, noopFunc) www.nbcmiami.com##+js(aopr, adInstance) www.nbcmiami.com##+js(aopw, adInstance) www.nbcmiami.com##+js(aopr, adLayersDFP) www.nbcmiami.com##+js(aopw, adLayersDFP) www.nbcmiami.com##+js(aopr, adLayersAdServer) www.nbcmiami.com##+js(aopw, adLayersAdServer) www.nbcmiami.com##+js(aopr, usPrivacyCookie) www.nbcmiami.com##+js(aopw, usPrivacyCookie) www.nbcmiami.com##+js(aopr, usPrivacy) www.nbcmiami.com##+js(aopw, usPrivacy) www.nbcmiami.com##+js(aopr, dfpAdUnits) www.nbcmiami.com##+js(aopw, dfpAdUnits) www.dsogaming.com##.adsbygoogle:remove() ||n5adshostnet.com/impression.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||n5adshostnet.com/ads$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.torcache.net/adx.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.mobpartner.mobi/adserver-js.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css /^https?:\/\/mp3clan\.(com|net)\/subAd\.php/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css /^https?:\/\/mp3clan\.(com|net)\/librarie\/albumAd\.php/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css /^https?:\/\/mp3clan\.(com|net)\/style\/ad\.css/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||newjams.net/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.newjams.net/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hitgames.me^* ||cdn.hadj7.adjuggler.net^* ||lp.ncdownloader.com^* !||lp.vaudix.com/flshDu/?affiliate_id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lp.vaudix.com^* ||yournewncsoft.info^* !||proffigurufast.com/key/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||proffigurufast.com^* ||static.mp3juices.com/v2/i/dl_left.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.mp3juices.com/v2/i/listen_right.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adverts.blaze.com^* ||ads.plos.org^* ||g.cdn1.mega.co.nz/js/mads_2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||oxs1.selsin.net/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||oxs1.selsin.net^* !||data.lizads.com/servlet/view/banner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||data.lizads.com^* ||data.chiasenhac.com/banner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mygpuid.com^* ||luxup.ru/cmrk/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.trkclk.net/mediashakers/scripts/smart/smart.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.trkclk.net^* ||map.popunderz.com^* ||movdivx.com/52mp/index.php/adhandler/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||trackingfm.com^* ||ektezis.ru^* ||mobidump.com^* ||www.odnoklassniki.ru/dk$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.odnoklassniki.ru/oauth/authorize$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||retargetpro.net/api/get_user_data_js.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||advombat.ru/0.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.havysoft.cl/mt_b.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||srvabc.com/ctrd/click/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.ebay.com###rtm_html_391:remove() www.ebay.com###rtm_html_11575:remove() www.ebay.com###rtm_html_:remove() ||click.clickrefinery.com^* !||17549.hit38.namiflow.com/iframe$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||17549.hit38.namiflow.com/ncp/checkBrowser$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||17549.hit38.namiflow.com^* ||rma-api.gravity.com/v1/api/intelligence/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.somethingawful.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||budgetsaresexy.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tag.remnantize.com/tags/HenchFilecom/336x280_ROS.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.mmadsgadget.com/t?id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||expressincomeuniversity.com/clicks/buffers/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adsvids.com/afr.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.audiocastle.net/uploads/468x60_Black_2Button_Download-PlayNow.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cbanners.virtuagirlhd.com/customdata/banner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cbanners.virtuagirlhd.com^* ||ws.areyouahuman.com/ws/trackEvent/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ws.areyouahuman.com/ayahwebservices/index.php/ayahwebservice/recordTime/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.empoweringmedia.net^* ||www.sapitalone.com/track.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.sapitalone.com/search_caf.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.sapitalone.com/tg.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c.qrdeom.com^* ||www.suntrust.com/Static/JS/omniture/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.suntrust.com/portal/sso/beacon/ping.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.suntrust.com/portal/sso/beacon/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.sxp.smartclip.net^* ||vindicoass1.edgesuite.net/Repository/CampaignCreative/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||opensoftwareupdater.com^* www.downloadfilmbaru.com##.centered:remove() www.downloadfilmbaru.com###topads:remove() www.downloadfilmbaru.com##.adunit:remove() www.downloadfilmbaru.com###sticky-ads:remove() ||haftalikburcyorumlari.net^* ||go4up.com/assets/img/downloaden.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.adsrevenue.com^* ||i.isohunt.to/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||filedownloadr.com/dl/goto.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||filedownloadr.com^* ||ads.bit-tech.net^* ||delivery.supportingads.com^* ||enterpriseadsso.salliemae.com^* ||delivery.myswitchads.com^* ||www.dl4all.com/img/dl4all-banner.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.dl4all.com/img/download4.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.dl4all.com/img/1000.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||applicationgrabb.net^* ||masterinset.net^* ||ai.ezmob.com/ezmob.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||partner.googleadservices.com/gampad/google_service.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||partner.googleadservices.com^* ||www.securityweek.com/sites/all/modules/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||us.battle.net.us-noreply.com^* ||www.secure-line2.com^* !||tiads.ew.com/ads/tgx.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tiads.ew.com^* ||track.rtb-media.ru^* ||www.poselki.ru/openads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||poselki.ru/openads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||partner.oboom.com/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||partner.oboom.com^* ||junocloud.me/promos/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||indieclick.3janecdn.com/media/ad-block-detect/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||our.amplifinder.biz/ad2/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||as.studio.adglue.com/adserve/js/ad.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ad.studio.adglue.com/serveJs$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||as.studio.adglue.com^* ||ad.studio.adglue.com^* ||ads.qadserve.com^* ||api.toptenreviews.com/r/c/request_ad.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||phys.org/openx/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css phys.org##.notice-inside:remove() ||www.kmbc.com/code/view/htv-kc1/*/Companion_Ad_fix.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.trackfiledownload.com^* !||www.trackcash.org/entry/lp/index.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.trackcash.org^* ||cdn.dojerena.com/Scripts/MediaScripts/b.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dojerena.com/*/Tag.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dojerena.com/oe.ra$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||radar.network.coull.com/radar$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||radar.network.coull.com^* !||cdn.vidible.tv/prod/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.vidible.tv^* ||download.wowreadydownloads.com^* ||go.wowreadydownloads.com^* ||wowreadydownloads.com^* ||account.elderscrollsonline.com.inspecto.co.vu^* ||banerator.net/impression.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||banerator.net/ads-sync.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||banerator.net/js/show_ads_banerator.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.xxxoh.com/sp/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mmcispartners.com/static/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||simpsons.wikia.com/__spotlights/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||counter.goingup.com/js/tracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||counter.goingup.com^* ||cdn3.cpmstar.com/cached/creatives/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn3.cpmstar.com/cached/js/flashadv13.pack.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||us.battle.net.en-eu.com^* ||*.112.2o7.com^* ||www.tubeplus.me/imp.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mmotraffic.com/catalog/goplay/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.inmuiads.info^* ||f8350e7c1.se^* ||ad.inpizdads.info^* ||pops.velmedia.net^* ||ad.velmedia.net^* !||www.tbar.eu/install.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.tbar.eu^* ||ad.inpulds.info^* !||www.appoder.com/download3/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.appoder.com^* !||www.sofler.com/lp/codecperformer/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.sofler.com^* !||trpxl.com/dl.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||trpxl.com^* ||delivery.us.myswitchads.com^* ||www.hwbox.gr/images/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hwbot.org/banner.img$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.tacastas.com/Scripts/MediaScripts/b.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.tacastas.com^* !||tacastas.com/*/Tag.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tacastas.com/aa.ts$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tacastas.com^* ||assets.braintreegateway.com/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.firstniagara.com/foresee/foresee-trigger.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.firstniagara.com/foresee/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad4.live.liverail.com^* ||cdn.liverail.com/adasset4/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||t4.liverail.com/?metric=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||bidder.eyeviewads.com/liverail$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bidder.eyeviewads.com^* ||addeppo.com/openx/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||syndication.streamads.yahoo.com/na_stream_brewer/brew/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||syndication.streamads.yahoo.com^* !||www.cpmterra.com/ads-sync.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.cpmterra.com/js/show_ads_adsterra.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.cpmterra.com/impression.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.cpmterra.com/ads$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.cpmterra.com^* !||bam.nr-data.net/jserrors/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bam.nr-data.net^* ||i3.putags.com^* ||secure.pn-installer9.com^* !||securepostback.com/tracking/set_server_pixel/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||securepostback.com/tracking/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||m9bzz.movies.donkeychicken.eu^* ||rtb.adsrvr.org^* !||geo-lb02.w55c.net/x/brs1024$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||geo-lb02.w55c.net^* !||rtb-lr-west.chango.com/bidder/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rtb-lr-west.chango.com^* ||la.flvmplayer.com^* !||cdn.adplxmd.com/adplexmedia/scripts/direct/direct.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.adplxmd.com^* ||vrjt5.primeredir.com^* ||liverail.api.peer39.net/proxy/targeting$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vox-static.liverail.com/swf/v4/skins/adplayerskin_1.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vox-static.liverail.com/swf/v4/admanager.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.lofter.com/mailEntry.do?blogad=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.offersquared.com/152media/scripts/direct/direct.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.offersquared.com/152media/tags/xbanner/xbanner.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.offersquared.com^* !||152media.adk2.co/152media/creatives/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||152media.adk2.co^* ||ads.offersquared.com^* !||moselats.com/Redirect.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||moselats.com/fp.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||moselats.com/*/Tag.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||moselats.com/me.as$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||moselats.com^* ||hf9zz.exclusiverewards.dadterritory.eu^* ||zgq1.clearsslredir.com^* ||www.nbestbuy.com^* !||ad.newegg.com/amber/js/jsclient/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.newegg.com^* !||d.monetate.net/trk/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||e.monetate.net/js/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d.monetate.net^* ||e.monetate.net^* ||cdns.brsrvr.com/v1/br-trk-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdns.brsrvr.com/pix.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||chaturbate.com/affiliates/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||chaturbate.com/in/?track=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||chaturbate.com/in/$3p,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||filter.255.cc^* !||tastentravel.com/search/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tastentravel.com^* !||206.190.151.76/frame.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||206.190.151.76/in2.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||206.190.151.76/PluginDetect.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||206.190.151.76/deployJava.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||206.190.151.76/in.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||206.190.151.76/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||us.battle.net.blizzarrd.cn.com^* ||msavideo-a.akamaihd.net/srcx300/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dde.de.drive-files-b.com^* ||deepsearch.adlucent.com^* ||logs3.alldatasheet.com^* ||logs4.alldatasheet.com^* ||mg.dt07.net^* kitchen.manualsonline.com##.searchResult.adResult:remove() ||palocalworld.info/afr.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stat.vidcore.tv^* !||asset.pagefair.com/adimages/adsense.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||asset.pagefair.com/adimages/ad.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||asset.pagefair.com/adimages/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||t.adonly.com/core/v3/ifrCore.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||t.adonly.com^* ||trackkor.com/main/click.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||system-security-error.com-net01.com^* ||tags.adonly.com^* !||cdn.forifiha.com/Scripts/MediaScripts/b.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.forifiha.com/Scripts/MediaScripts/p.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.forifiha.com^* !||forifiha.com/*/Tag.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||forifiha.com/oi.ia$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||forifiha.com^* !||js.hs-analytics.net/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||js.hs-analytics.net^* ||ads.everycall.us^* ||oascentral.quickanddirtytips.com/RealMedia/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||r1soft.idera.com/fileadmin/images/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||insta-cash.net^* ||styleapplicationzillion.com^* ||system-security-error.s-com.mobi^* ||allbestnew.com^* ||meviodisplayads.com/bannerproxy.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adexprt.com/cdn3/index.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.adplxmd.com^* ||lion.collect.mentad.com^* !||imagec17.247realmedia.com/RealMedia/ads/Creatives/ArkOnline/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||imagec17.247realmedia.com/RealMedia/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.thinkcomputers.org/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ver-adt-cm.vindicosuite.com/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tapestry.tapad.com/tapestry/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tapestry.tapad.com^* !||dpdnav.com/Redirect/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||dpdnav.com/click?data=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dpdnav.com^* !||rtb.gumgum.com/usersync$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rtb.gumgum.com^* !||rtg2.salespidermedia.com/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rtg2.salespidermedia.com^* !||rtg.salespidermedia.com/dt.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rtg.salespidermedia.com^* !ytzi.co/main/go.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ytzi.co^* */75.126.8.89/util/click.pl$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cc.chango.com/static/o.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cc.chango.com^* !||flx386.lporirxe.com/flp/flprocv1_56.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||flx386.lporirxe.com^* !||flx342.lporirxe.com/flp/flprocv1_56.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||flx342.lporirxe.com/flp/ncvp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||flx342.lporirxe.com^* !||900902267.pub.ezanga.com/rvf/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||900902267.pub.ezanga.com/tags.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||900902267.pub.ezanga.com^* ||ads.networkhm.com^* ||an.z5x.net^* ||download.verticdn.com^* ||dl3.downloadaesaenineipi.com^* ||freegifts.in^* !||www.affiliation-france.com/pooltag/frame/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.affiliation-france.com/pooltag/spb/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.affiliation-france.com/pooltag/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.computerworld.com/resources/scripts/lib/leadgen_tracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.computerworld.com/common/javascript/s_code.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.computerworld.com/resources/scripts/lib/click_tracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.computerworld.com/resources/scripts/lib/google_ad.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.computerworld.com/resources/scripts/lib/doubleclick_ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||softonic-analytics.net/blank.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||softonic-analytics.net^* !||www.simplyhired.com/event-logging/widget-load-log$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.simplyhired.com/event-logging/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.simplyhired.com/static/js/log.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||promo.cityads.ru/graph/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lizads.com/tags/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||leakedearly.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||leakedearly.net/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.leakedearly.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.leakedearly.net/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||rockdizfile.com/partners/sponsors.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||rockdizfile.com/partners/152media300x250.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||rockdizfile.com/partners/Propeller468x60.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||rockdizfile.com/partners/Velismedia300x250.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rockdizfile.com/partners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||quickfilmz.com^* ||system-security-error.technical-support.info^* ||www.propublica.org/js/public/assets/beacons.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||stats.opbandit.com/tracker$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||stats.opbandit.com/slowload$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stats.opbandit.com^* !||s3.amazonaws.com/propublica/projects/browser-fingerprint/ppfp2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s3.amazonaws.com/propublica/projects/browser-fingerprint/lightgl.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s3.amazonaws.com/propublica/projects/browser-fingerprint/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.propublica.org/js/public/assets/google_ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.propublica.org/js/public/assets/google_ads_boot.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||magnetic.t.domdex.com/8293/pix.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||magnetic.t.domdex.com^* ||s.btstatic.com/tag.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.staples.com/sbdpas/js/omniture/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||get.downloaddesktop3.org/DownloadManager/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||get.downloaddesktop3.org^* ||up.media1fire.com/spn/rec/6.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||up.media1fire.com/spn/rec/14.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||up.media1fire.com/spn/rec.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||109.236.82.94/img/spriteBanner.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||saxp.zedo.com/jsc/fm.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||saxp.zedo.com^* ||static.adzerk.net/reddit/ads.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||images.iskysoft.com/script/download_stat.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cbs.iskysoft.com/jslibs/track.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.filestube.to###stkTgl:remove() ||asset.pagefair.net/adimages/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||filemonetizer.com^* !||download-manage.com/lp/base/download.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||download-manage.com^* ||lp.lphant.com^* ||download.lphant.com^* ||www.exitjunction.com/script/script.jsp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||c.webengage.com/v.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c.webengage.com^* !||z.webengage.com/gz.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||z.webengage.com^* ||www.new-hdplugin.com^* ||4share.vn/adsimg/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pups.bdimg.com/advert/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pups.baidu.com/stats^* ||pups.baidu.com^* !||go.youlamedia.com/lg.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||go.youlamedia.com/ajs.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||go.youlamedia.com/sjs.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||go.youlamedia.com^* !||ss3.zedo.com/jsc/ss3/ff2.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ss3.zedo.com^* !||cdn.syngrestic.com/Scripts/MediaScripts/b.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.syngrestic.com/Scripts/MediaScripts/p.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.syngrestic.com/Scripts/MediaScripts/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||syngrestic.com/sn.tc$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||syngrestic.com/*/Tag.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.lpmxp602.com^* ||d1979sqwip95sw.cloudfront.net/1x1.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||lib_nf.findbestsolution.net/go.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lib_nf.findbestsolution.net^* !||pixel.wp.com/g.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pixel.wp.com/b.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pixel.wp.com^* !||stats.wp.com/w.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stats.wp.com^* ||static5.gamespot.com/js/compiled/adsDeferredDfp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||c.100im.info/im.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c.100im.info^* !||adverse.persiangig.com/pgads/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adverse.persiangig.com^* ||b51.filenuke.com/afr.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bridge.ame.admarketplace.net^* !||globalizedsearch.com/sk-clkrdr.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||globalizedsearch.com^* !||bijak-it.net/redirect.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bijak-it.net^* microsoft-news.com##.adsbygoogle:remove() !||ads.p.veruta.com/adserver/track$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.p.veruta.com^* ||w.p.veruta.com/imgcache/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stream.get-tune.net^* ||www.generaldownload.com^* ||network.bazaarvoice.com/st.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.brsrvr.com/v1/br-trk-5104.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.brsrvr.com^* ||mitrackor.com/ofr/click.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn6.digitalfaq.com/ox/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||downlofree.com^* !||nustrk.com/landing.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||nustrk.com/adck.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nustrk.com^* ||bittorrent.am/hide.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bittorrent.am/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bittorrent.am/img/du.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tr.cdnfile.com/js/reactor.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tr.cdnfile.com^* !||www.download111bucket.com/go/downloadmanager$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.download111bucket.com^* !||www.torntv-dl.net/temporary/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.torntv-dl.net/download/torrentzpro2.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.torntv-dl.net/common/unibomber.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||torntvdl.net/download/product_download.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.torntv-dl.net^* ||torntvdl.net^* !||ertosatie.com/Redirect.eng$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ertosatie.com/fp.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ertosatie.com/*/Redirect.eng$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ertosatie.com/*/Tag.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ertosatie.com/ro.ai$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.ertosatie.com/Scripts/MediaScripts/b.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.ertosatie.com/Scripts/MediaScripts/c.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ertosatie.com^* ||cdn.ertosatie.com^* ||www.smartlinks.dianomi.com/smartads.epl$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||horizon.sheknows.com/horizon/track$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.eyeviewads.com^* ||serve.eyeviewads.com^* ||static.tinypic.com/j/track_v4.4.1.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.sheknows.com/js/ga-tracking.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||newsone.com/wp-admin/admin-ajax.php?action=iframe_ad$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||set.tidaltv.com/Ping.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.usbank.com/foresee/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hello.staticstuff.net/w/__stats.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.dwnlultimate.com^* ||integrate.112.2o7.net^* ||ads.bittorrent.com^* ||display-download.com^* ||kitkatsoft.net^* ||puzky.com^* ||www.credit-repair.tips^* !www.techdirt.com###div-gpt-ad-1391648620473-0:remove() www.techdirt.com##*[id^="div-gpt-ad-"]:remove() ||horizon.newsone.com/horizon/track$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||teosredic.com/null/*/Redirect.eng$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||teosredic.com/mediahosting.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.teosredic.com/Scripts/MediaScripts/b.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||teosredic.com/*/Tag.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||teosredic.com/to.dc$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.teosredic.com^* ||teosredic.com^* ||ads.bannerplay.com^* ||ads.betweendigital.com^* ||match.ads.betweendigital.com^* ||ads.bridgetrack.com^* ||us.battle.net.eu-password.com^* ||us.battle.net.eu-en.com^* ||us.battle.net.password-blizzard.com^* ||us.battle.net.en-blizzard.com^* ||www-runescape-com.m-weblogin.ws^* ||services-runescape.com-form.ws^* ||free-filehost.net^* ||online.americanexpress.com/myca/shared/summary/estatement/dct/js/omniture/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||web.industrybrains.com/js/ads/show.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||web.industrybrains.com/js/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.freshremix.ru/templates/freshremix_eng/images/ads_728x90.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.freshremix.ru/templates/freshremix_eng/images/ads_$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.freshremix.ru/templates/freshremix_eng/images/300.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rhythmtrk.rnmd.net/event/etrack$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pageurl.btrll.com/Pix-1x1.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rnmpd.geo.rnmd.net/adservice/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||thepiratebay.si/star_2.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||bestmediadownloads.com/0/download_direct.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bestmediadownloads.com^* ||baymsftvsbl01.dns.microsoft.com/ms.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||analytics.recruitics.com^* ||adbytes.buzzbytes.net^* ||horizon.thefrisky.com/horizon/track$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||horizon.thefrisky.com/horizon/recommendtrack$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.howaboutwe.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||djibeacon.dowjoneson.com/v1/event.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||djibeacon.dowjoneson.com^* !||cdn.livefyre.com/libs/tracker/v0.3.3/tracker.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.livefyre.com/libs/tracker/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mw1.wsj.net/MW5/content/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||video-api.wsj.com/api-video/player/js/tracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||imgur.com/gallery/hot/viral/page/*/hit.json$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||syngrestic.com/null/*/Redirect.eng$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||de.adki.com/rdc/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||de.adki.com^* ||download7325endpoint.com^* ||ads.wildtangent.com^* www.uploadable.ch###adn-below-article:remove() www.uploadable.ch##.adn_container.below-article:remove() ||ads.2xbpub.com^* ||download8817endpoint.com^* !||cdnadk.tlvmedia.com/tlvmedia/scripts/direct/direct.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdnadk.tlvmedia.com/tlvmedia/scripts/direct/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||media.adscube.com^* !||px.dynamicyield.com/uia?id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||px.dynamicyield.com^* ||tagx.nytimes.com^* ||a1.nyt.com/assets/article/*/js/article/ad-loader.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a1.nyt.com/assets/article/*/js/foundation/views/ad-view-manager.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.dynamicyield.com/scripts/4102/dyjq-min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.dynamicyield.com/scripts/4102/dy-min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||st.dynamicyield.com/ast$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||st.dynamicyield.com^* ||www.bestapp88.com^* ||www.softappspeed.com^* ||sticker.yadro.ru/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||post.rmbn.net/cgi-bin/main.fcgi$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||post.rmbn.net/js/smartblock/get_code.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||inclk.com/static/lprdr.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||aid.xidx.org/t.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adexprt.com/exo_na/bottom.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adexprt.com/exo_na/sky1.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adexprt.com/exo_na/sky2.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adexprt.com/exo_na/top.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adexprt.com/exo_na/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||w.uptolike.com/widgets/v1/imp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.scientificamerican.com##.adSpace:remove() www.scientificamerican.com##.bannerAd:remove() www.scientificamerican.com###bannerContain:remove() ||cl.netseer.com/dsatserving2/servlet/BannerServer$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||creative.ad120m.com/matomy/scripts/direct/direct.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||creative.ad120m.com^* ||rtbpop.com/afu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ps.ns-cdn.com/dsatserving2/scripts/netseerads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ps.ns-cdn.com/dsatserving2/scripts/render.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ps.ns-cdn.com/dsatserving2/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||i2.msdn.microsoft.com/Areas/Global/Content/Omniture/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||feed3match.com/match/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||dprtb.com/Redirect/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||dprtb.com/click$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dprtb.com^* ||consumer-response.info^* ||consumers-research.com^* ||consumers-feedback.org^* !||cpvtrack202.com/landing.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cpvtrack202.com^* ||www.firedrive.com/728x90.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||teasoft.co^* ||pos.baidu.com^* !||pos.baidu.com/acom?adn=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ubmcmm.baidustatic.com/media/v1/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ubmcmm.baidustatic.com^* !||ad120m.adk2.co/ad120m/scripts/direct/direct.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad120m.adk2.co^* !||optimized-by.vitalads.net/serve/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||optimized-by.vitalads.net^* ||121.10.242.101:88/analysis.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||images.mobibiobi.com/www/images/cebe9fbad92e461b9c7671951fee5845.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||images.mobibiobi.com/www/images/67253c48cd96cc7e8774e613bc79040c.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||images.mobibiobi.com/www/images/fb5fd276d69e410d4a9e4f896d80d8ec.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||images.mobibiobi.com/www/images/2feb4d1923fea918a44b349937af00a6.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||images.mobibiobi.com/www/images/6836033e39176c2ff469b8ae177bb455.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||images.mobibiobi.com^* ||abcstats.com/stats.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||toplist.cz/dot.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||go.mobibiobi.com/lg.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||go.mobibiobi.com^* ||www.firedrive.com/appdata/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.zillow.com/widgets/search/PartnerAdWidget.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rs.gwallet.com/r1/pixel/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||online.americanexpress.com/myca/shared/summary/estatement/js/app/omniture/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||btnativedirect.com/click$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||btnativedirect.com/Redirect/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||btnativedirect.com^* ||static4.gamespot.com/js/compiled/tracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.boomtrain.com/analyticstrain-1.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.tigerdirect.com/foresee/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d3v27wwd40f0xu.cloudfront.net/js/tracking/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tr-1.agilone.com/tr-as.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tr-1.agilone.com^* ||downloads.ziddu.com/js/cf-interstitials.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d.tds.adlabs.ru^* ||soft74.net^* ||www.audiocastle.net/cdn-cgi/pe/bag2$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dtxtngytz5im1.cloudfront.net/qtracker-v3-min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.greensmoke.com/catalog/track-page.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||earn.greensmoke.com/aff/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.greensmoke.com/aff/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||647-ct.c3tag.com/c3metrics-647.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||647-ct.c3tag.com^* ||www.any.gs/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||orca.qubitproducts.com^* ||he.reimageplus.com/lp/sys/index_src.php?tracking=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||kinja.com/api/analytics/stats/track.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||kinja.com/api/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||web3-ads.adk2.co/web3/scripts/popunder/popunder.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||web3-ads.adk2.co^* ||www.monova.org/top.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||directrev.blob.core.windows.net/scripts/compressed.common.lib.v.1.3.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||directrev.blob.core.windows.net/scripts/compressed.pop.lib.v3.6.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adprovider.adlure.net^* !||www.supremedownload.com/tdownload.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.supremedownload.com^* ||qv4zz.popularprizes.heatcannon.biz^* ||41606ib12f4fcib1292d5ybh.catanexus.com^* ||espn.go.com/espn360/adserver/adFrame$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||secure.wildstar-online.com.stormshi.uni.me^* ||paypal-confirm.patnaluagency.com^* ||assets.vevo.com/adsales/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pw.mmstat.com/b.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pw.mmstat.com^* !||ac.open.phpwind.com/b.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ac.open.phpwind.com^* ||purgrobi.com/*/null/Tag.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||purgrobi.com/ub.pi$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adv-first.ru/code/bill.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||t.trafmag.com/images/1px-matching.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||t.trafmag.com/images/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ucounter.ucoz.net^* !||hulkload.com/spn/rec/1.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||hulkload.com/spn/rec/6.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||hulkload.com/spn/rec/28.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||hulkload.com/spn/box/14.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||hulkload.com/spn/box/6.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||hulkload.com/spn/box/10.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||hulkload.com/spn/box/17.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hulkload.com/spn/box/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hulkload.com/spn/rec/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.400gb.com/advview2013.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.400gb.com/adm.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||doubleclick.tv002.com^* ||www.400gb.com/min/g=js_1$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.400gb.com/min/g=js_2$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wpa.qq.com/pa$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wpa.qq.com/msgrd$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hm.baidu.com/h.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||click.bounceads.net/click.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||click.bounceads.net^* ||opensoftwaredownload.com^* ||adserver-12.tk^* ||adserver-11.tk^* ||adserver-15.tk^* ||adserver-09.tk^* ||adserver-10.tk^* ||adserver-17.tk^* ||adserver-14.tk^* ||adserver-13.tk^* ||adserver-16.tk^* ||frameptp.com/promote.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||frameptp.com/js/promote.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.cpmaffiliation.com/9962-300x250.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.cpmaffiliation.com/15535-300x600.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.cpmaffiliation.com/15535-300x250.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.cpmaffiliation.com/15535-siteunder.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.cpmaffiliation.com/15535-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.cpmaffiliation.com/1256-468x60.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.surfactif.fr/tag/banInt.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||downloadorce.com/go/mplayer?creative_id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||downloadorce.com^* ||cdn.epom.com/files/*/2buttons_DownloadPlay_Arrows_$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||countryselect.slingbox.com/ad/ad.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||countryselect.slingbox.com/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||http.tidaltv.com/admanager/superbuddha/api/TidalTV_AS3_API_v1_0_4.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||http.tidaltv.com/admanager/vpaid/VG_VPAID_V2_01.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||http.tidaltv.com/admanager/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||n5adshostnet.com/js/show_ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.dnldyoursoft.com^* ||www.2swm6b0qbj.com^* ||www.bwnopz4r0r.com^* ||www.5vk5bzpui3.com^* ||www.7xnsg1rrb1.com^* ||ttb.softddlupdate.com^* !||u5606.72.spylog.com^* ||u*.spylog.com^* !||a.visadd.com/internal/blocked$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||a.visadd.com/script/layer/serve$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||a.visadd.com/script/layer$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.visadd.com^* ||23.239.21.209:8007/r/getjs$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||11164047-127095083.id2.clickprotects.com/logClient$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||11164047-127095083.id2.clickprotects.com/js/redirect-min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||11164047-127095083.id2.clickprotects.com/redirect$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||11164047-127095083.id2.clickprotects.com^* ||c2.clickprotects.com^* !||btprmnav.com/Redirect/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||btprmnav.com/click$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||btprmnav.com^* ||us.battle.net.eu-wow.net^* ||us.battle.net.en-battle.com^* !||s.ytimg.com/yts/jsbin/www-search-ads-vflX6Dv1k/www-search-ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.ytimg.com/yts/jsbin/www-search-ads-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adclick.g.doubleclick.net^* ||ir.ebaystatic.com/pictures/aw/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.ecommr.com/wp-content/secure.chaseonline/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||justenergyperks.com/CFIDE/classes/sub.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||justenergyperks.com^* !||googleads4.g.doubleclick.net/pagead/adview$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||googleads4.g.doubleclick.net/pcs/view$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||googleads4.g.doubleclick.net^* !||usefb.adsrvr.org/bid/feedback/appnexus$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||usefb.adsrvr.org^* !||servedbyy-ssmb.netdna-ssl.com/springserve/v1/generator.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||servedbyy-ssmb.netdna-ssl.com^* ||stage.tracker.springserve.com^* !||rad.msn.com/ADSAdClient31.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rad.msn.com^* !||match.adsrvr.org/track/cmb/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||match.adsrvr.org/track/cmf/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||match.adsrvr.org^* !||ads1.msads.net^* !||ads1.msads.net/library/dapmsn.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.redbookmag.com##.blogs_2_square_ad:remove() ||s.ad129m.com^* ||ads.web3-ads.com^* ||ads.servebom.com^* ||ads.prntscr.com^* ||ads.cpserve.com^* ||onad.adyapper.com^* ||onad2.adyapper.com^* ||d.adroll.com^* ||lp.ilividnewtab.com^* ||www.networkworld.com/www/js/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.networkworld.com/www.idge/js/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.networkworld.com/www.idge/js/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tags.bkrtx.com/js/bk-coretag.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tags.bkrtx.com^* ||adelogs.adobe.com^* ||serve.popads.net^* ||www.twoddl.eu/cdn-cgi/pe/bag2?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cybernetics.ru/files/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cybernetics.ru^* !||www.cloudtracked.com/tse/tracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.cloudtracked.com/tse/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.cloudtracked.com/ts/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||trk.bidtrk.com^* ||ad127m.adk2.co^* !||creative.ad127m.com/ad127m/scripts/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||creative.ad127m.com^* ||s.ad127m.com^* ||babanetwork.adk2x.com^* ||ads.beasleyinteractive.com^* ||solutions.interactiveone.com/Omniture/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tags.deployads.com^* ||ad.kiosked.com^* ||www.yasni.com/ad_pop.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||insta-cash.net/?iframe$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||weberty.pw/rocki?q=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||weberty.pw^* ||d17e6tfjusloxe.cloudfront.net/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ciclohtest.com^* !||mabirol.com/advertisement.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mabirol.com^* !||www.ohmyplayer.com/adbe_adl_popup_tlt/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.ohmyplayer.com^* ||www.trustedleadtracking.com/mt/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||moblove.net/89dF$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||moblove.net^* ||zinzimo.info^* ||dadegid.ru^* ||dcezz.watchnow.pollutionmarble.biz^* ||qr9k.adservlite.com^* !||geede.info/j/w.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||geede.info^* ||ads.avazu.net^* !||www.gamefly.com/Js/GFUI/Tracking/Tracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.gamefly.com/Js/GFUI/Tracking/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.raidrush.ws/com/300x250_adcash.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.raidrush.ws/com/300x250_gunggo.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.raidrush.ws/com/300x250_saymedia.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.raidrush.ws/com/300x250_$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.raidrush.ws/com/pop.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||crawli.net/com/pop.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||a.adroll.com/j/roundtrip.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.adroll.com^* ||www.uplongtied.com^* ||bewzz.watchnow.vanplot.biz^* www.getpaint.net###adbanner:remove() ||ajadazekollari.com^* ||padsdel.cdnads.com^* ||partnerads.ysm.yahoo.com^* ||www.oboom.com/download/ads$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||router.adlure.net^* ||ad.cashdorado.de^* ||youspacko.com/com/traffic_out.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||youspacko.com/com/traffic_in.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pureleads.com^* ||clicks.pureleads.com^* !||r.pureleads.com/find?&p=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||r.pureleads.com^* !||p1.dntrck.com/tr?id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||p1.dntrck.com^* !||btdnav.com/Redirect/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||btdnav.com/click?data=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||bttrack.com/direct?url=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||btdnav.com^* ||bttrack.com^* ||respn.com^* ||espmn.com^* ||wwwespn.com^* !||liversely.com/g4u?q=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||liversely.com^* ||in.mydirtyhobby.de/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||buxflow.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||mediaserver.bwinpartypartners.com/images/AdServer/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||mediaserver.bwinpartypartners.com/renderBanner.do$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mediaserver.bwinpartypartners.com^* ||sportgeist.org/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.firstload.de/affiliate/log.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||api.adlure.net/partner/click/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.adlure.net^* ||creative.ad122m.com^* ||ad131m.adk2.co^* ||stat.gmonitor.aliimg.com^* ||statse.webtrendslive.com^* !||v4download2.biz/download.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||v4download2.biz^* !||servedby.eleavers.com/c/adclick.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||servedby.eleavers.com/ads/ads.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||servedby.eleavers.com^* ||fkref.com^* kingofshrink.com###google_ads_frame1:remove() kingofshrink.com###google_ads_frame2:remove() kingofshrink.com###google_ads_frame3:remove() ||www.meguro.pl/wp-includes/images/smilies/dim.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||livinglightwebdesign.com/compiler.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||flshplyrcrshwrngms.xigeeks.com^* ||ads15924.hotwords.es^* ||media.adpv.com^* ||ads.adpv.com^* ||cf.ads.kontextua.com^* ||fsoft4down.com^* ||ads.appnext.com^* !||cdn.kixer.com/ad/load.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.kixer.com/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||whoson-gw.v2cigs.com/stat.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||go.padsdelivery.com^* ||clicks.zwaar.org^* !||clicks.zwaar.org/public/float-ad.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||clicks.zwaar.org/public/code-float-ad.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||36d71138.mpstat.us^* !||sirrefcorp.com/login.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sirrefcorp.com^* ||horizon.variety.com/horizon/track$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||horizon.huffingtonpost.com/horizon/recommendtrack$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||js.rbxcdn.com^* !||ci.beap.ad.yieldmanager.net/reg_ci?bv=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ci.beap.ad.yieldmanager.net^* !||www.miniup.com/skin/miniup/AdBlock/fuckadblock.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.miniup.com/skin/miniup/AdBlock/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||theconversation.com/javascripts/lib/content_tracker_hook.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pixel-dimestore.dmi.sensic.net/pixel.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pixel-dimestore.dmi.sensic.net/vi-pixel$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||securepaths.com/pixel.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||windowsitpro.com/sites/all/modules/custom/penton_omniture/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||windowsitpro.com/sites/all/modules/custom/pm_doubleclick/blankIframe.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||windowsitpro.com/sites/all/modules/custom/pm_doubleclick/navigation-ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||windowsitpro.com/sites/all/modules/custom/pm_doubleclick/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||windowsitpro.com/sites/all/modules/contrib/swftools/onepixelout/onepixelout.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pivotrunner.com/*/Tag.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pivotrunner.com/*/Redirect.eng$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.pivotrunner.com/Scripts/MediaScripts/b.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.pivotrunner.com/Scripts/MediaScripts/fb.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.pivotrunner.com/Scripts/MediaScripts/p.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.pivotrunner.com/Scripts/MediaScripts/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||genesycraft.com/marks.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||genesycraft.com^* ||msec.xp1.ru4.com/tad?_o=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.adsrvmedia.net^* ||advertorials.genieo.com^* ||analytics.app.amazonbrowserapp.com^* espn.go.com##.admgr-ifrm:remove() espn.go.com###ad-320:remove() news10.com###WNAd1:remove() news10.com##.wnad.wnad1:remove() !||www.sq2trk2.com/LTSanitizer.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.sq2trk2.com/click.track$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.sq2trk2.com^* ||www.smmserve.com/redirect/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ftyzz.rewardzone.updateface.biz^* ||www.sopyourway.com/track.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||om.sears.com/b/ss/searssocialprodnew,searsqadelvercom/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||om.sears.com^* ||go.onhitads.net^* ||hamzafurniture.com/squareness.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||c.shld.net/04100627/shared/js/sessiontracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||c.shld.net/04100627/shared/js/shcGlobalTracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||c.shld.net/11061846/shared/js/shcGlobalTracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||c.shld.net/11181839/js/s_code.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c.shld.net/*/js/s_code.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c.shld.net/*/shared/js/sessiontracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c.shld.net/*/shared/js/shcGlobalTracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||c.shld.net^* !||ps.shopyourway.com/Omniture/Account$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ps.shopyourway.com/Omniture/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||stats.sywcdn.net/pixel.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||stats.sywcdn.net^* ||boxesists.com^* ||client-analytics.braintreegateway.com^* ||fast.fonts.com/t/trackingCode.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static1.gamespot.com/js/compiled/adsDeferredDfp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static5.gamespot.com/js/compiled/trackingWithCT.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||boomerang.digitalriverws.com/log?rt.start=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||freebizmag.tradepub.com/data/freebizmag_tracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||freebizmag.tradepub.com/data/freebizmag_omniture.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.boomtrain.com/analyticstrain-2.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.searchpeack.com/go.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.searchpeack.com/filter.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.searchpeack.com/renew.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.searchpeack.com/popupads.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.searchpeack.com^* !||homets.info/queen_file$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||homets.info^* !||reditions.net/queen_file$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||reditions.net^* !||scs.webtrends.com/dcssl7fu21000000spuul99eh_3r2o/dcs.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||scs.webtrends.com/dcssl7fu21000000spuul99eh_3r2o/wtid.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||scs.webtrends.com^* ||flx486.lporirxe.com/flp/flprocv1_56.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||flx486.lporirxe.com/flp/ncvp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.xtexjobs.com/secure/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||home.capitalone360.com/js/adwizard/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.oracleimg.com/us/assets/metrics/ora_otn.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.oracleimg.com/us/assets/metrics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bauman.listenergy.com/squeeze$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.qqc.co/popUnder/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.qqc.co/scripts/generated/key.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.qqc.co/AhAdb?r=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||masteroids.com/g4u?q=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||masteroids.com^* ||go4up.com/assets/img/d0.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.srax.com^* ||breskvica.net/images/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ad.linksynergy.com/fs-bin/show^* ||ad.linksynergy.com^* ||www.woothemes.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.techinstallent.com/flv-player/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.techinstallent.com^* ||static.techinstallent.com^* !||www.freebestinstall.com/flv-player/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.freebestinstall.com^* ||www.gamestop.com/gs/aflbanners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.adstract.com/adstract/creatives/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.adstract.com^* ||myimagetracking.com/sc.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||go.wbsadsdel.com/afu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||go.wbsadsdel.com^* !||cache.specificmedia.com/creative/blank.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cache.specificmedia.com/creative/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cache.specificmedia.com/otherassets/adchoices/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||145-ct.c3tag.com/c3metrics-145.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||145-ct.c3tag.com/ctv4/ctcall.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||145-ct.c3tag.com^* ||ver-adt.vindicosuite.com/verify.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||stage.traffiliate.com/TrafficCop.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stage.traffiliate.com^* ||s-tag.z5x.net:8001/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s-tag.z5x.net^* !||a.kickass.so/adx.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.kickass.so/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ib.mookie1.com/at.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ib.mookie1.com/pibiview.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||oascentral.consumerreports.org^* oemfilebox.com##.button_buy2 ||dking.netmng.com/pixel/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.highcpms.com/impression.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.nsdfsfi1q8asdasdzz.com/ads?key=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.nsdfsfi1q8asdasdzz.com^* ||filesoup.com/js/brotator.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.cdn.filesoup.com/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||starvestnik.ru/ad1.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.videohelp.com##div[class="javascriptoff"]:remove() ||www.videohelp.com/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.videohelp.com/oxp/www/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css forum.videohelp.com##+js(aopr, adsbygoogle) forum.videohelp.com##+js(aopw, adsbygoogle) ! TODO: Are the ids in the following two rules randomly generated? forum.videohelp.com##div[id="ADJKHDF834"]:remove() forum.videohelp.com##div[id="qvMym2bCOpKBX"]:remove() forum.videohelp.com##div[id="thisisatest"]:remove() forum.videohelp.com##+js(set-constant, checkingjava, noopFunc) forum.videohelp.com##+js(set-constant, checkingjavaagain, noopFunc) forum.videohelp.com##+js(set-constant, checkingjavatest, noopFunc) forum.videohelp.com##+js(no-setTimeout-if, /checkingjava/) ||www.hp.com/cma/ng/lib/hpanalytics_common.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||h10025.www1.hp.com/ewfrf/wc/pages/javascript/qualtricsLoader.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||h10025.www1.hp.com/ewfrf/wc/pages/javascript/jqOmniture.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||etorrent.eu/img/down.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ncradserver.com/go.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css reason.com###ad1 !||sdk-ads.adk2x.com/imp?p=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sdk-ads.adk2x.com^* !||cdn.sdk-ads.com/sdk-ads/tags/xbanner/xbanner.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.sdk-ads.com^* !||a597ec60fb32125e4c6505f50befd8cb.adk2.co/a597ec60fb32125e4c6505f50befd8cb/creatives/49851129$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a597ec60fb32125e4c6505f50befd8cb.adk2.co^* ||www.projectwonderful.com/ad_display.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||eu.static.mega.co.nz/js/mads_2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ib.thingsidigg.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||lmebxwbsno.com/afu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lmebxwbsno.com^* revryl.com###dynox-mg-widget ||static.filmon.com/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||myimagetracking.com/sc.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||myimagetracking.com^* ||cdn.ishort.co/mat71prop.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.fhyn2v.com^* ||juajtaaoty.15ppbtm.com^* !||www.getsofterw.com/xb9onqTr/videoupdater/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.getsofterw.com^* !||clickus.teracreative.com/st?cipid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||clickus.teracreative.com^* !||34.teracreative.com/WhiteLabelBidRequestHandlerServlet?oid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||34.teracreative.com^* ||mediadownloads.mlb.com/mlbam/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.demonoid.pw/cached/torrsqu.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||152media.adk2x.com/imp?p=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||152media.adk2x.com/click/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||152media.adk2x.com^* !||7366920935362d668b958336abdc8d50.adk2.co/7366920935362d668b958336abdc8d50/creatives/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||7366920935362d668b958336abdc8d50.adk2.co^* ||wwwshopyourway.com^* ||vindicoasset.edgesuite.net/Repository/CampaignCreative/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pl5207.putags.com^* ||ct1.addthis.netm/imp6334?p=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lr2234.simple-files.info^* ||i.weblinkads.com^* ||dlr8847.simple-files.info^* !||www.livesetwebs.org/lou2/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.livesetwebs.org^* ||ads.qadservice.com^* !||adstract.adk2.co/adstract/tags/xbanner/xbanner.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adstract.adk2.co^* !||pixel.yabidos.com/fltiu.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pixel.yabidos.com/iftfl.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pixel.yabidos.com^* !||adsrvmedia.adk2.co/adsrvmedia/tags/banner/banner.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adsrvmedia.adk2.co^* !||tds.2ref.co/go?q=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tds.2ref.co^* !||fasterol.info/hp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fasterol.info^* !||coolini.com/b22a286853f853d2ad0539d03276f0da/lou2/dl.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||coolini.com^* ||s.ad131m.com^* ||trackalyzer.com/0.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.xtendadvert.com/show.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.xtendadvert.com/preshow.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||t.dynamicoxygen.com^* !||mg.dt00.net/public/informers/torrents.2ru.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mg.dt00.net^* ||ad.adriver.ru^* ||ads.ad4game.com^* ||downloadbox.org/templates/2014d/images/Download-Box.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.hanselman.com###dmad1 ||creative.ad131m.com^* ||torrent82.com/realclick_board_top_banner.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||torrent82.com/realclick_left_banner.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.torrent82.com##.ad_poly ||partner.toptoon.com/assets/banner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css sharedir.com###yst1 ||static.clickyab.com/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||t.clickyab.com/t.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||t.clickyab.com^* !||a.clickyab.com/ads/show.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||a.clickyab.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||a.clickyab.com/show.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.clickyab.com^* ||p30day.com/images/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.p30day.com/images/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pups.bdimg.com/advert/js/advert.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pups.bdimg.com^* ||a3.fdlstatic.com/129/bundles/downloadcore/js-build/main.desktop-no-omniture.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||techspot-computers.t.domdex.com/search.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||techspot-computers.t.domdex.com^* ||rum.turbobytes.com/v2?beacon=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rum.turbobytes.com/dnsv1?beacon=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||bcp.crwdcntrl.net/map/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bcp.crwdcntrl.net^* ||vprmnwbskk.com^* ||16mydownloadsnow.maynemyltf.netdna-cdn.com^* ||new1getallfilesnow.maynemyltf.netdna-cdn.com^* ||firstmediahub.com^* ||dmp.adform.net^* ||ab165844.adbutler-alion.com^* dl.free.fr###sas_2887146_iframe:remove() !||ww881.smartadserver.com/call/pubj/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ww881.smartadserver.com^* !||a229.casalemedia.com/pcreative?au=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a229.casalemedia.com^* ||creative.mathads.com^* !||a.rfihub.com/cm?cm_dsp_id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.rfihub.com^* !||magnetic.t.domdex.com/sync/casale$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||casale-cm.p.veruta.com/adserver/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||casale-cm.p.veruta.com^* !||konga.postaffiliatepro.com/accounts/default1/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||konga.postaffiliatepro.com^* !||img.paragonads.vn/affbanner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||paragonads.vn/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||paragonads.vn^* ||img.paragonads.vn^* ||ismcorp.vn/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ismcorp.vn/test/Banner-Yamaha-120x600px.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ad.anyclip.com/adserver/api/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.anyclip.com^* ||www.miniup.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css files2share.ch##.ad-stuff !||www.fanduel.com/tracking/page_viewed_event$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.fanduel.com/tracking/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dpb0c5kby1r0k.cloudfront.net/tracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tumblrprobes.cedexis.com^* ||tumblrreports.cedexis.com^* ||level3.cedexis-test.com^* ||i1-js-14-3-01-13960-748435064-s.init.cedexis-radar.net^* !||cookiex.ngd.yahoo.com/v2/cexposer/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cookiex.ngd.yahoo.com^* ||flvxxxply14.maynemyltf.netdna-cdn.com^* !||stockdl.blob.core.windows.net/marmar14/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stockdl.blob.core.windows.net^* ||www.flvxplayerdownloads.com^* ||fmdwbsfxf0.com^* ||godtrck.com^* ||convtrackr.com^* ||sixtyoneoffers.cuptrk.com^* ||gadstrax.com^* ||secureupload.eu/js/1dlpop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rpt.cedexis.com^* !||pointclicktrack.com/click/offer-load/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pointclicktrack.com/click/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pointclicktrack.com^* ||extranet-post.com/pct/or_script/or.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||diriginal.info^* ||www.goneviral.com^* ||toptrailers.net^* www.rziz.net##.adsbygoogle:remove() !||download.downloadboutique.com/pp/query*.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||download.downloadboutique.com^* ||ads.filepup.net^* ||ads.rzb.ir^* ||globalfastads.go2cloud.org^* !||adcdnx.com/p.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adcdnx.com^* !||11164896-000325438947.c.adprotect.net/logClient?atemp=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||11164896-000325438947.c.adprotect.net/js/redirect-min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||11164896-000325438947.c.adprotect.net/redirect?o=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.c.adprotect.net^* !||c.clickprotects.com/c?pid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c.clickprotects.com^* ||compare-electronics.net/servepop.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||xml.clixportal.com/click?i=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xml.clixportal.com^* ||bestones.net^* fileshd.net##.contentback2 ||fileshd.net/images/fhd_1.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.downloadallhere.com/file_1cm.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.downloadallhere.com^* !||s11clickmoviedownloadercom.maynemyltf.netdna-cdn.com/download/kingfiles_iframe300_speed.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s11clickmoviedownloadercom.maynemyltf.netdna-cdn.com^* !||www.smarterdl.com/download/kingfiles_min_1click.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.smarterdl.com^* !||getsecuredfiles.com/kt/ec1/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||getsecuredfiles.com^* www.kingfiles.net###playerDiv www.kingfiles.net###cb-ntms www.kingfiles.net##.cb-video-page www.kingfiles.net###cblocker www.kingfiles.net###fd1 !||stats.anyclip.com/fictivious.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stats.anyclip.com^* ||180upload.com/pir/player2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.mp3-gratuit.org^* !servedby.revcontent.com/ad_images/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css servedby.revcontent.com^* ||api.revcontent.com/respond/serve.js.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.grandascent.com/wp-content/plugins/sranalytics_wordpress$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||service.clicksvenue.com/show.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||service.clicksvenue.com/redirect.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||service.clicksvenue.com^* !||track.indiegala.com^* !||ads.bestwebnutfun.com/banner.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.bestwebnutfun.com^* ||www.vipcpms.com/impression.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.vipcpms.com/click.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||livesetwebs.org^* ||cdn.pch.com/SpectrumMedia/Spectrum/scripts/SpectrumAnalytics.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.pch.com/SpectrumMedia/Spectrum/scripts/Analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.evergage.com/beacon/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.evergage.com^* ||36f10ff3.mpstat.us^* ||setian.info^* !||download-cdn.com/get.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||download-cdn.com^* !||www.greater-download.com/tdownload.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.greater-download.com^* !||www.our-hurricane-file.net/getT.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.our-hurricane-file.net^* !||downloadfiles-cdn.com/direct/download.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||downloadfiles-cdn.com^* !||download.freesoftindex.com/software/GotClip_Setup.exe$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||download.freesoftindex.com^* !||windoffers.com/finish.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||windoffers.com^* ||www.r7wti7bwji.com^* !||ttb.newsofted.com/download/request/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ttb.newsofted.com^* ||nbtbt2l.bz3thn7xnr.com^* !||www.softwaretake.com/iXDfjOtc/videoupdater/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.softwaretake.com^* ||www.vipcpms.com/watch?key=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ttb.r7wti7bwji.com^* ||fitatvu.bz3thn7xnr.com^* ||172.245.136.54/dl/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||107.150.21.130/dl/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||napsurf.com^* ||kg.rsdown.org^* ||www.web4link.com^* ||us.oputster.com^* ||www.mediapage345.com^* !||get1.ddlmedia.info/DownloadManager/Get$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||get1.ddlmedia.info^* ||glodls.to/static/images/dlnow.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.datafilehost.com###yst1 ||bzrvwbsh5o.com^* ||img.datafilehost.com/bnr003.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ebzkswbs78.com^* !||placehold.it/575x80$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||placehold.it^* !||pastes.binbox.io/ad/banner?paste=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pastes.binbox.io/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||binbox.io/ad/banner?paste=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||binbox.io/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vertshock.com/affiliate-resources/images/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||short.safelinkconverter.com/adserver/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||short.safelinkconverter.com/adserver/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pl4526.bntags.com/js/show_ads_adsterra.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.bntags.com/js/show_ads_adsterra.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.gamestorrents.com###\33 50510caf5496:remove() ||gameskwala.com/cdn-cgi/pe/bag2?r[]=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||srv.statshelper.net/visit.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||srv.statshelper.net^* !||hd-plugin.com/download/kingfiles_hd1.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hd-plugin.com^* www.kingfiles.net##div[style="float:left !important;width: 99vw !important;height:31px !important;top:12px !important;z-index:9999 !important;text-align:left !important;display:block !important;"] www.kingfiles.net###da52f37c616e25b:remove() www.kingfiles.net###\31 032bedfce:remove() ||adserver.smackchow.com^* ||adserver.highspeedtesting.com^* ||adss.ad-maven.com^* ||ad.policeone.com^* ||engine.adclick.lv^* ||keytarget.adnet.lt^* ||xtexjobs.com^* ||www.downloadthesefiles.com^* ||www.myfilesdownload.net^* !||www.44download.com/pc/5695.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.44download.com^* !||adsvidsdouble.com/afr.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adsvidsdouble.com^* ||get.down0101tech.info^* ||www.dyo.gs/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ad.mail.ru/cm.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.mail.ru^* !||get.file21desktop.com/DownloadManager/Get?p=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||get.file21desktop.com^* ||www.adopshost1.com/ads-async.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adopshost1.com/impression.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adopshost1.com/js/show_ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adopshost1.com/multi-cookie.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adopshost1.com/set-action-cookie.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adshost2.com/multi-cookie.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adshost2.com/no-impression.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adshost3.com/ads-async.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adshost3.com/ads?v=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adshost3.com/js/show_ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.utappymobile.com/multi-cookie.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||newshub.org/content/teaser?p=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||b.c8.net.ua/b/1x1.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||epom-sync.rutarget.ru/sync?u=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||epom-sync.rutarget.ru^* ||r3.c8.net.ua/match.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||st.targetix.net/match?id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||sync.zenoviaexchange.com/usersync2/epom?redir=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sync.zenoviaexchange.com^* ||www.jscount.com/a/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||eas21.emediate.eu/EAS_tag.1.0.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||eas21.emediate.eu/eas^* ||eas21.emediate.eu^* ||cdn2.maxiget.com/js/trinity.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tjs.maxiget.com/cdn/js/trinity.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||trf.insta-cash.net/nav?k=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||trf.insta-cash.net^* dlbot.net##.advert-block-smft ||ad.ddestiny.ru^* !||adserving.mediacoltd.com/newServing/go.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adserving.mediacoltd.com^* !||search.cheapcatfoods.com/cpm.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||search.cheapcatfoods.com^* !||trk.sslname.com/tracking202/redirect/rtr2.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||trk.sslname.com^* ||target-coupon-codes.com/pop.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cloudserving.mediacoltd.com/cloudServing/redir.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cloudserving.mediacoltd.com^* ||cdn3.kovla.com/static/js/popunder7.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||a.oldtiger.net/show.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.oldtiger.net^* !||a.yu0123456.com/newServing/inter.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||a.yu0123456.com/newServing/getkey.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||a.yu0123456.com/newServing/searchTrack.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.yu0123456.com^* ||static.hatid.com/newServing/js/show.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css zeupload.com##.advert-block-smft ||fldownloadcom.maynemyltf.netdna-cdn.com^* !||affiliate.integral-marketing.com/offer/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||affiliate.integral-marketing.com^* ||146.148.85.61/rtb?k=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.latestmovieinfo.com^* ||subscribe.epicurious.com/circulation/shared/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||fqrzz.rewardzone.sweepsbelieve.country/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||5jqzz.rewardzone.sweepsbelieve.country/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.rewardzone.sweepsbelieve.country/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||14zd.safesafenow.com^* ||survey.com-annualsurvey.info^* ||lp.freegameszonetab.com^* sinhvienit.net##.uniad-banner-image !||zone.uniad.vn/data/banner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||zone.uniad.vn/publisher/imp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||zone.uniad.vn^* !||api.adtimaserver.vn/track/hit.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||api.adtimaserver.vn/rdext/html?zoneid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.adtimaserver.vn^* ||kenhsinhvien.net/imp.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sinhvienit.net/imp.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||media.adnetwork.vn/js/adnetwork.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||media.adnetwork.vn^* !||s11clickmoviedownloadercom.maynemyltf.netdna-cdn.com/js/kgdbase.min.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||91.205.157.39:81/TDS/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||booksrfree.com/img/downmid.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||get.file22desktop.com/DownloadManager/Get?p=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||get.file22desktop.com^* ||booksrfree.com/img/Download-OnlineBooks.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.nexusmods.com##.banner-ad www.nexusmods.com###ad-right www.nexusmods.com##.block-bg ||check2time.checkerweb.com^* ||getr.file8desktop.com^* ||serv.down4desk.com^* ||173.45.106.130/sites/canvas/pp.landings/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||64.79.79.226/tracker/adClick.ashx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||64.79.79.226/tracker/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mmotraffic.com/redirect2.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||plarium.com/action/en/pirates/setcampaigncookie/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||system52.net^* ||www.vdownloadfree.com^* !||free.videodownloadconverter.com/toolbarinstalled.jhtml$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||free.videodownloadconverter.com/install_js.jhtml$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||free.videodownloadconverter.com^* !||www.just-downloads.net/nlp/e/adsterra/vid_converter^* ||www.just-downloads.net^* ||dwlzz.rewardzone.bonusmice.xyz^* ||azwzz.rewardzone.bonusmice.xyz^* ||aabe3b.se^* !||funani.co.il/link2.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||funani.co.il^* ||load.instinctiveads.com^* ||wwwapps.ups.com/javascript/webtrends.load.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||p.37see.com/p/spec_redirect.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||p.37see.com^* ||ningme.ru/js/traf.start.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.tfile.ru/js/ads.85.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||dlc.johntorg.ru/download/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dlc.johntorg.ru^* !||a.xtargeting.com/cpxcenter/view.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.xtargeting.com^* !||a.yesadsrv.com/cpxcenter/searchpop.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||a.yesadsrv.com/display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||a.yesadsrv.com/newServing/searchTrack.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.yesadsrv.com^* !||a.yu0123456.com/show.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||autosurf.djmatioca.com/ads.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.djmatioca.com^* ||freemediastats.com/getcounter/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adsbidder.net/CS4track132$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adserving.costingcheapest.com/newServing/banner_frame.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adserving.costingcheapest.com^* !||b.yu0123456.com/newServing/banner_frame.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||b.yu0123456.com/newServing/getkey.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||b.yu0123456.com/newServing/go.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||b.yu0123456.com/newServing/links.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||b.yu0123456.com/newServing/roitrack.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||b.yu0123456.com/newServing/searchTrack.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||b.yu0123456.com/newServing/search_banner.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||b.yu0123456.com/show.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||b.yu0123456.com^* !||tag.cleverad.com.br/cleverad/campanha/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tag.cleverad.com.br/cleverad/cleverd3.0/js/cleverd.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tag.cleverad.com.br/cleverad/processar?formato=Q&formatoid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tag.cleverad.com.br^* !||getlivepchelp.com/pc-repair/pup.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.getlivepchelp.com/pc-repair/pup.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||getlivepchelp.com^* ||www.getlivepchelp.com^* !||fullmedia.info/logs/click.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||fullmedia.info/logs/landingpage/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fullmedia.info/logs/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||download.mysoftwarelive.com/chrome/get.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||download.mysoftwarelive.com^* !||stat.freemediastats.com/piwik.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stat.freemediastats.com^* ||pub.clicksor.net/newServing/js/show.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pub.clicksor.net/newServing/js/ui.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||getfilefox.com/filedownload/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||getfilefox.com/filefetch/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||getfilefox.com/getff/down.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||getfilefox.com^* !||on.djmatioca.com/Ads$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||on.djmatioca.com^* !||bonds.navvyacock.com/see/why=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bonds.navvyacock.com^* ||sync.smarttds.ru/check/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.hatid.com/newServing/js/cpxcenter.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||twirl.chitsjingo.com^* !||static.cleverad.com.br/cleverad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.cleverad.com.br^* ||xch.directrev.com/js/gb.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||djmatioca.com/DjM/img/Dj$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||djmatioca.com/DjM/img/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.rogenited.com/download/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.rogenited.com^* ||i.2drive.net/728.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||i.2drive.net/300.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tv-release.net/images/ad.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||collector-195.tvsquared.com^* ||appusage.intel.com/Service/api/loguser/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||delivery.e.switchadhub.com/adserver/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||delivery.e.switchadhub.com^* !||images.e.switchadhub.com/adserver/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||images.e.switchadhub.com^* ||neware.info^* ||lps.ezdownloadpro.info^* ||bestsetlife.info^* ||magicalled.info^* ||magicalled.com^* ||documentists.kiev.ua/images/q_param/1631fd84e307f170da89eb4d662e8694.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||yuxoroyffc5fmosoru.kocezereokoq.info^* !||cdn.wafmedia2.com/wafra/tags/xpopup/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.wafmedia2.com^* ||freempr13.zaredjr.com^* !||cpmaffiliation.com/t.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cpmaffiliation.com^* !||www.gboptimizer.com/DownloadGB.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.gboptimizer.com^* ||mylivepctechsupport.com^* ||2ddl.link/cdn-cgi/pe/bag2^* ||error-message-adware-virus-alert-3429190.kb23768e.com^* ||cdn3.adbrau.com^* ||www.thepirateweb.com/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.gboxes.com###aswift_0 www.gboxes.com###aswift_2 www.gboxes.com###aswift_1 www.gboxes.com###aswift_3 www.blogsolute.com###aswift_0 ||warning2.media4.netdna-cdn.com^* ||programresolver.net^* !||fastern.net/2drive?q=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fastern.net^* ||robo.hardforum.com/t/imp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||2drive.net/dl.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||resources.ea.com/omniture/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||rum-collector.pingdom.net/img/beacon.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rum-collector.pingdom.net^* www.gossipcop.com##.str-adunit.hosted-video.str-collapsed:remove() ||qks6bv.security2015.pw^* ||a1.vdna-assets.com/analytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static1.gamespot.com/js/compiled/trackingWithCT.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static2.gamespot.com/js/compiled/adsDeferredDfp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.sbplayers.net^* www.telegraph.co.uk##div[id="advert_tmg_ban"]:remove() www.telegraph.co.uk##div[data-perf="advert-banner"]:remove() www.telegraph.co.uk##div[data-ad-slot-id]:remove() www.telegraph.co.uk##iframe[name="__cmpLocator"]:remove() www.telegraph.co.uk##+js(remove-node-text, script, /"__cmpLocator"/gm) ||www.telegraph.co.uk/template/ver1-0/js/tracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.telegraph.co.uk/template/ver1-0/js/webtrends/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.telegraph.co.uk/template/ver1-0/js/asyncwebtrends/webtrends.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.telegraph.co.uk/template/ver1-0/js/asyncwebtrends/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.telegraph.co.uk/template/ver1-0/js/googleAds.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.telegraph.co.uk/telegraph-advertising/tmg-cmp.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||vidtech.cbsima.com/ads/cnvideo?cid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vidtech.cbsima.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||w.visualdna.com/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tracker.neon-images.com/v2/track?a=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tracker.neon-images.com^* !||s.effectivemeasure.net/d/6/p?pu=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s.effectivemeasure.net/html/frame_2.2.4.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.effectivemeasure.net^* !||cen.incredibar.com/app/?callback=Injection.Milestone.GetMilstoneResponse$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cen.incredibar.com^* !||counter1.allfreecounter.com/private/freecounterstat.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||counter1.allfreecounter.com^* !||d.pzkysq.pink/adblockr.javascript$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||d.pzkysq.pink/ads.bmp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d.pzkysq.pink/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||images.adpinr.com^* !||online-brokers.credio.com/ajax_store_analytics?tracker_id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||online-brokers.credio.com/ajax_store_analytics^* !||uk.adadvisor.net/adscores/g.pixel$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||uk.adadvisor.net^* !||rdr.redirectin9.com/go?p=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||rdr.redirectin9.com/ping?p=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rdr.redirectin9.com^* !||za-cdn.effectivemeasure.net/em.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||za-cdn.effectivemeasure.net^* !||resolver.dmccint.com/DomainResolver/ResolveD/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||resolver.dmccint.com^* !||www.apitodid.com/DidHandler.ashx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.apitodid.com^* ||warning-browser.com^* ||output.systems^* !||*.r88.cf5.rackcdn.com/PopLander1/jspopunder.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.r88.cf5.rackcdn.com/PopLander1/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||error.systemadvisor1.com^* softarchive.net##.big_banner_adv:remove() softarchive.net##.big_banner_adv_mobile:remove() ||ad.admitad.com^* ||www.track300.com^* !||www.adspoper.com/impression.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.adspoper.com/ads-content$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.adspoper.com/ads-sync.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adspoper.com^* ||lp.musicnewtab.com^* !||top.megaspravka.ru/img.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||top.megaspravka.ru^* ||opresat.ru^* ||bonbone.ru/bon.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stattds.club/s8194/scripts/track.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||kudav.ru/stat/dspixel.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||kudav.ru/stat/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ditfaq.ru/advertisement.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||st.stattds.club/Content/track.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||jb.revolvermaps.com/c.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||jj.revolvermaps.com/c.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||jj.revolvermaps.com/r.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||jj.revolvermaps.com^* ||stshrt.com/ads-content$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css zedl.info##.advert-block-smft ||tweaking.com/images/Tweaking-com-banner.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css zedl.info##.file-box-sm_tw !||prpops.com/p/at7f/direct$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||prpops.com^* !||xact.spiceworks.com/u/gen/Oct2014/20141002131547_adblockeverythingelse.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xact.spiceworks.com^* ||browser-updayter.com^* !||clicks2.virtuagirl.com/ref.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||clicks2.virtuagirl.com^* ||c.actiondesk.com^* !||binbox.io/public/js/zeroclipboard/ZeroClipboard.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||binbox.io/public/js/zeroclipboard/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css binbox.io###adblocker-warning ||pastes.binbox.io/public/img/disable_adblock.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||paidtowatchmovies.com/affiliates/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.reporting-download.com/download/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.reporting-download.com^* !||rvfrm2008.com/static/lprdr.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rvfrm2008.com^* !||get.ddl1001.info/DownloadManager/Get?p=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||get.ddl1001.info^* ||getr.0115b.info^* ||navo1-redlrect.com^* ||download.tunydownloadsfast.com^* ||files.red-2-small-button.com^* ||static4.gamespot.com/js/compiled/trackingWithCT.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||downprov.brown1switch.com^* !||stds1go.mutedownload.com/getfast/3ulhrpcbvw.cgi$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stds1go.mutedownload.com^* !||depromobil.md/wp_info/down.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||depromobil.md/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||clicksrvr.co/z/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||clicksrvr.co^* !||clkdeals.com/adServe/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||clkdeals.com^* ||iasrv.adpdx.com^* ||iasrv.adk2.co^* !||cdn.iasrv.com/inviteads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.iasrv.com/iasrv/scripts/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.iasrv.com^* ||rhtag.com/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn1.clkrev.com/banners/script/bnrcore_1.0.14.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn1.clkrev.com/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn1.clkrev.com^* !||cdn1.clkmon.com/script/rhpop_*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn1.clkmon.com^* !||clkmon.com/adServe/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||clkmon.com/static/rd.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||clkmon.com^* !||clkrev.com/adServe/banners/findBanner^* !||clkrev.com/adServe/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||clkrev.com/banners/img-banner.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||clkrev.com/banners/script/include_img_banner.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||clkrev.com/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||clkrev.com/script/topbanner.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||clkrev.com^* !||cdn.adikteev.com/cookie.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.adikteev.com/unique_id.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.adikteev.com^* !||jmpdirect01.com/ctrd/click/newjump2.do$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||jmpdirect01.com/ctrd/click/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||dx.steelhousemedia.com/spx?dxver=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dx.steelhousemedia.com^* www.zoosk.com/mkt?mt=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.advconversion.com/ads-conversiontrack/conversion/set.do$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.advconversion.com/ads-conversiontrack/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.advconversion.com/convtrack/conversion/set.do$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.advconversion.com/convtrack/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.sabavision.com/public/public/user_data/advert_banner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||p30download.ads.sabavision.com^* ||dms.bamilo.com/dm/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dms.bamilo.com/banner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.privateinternetaccess.com/affiliates/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||zwinky.dl.tb.ask.com/mirrorCookies.jhtml$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||zwinky.dl.tb.ask.com^* ||c.msparktrk.com^* !||www.zwinky.com/dl/anemone.jhtml$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.zwinky.com/dl/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cloud2.insightera.com/gw1/msg?a=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cloud2.insightera.com/gw1/rcmd?sid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cloud2.insightera.com/gw1/ga/sgm?sid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cloud2.insightera.com/gw1/rtp/api/v1_1/visitor?sid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cloud2.insightera.com^* !||toroadvertisingmedia.com/ads?key=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||toroadvertisingmedia.com/js/show_ads_toroadv.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||toroadvertisingmedia.com/multi-cookie.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||toroadvertisingmedia.com/impression.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||toroadvertisingmedia.com^* !||wafmedia3.com/fpop/fpop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wafmedia3.com/fpop/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||js.158c.com/JS/ShowMe.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bmp.ali213.net/JS/217.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||bevo.adsnative.com/vi.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||bevo.adsnative.com/im.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||bevo.adsnative.com/ck?url=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bevo.adsnative.com^* !||c.securepaths.com/js/implement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||c.securepaths.com/js/implement-r.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c.securepaths.com^* !||stats.cnevids.com/e?key=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stats.cnevids.com^* !||horizon.sailthru.com/horizon/track?r=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||horizon.sailthru.com^* !||ak.sail-horizon.com/horizon/v1.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ak.sail-horizon.com^* ||deq82vismrble.cloudfront.net/assets/omniture_container_loader-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||downgradepc.newvideolive.com^* ||payn.me^* !||srv2trking.com/click.track$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||srv2trking.com^* ||ocdn01.playgameznow.com^* go4up.com###wfee ||readyupdate.freeupgradelive.com^* ||newversionupdate.theperfectupdate.org^* !||www.electro-tech-online.com/interstitial/interstitial.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.electro-tech-online.com/interstitial/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.easycounter.com/counter.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gate.datacaciques.com:3000/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pv.datacaciques.com/js/trackr.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pl105423.putags.com/c8/c9/de/c8c9dee56ebcbca893bcbdaa717eaba7.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pl105423.putags.com^* ||pl108258.putags.com^* www.myce.com/media.ultrafastcdn.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||media.ultrafastcdn.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gameskwala.com/pop/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||js.adforgames.com^* ||www.animeflavor.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.getgamers.eu/scripts/bt-go.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.getgamers.eu/scripts/pu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.t-mobile.com/foresee/foresee-trigger.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.t-mobile.com/foresee/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||gateway.answerscloud.com/tmobile/production/foresee/foresee_trigger.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gateway.answerscloud.com/tmobile/production/foresee/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ocdn.adsterra.com^* !||tracking2.channeladvisor.com/welcome_fp.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tracking2.channeladvisor.com^* ||t.channeladvisor.com^* ||od2.visiblemeasures.com^* ||tofu.dmcdn.net/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.visiblemeasures.com^* ||buzzcontrol.com/scripts/160_ad_$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||buzzcontrol.com/scripts/300_600_ad_$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||buzzcontrol.com/scripts/300_ad_$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||buzzcontrol.com/scripts/728_ad_$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vidxden.com/openx/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.vidxden.com/openx/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||soft4update.how2safeupdate.org^* ||ad121m.adk2.net^* ||www.cloudy.ec/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.cloudy.ec/popups/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||n.targetbtracker.com/click/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||n.targetbtracker.com^* ||ads.uniblue.com^* ||freshupdate.videoupdatelive.com^* ||cdn.2xbpub.com/babanetwork/tags/xbanner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad132m.adpdx.com^* ||p.adpdx.com^* !||ao.btrll.com/Pix-1x1.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ao.btrll.com^* ||adtgs.adk2.co^* !||s.ato.mx/p.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.ato.mx/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||veevr.com/embed/LvbyS8aQf?w=680&h=400$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||veevr.com/embed/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||social.servespring.com/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||t1.inskinad.com/record?callback=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||t1.inskinad.com^* !||banner.slashcam.de/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||banner.slashcam.de^* ||bannerimages.slashcam.de^* ||dnkzzz1hlto79.cloudfront.net/assets/vpaid-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||securepaths.com/pixel.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||securepaths.com/pixel.cgi$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||securepaths.com/pixel?s=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||securepaths.com/pixel$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||targeting.unrulymedia.com^* newsok.com##.ad:remove() ||ghost.gamer-network.net/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.adap.tv/starcombankofamericaplatform/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||start.sweetpacks.com^* ||www.stamplive.com/afr.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||coincollecting.ws/banner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.eset-affiliate.de/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||777bitco.in/static/img/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||contractallsticker.net^* !||a.foresting.info/hp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.foresting.info^* ||a.forestern.info^* ||getterstory.com^* ||2015.isp.com.customer-survey.website^* ||westzip.in^* ||cotads.adscale.de^* ||static.oschina.net/uploads/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bdimg.share.baidu.com/static/api/js/trans/logger.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css up.media1fire.com###sponsor2 > div:remove() up.media1fire.com##.contentag > .contentag2 > .contentor > center:nth-of-type(2) > a[href^="http://westzip.in/m1b"] > div:remove() up.media1fire.com##.contentag > .contentag2 > .contentor > center:nth-of-type(1) > a[href^="http://westzip.in/m1b"]:remove() up.media1fire.com###download-box:remove() ||279r.realsecuredredirect.com^* ||delivery.upx.nz/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adn-x3.vindicosuite.com/Repository/adunit/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adn-x3.vindicosuite.com^* ||client-verify.adtricity.com^* www.niallbrady.com##.adsbygoogle:remove() ||www.uploadable.ch/script/ZeroClipboard$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||liversia.net^* !||video-ad-stats.googlesyndication.com/video/client_events?ad_id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||video-ad-stats.googlesyndication.com^* !||playtime.tubemogul.com/flash/tunit-v1.35.0.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||playtime.tubemogul.com^* ||www.adovida.com/cmpgn/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||stats.wintotal.de/piwik.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stats.wintotal.de^* ||wintotal.de.intellitxt.com^* !||perf.mmstat.com/p.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||perf.mmstat.com^* !||s.click.aliexpress.com/* !blocks coupon links ||c.byvue.com^* !||statsmobi.com/ps_pmpruleserver/api/processrules^* ||statsmobi.com^* ||quensillo.com/Redirect.eng$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||quensillo.com/fp.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||style.alibaba.com/js/beacon-cookie.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||stat.alibaba.com/event/common.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stat.alibaba.com^* ||style.aliunicorn.com/js/6v/biz/common/click-stat/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||hid.im/rndrpl.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||hid.im/js/brotator.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||hid.im/120_600.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||hid.im/728_90.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pw.hid.im/piwik.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pw.hid.im/piwik.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hid.im^* ||pw.hid.im^* !||websitedhoome.com/useranan/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||websitedhoome.com^* ||myrls.se/cdn-cgi/pe/bag2$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||getmeoutofhere.ppcjmptrkr.com^* ||jmp.ppcjmptrkr.com^* !||lionzoo.net/trk/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lionzoo.net^* ||adioli.org/f/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||upgradeall.theupdater24online.net^* ||nowversion.videoupdatelive.com^* ||pcupgrade.theupdateonline24.org^* ||aff12.com^* ||www.androidops.info/glander/logger.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||2adbrowse.com^* ||liveupdate.check-live24.org^* ||s.ad133m.com^* ||cdn.adnotch.com^* ||trk.clickgangads.com^* ||oas.comicbook.com^* ||ad.pxlad.io^* ||adk2trk2.cpmrocket.com^* !||360installer.com/download/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||360installer.com^* !||finaljuyu.com/never_5/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||finaljuyu.com^* !||softped1a.ws/files/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||softped1a.ws^* !||mysoftwarelive.com/download/getfile/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mysoftwarelive.com^* ||quensillo.com^* !||go.myimgt.com/sc.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||go.myimgt.com^* !||s.arlime.com/p/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.arlime.com^* ||www.ecigair.com/landing.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.efoxnews.net###rail > div > div:nth-of-type(1) > .mod-2 > .ad-container.mod-ad-2:remove() www.efoxnews.net###rail > div > div:nth-of-type(7) > .ad-container.mod-ad-3:remove() serverfault.com###hireme > .company-ad-j.company-ad-sb:remove() serverfault.com###careers1 > .company-ad-b.company-ad-lb:remove() serverfault.com###careers3 > .company-ad-b.company-ad-lb:remove() 178.32.140.64/pv.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||advdl.ammadv.it/Delivery.dy$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||advdl.ammadv.it/js/amm_show_ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||advdl.ammadv.it^* !||bh.juiceadv.com/Behav.ashx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bh.juiceadv.com^* !||img4.juiceadv.com/clienti/rub/bnr_rub.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||img4.juiceadv.com^* !||srv.juiceadv.com/banner_iframe.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||srv.juiceadv.com/sem.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||srv.juiceadv.com^* !||tag.reachadv.it/b/pxtest.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tag.reachadv.it/s.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tag.reachadv.it/s.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tag.reachadv.it/v/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tag.reachadv.it/300x250.lato$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tag.reachadv.it^* !||rg-mechanics.net/stat/dspixel.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rg-mechanics.net/stat/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adv-first.ru/code/bshow.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||downloadsfree4all.blogspot.com/b/stats$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.newfastmediasearcher.com/3025/stats.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.newfastmediasearcher.com^* !||mymediadownloadsnine.com/download.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mymediadownloadsnine.com^* !||code.rtbsystem.com/38377.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||code.rtbsystem.com/8018.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||code.rtbsystem.com/38380.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||code.rtbsystem.com^* 88.80.6.5###maindiv > div:nth-of-type(3) > .topspot:remove() ecotorrent.com###rekup1:remove() ||set56.7pud.com/mediacodeRotate.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||set56.7pud.com/mediashow.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||set56.7pud.com/mediaController.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||js.99ddd.com/wy_gg/js/21.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||js.99ddd.com^* ||fenxiang.qq.com/upload/js/ZeroClipboard.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cip2.czpush.com/promote.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cip2.51eju.com/promote-switch.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||speedpremium.info/6rhxc0.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||always-parser.xyz^* ||srvpub.com/adServe/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.pcper.com##.mark-overlay > .mark-overlay-bg[href^="http://pubads.g.doubleclick.net/gampad/clk"]:remove() ||northeated.info^* !||bestories.xyz/Amora_3/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bestories.xyz^* ||www.downho.org/download.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dltags.com^* !||affrh2022.com/adServe/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||affrh2022.com^* !||wonderlandads.com/afu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wonderlandads.com^* www.gamestorrents.com###dd7b7aecb79c:remove() ||www.jokergameth.com/advertisement/*.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static.7searchdisplayads.com/newServing/js/show.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.7searchdisplayads.com^* ||adexm.com/ad.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adexm.com/ad_count.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adserving.7searchdisplayads.com^* !||cdn.adshexa.com/show_ads.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.adshexa.com^* !switch.rtbsystem.com/pixel$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||switch.rtbsystem.com/8018.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||switch.rtbsystem.com/38380.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||switch.rtbsystem.com/38383.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css switch.rtbsystem.com^* !||files3.datafree.biz/lp1/filesbase.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||files3.datafree.biz^* ||c.dx.com/banner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||e.dx.com/openx/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.dumedia.ru^* !||analytics.shareaholic.com/dough/1.0/pageview.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||analytics.shareaholic.com^* !||cti.w55c.net/ct/cms-sh2c.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cti.w55c.net^* !||i.w55c.net/m.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||i.w55c.net/ping_match.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||i.w55c.net^* ||js.indexww.com/ht/topix.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||mtrx.go.sonobi.com/morpheus.topix.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mtrx.go.sonobi.com^* !||partner.shareaholic.com/partners.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||partner.shareaholic.com^* ||shareaholic.com/v2/user_info$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||t05.rbnt.org/sync.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||t05.rbnt.org^* ||ads.ojooo.com^* ||tabletoknet.com/abnl/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tabletoknet.com/stat/dspixel.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tabletoknet.com/stat/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||safelyink.com/offer.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||sync.audtd.com/match/intency$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||sync.audtd.com/match/lamoda$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sync.audtd.com/match/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||muser.r24-tech.com/merge/user/dmp/auditorius$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sync2.audtd.com/advmaker$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mfiledownload.com^* !||b3fd46.rekeytorrent.org^* !||ad661e.rekeytorrent.org^* !||5b1813.rekeytorrent.org^* !||dc93bd.rekeytorrent.org^* !||7c118e.rekeytorrent.org^* !||28dc99.rekeytorrent.org^* ||*.rekeytorrent.org^* ||www.drfileny.com^* ||ttb.drfileny.com^* ||www.adsoptimal.com/advertisement/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wac.a164.edgecastcdn.net/80A164/epmads-cdn/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ecpmrocks.com/multi-cookie.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ecpmrocks.com/impression.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ecpmrocks.com/ads?v=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ecpmrocks.com/js/show_ads_epmads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ecpmrocks.com^* ||soma.smaato.net/oapi/js/smaatoAdTag.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||soma.smaato.net/oapi/js/smaato_adtag_bridge.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||geo.smaato.net:8080/client_server.location?adspace=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||apkx.org/themes/flow/js/zeroClipboard/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||download.apks.org/cdn-cgi/pe/bag2$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css soma.smaato.net/oapi/reqAd.jsp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.2xbpub.com/babanetwork/scripts/direct/direct.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||banners.mcproton.com^* !||www.fltadtrx.com/default.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.fltadtrx.com^* ||eibzz.proven.0237.info^* ||hul0y.coldtrkredirect.com^* !||aflrm.com/nav?q=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||aflrm.com^* www.hardocp.com##body > div:nth-of-type(5):remove() ||groupeurs.com^* !||download2-cdn.com/direct/download.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||download2-cdn.com^* !||clipdownload.net/player/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||clipdownload.net^* ||letshareus.com/download/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css jumbofile.net##body > div:nth-of-type(1) > table > tbody > tr > .headerag > div > table > tbody > tr:nth-of-type(2) > .siteag > center > a[href="http://letshareus.com/download/"]:remove() jumbofile.net##body > div:nth-of-type(1) > table > tbody > tr > .headerag > div > table > tbody > tr:nth-of-type(2) > .siteag > center > a[href^="http://download2-cdn.com/direct/download.php"] > div:remove() jumbofile.net##body > div:nth-of-type(1) > table > tbody > tr > .headerag > div > table > tbody > tr:nth-of-type(2) > .siteag > div:nth-of-type(4) > form > p:nth-of-type(1):remove() jumbofile.net###plans_free > center > form > p:nth-of-type(1):remove() www.rziz.net###container > .mainag > .contentback > div:nth-of-type(2):remove() www.rziz.net###container > .mainag > .contentback > center:remove() go4up.com###content > .innerLR > center:nth-of-type(1):remove() ||beacon.errorception.com^* ||api.nas.nct.vn/v2/ads?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.nas.nct.vn/v2/imp?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.nas.nct.vn/v2/delivery?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css pcgamingwiki.com###mpu:remove() www.nhaccuatui.com###eventBannerTop:remove() www.nhaccuatui.com###eventBannerLeft:remove() www.nhaccuatui.com###popupBacDau:remove() www.bhyu.cc###xydllc:remove() www.bhyu.cc###xydlrc:remove() www.bhyu.cc###xybrad:remove() ||filmoff.net/downloadhelper.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||dlc.mir-file-online.ru/download/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dlc.mir-file-online.ru^* ||limousine.promonsterexpert.ru^* ||www.audienceinsights.net/p?f=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||delivery.platform.switchads.com/adserver/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||delivery.platform.switchads.com/html/onscroll_criteo.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||delivery.platform.switchads.com^* !||segment-data.zqtk.net/conde-nast?url=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||segment-data.zqtk.net^* !||static.audienceinsights.net/lso.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.audienceinsights.net^* ||www.dx.com/affiliate/identify-script$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||z.trmit.com/retag/tags/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||z.trmit.com^* ||d.adxcore.com^* ||l.adxcore.com^* ||ad.adxcore.com^* ||creativecdn.com/cm-notify?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||creativecdn.com/bidder/pubs/tagging$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||creativecdn.com/rambler/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||creativecdn.com/tags?id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! TODO: "important" is being ignored in the following rule for unknown reason. !||prebid-us.creativecdn.com/bidder/prebid/bids$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||prebid-us.creativecdn.com/bidder/prebid/$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||prebid-us.creativecdn.com^* ||ds5.api.baifendian.com/2.0/PageView.do$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pentos-cdn.polarmobile.com/wt?e=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pentos-cdn.polarmobile.com^* ||trafficforyou.org/trafficrevenue.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||trafficforyou.org/track/tracking/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||trafficforyou.org/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.ucozadserving.com/ads^* ||st.free.fr/phpmyvisites.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||blackninja2000.narod.ru/stat/dspixel.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||blackninja2000.narod.ru/stat/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.ucozadserving.com/js/show_ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s202.ucoz.net/bnr/blocks/criteo_narod_rta_240x400.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s212.ucoz.net/ads_w2f.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s212.ucoz.net/ads_w2h.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||downloadspaces.com^* ||profficult.net^* ||www.bovada.lv/sites/all/modules/cwf_sitecatalyst/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads1.msads.net/adbar/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||record.bettingpartners.com^* ||www.bovada.lv/content/global-affiliate-footer$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css torrenthound.unblocked.io###ad > .sidead:remove() torrenthound.unblocked.io###maindiv > div:nth-of-type(3) > .topspot:remove() !||xch.smrtgs.com/adserver/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xch.smrtgs.com^* www.uploadable.ch###navBar3 > .vpn-fake-banner.adv_block:remove() ||thegioitinhoc.vn/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||g01.a.alicdn.com/kf/HTB1tlL9HpXXXXXtaXXXq6xXFXXXh/728x90.jpg ||gtms03.alicdn.com/tps/i3/T1AIM6FDFcXXXvS2HM-160-600.jpg thegioitinhoc.vn###ad_global_below_navbar > center:remove() ||adocean-lv.hit.gemius.pl^* ||www.uploadserv.com/pop-soft98.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cpm.novanet.vn^* ||static.gammaplatform.com/js/ad-exchange.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||findersocket.com^* ||static.taiiwin.net/event/banner-iwin-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||webtinhoc.vn/tags/server.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sub.yourskinfeelswarmtocaress.com^* ||www.yournetmediastore.com/56/stats.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.yournetmediastore.com/56/download.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||files.savedata.biz^* !||downloadboutique.com/download/getfile/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||downloadboutique.com^* !||rtt.campanja.com/visit?tg=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||rtt.campanja.com/script$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rtt.campanja.com^* !||wrap.tradedoubler.com/wrap?id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wrap.tradedoubler.com^* ||rusfolder.com/dc/?stat_dc=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||trk.newvirtuallife.com/click.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||trk.newvirtuallife.com^* ge.tt###reklame > .reklame-wrapper:remove() driverpacks.net/files/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.adbrau.com^* www.ubuntuvibes.com###aswift_2:remove() www.shootemall.net###header > .header-inner > .top-ad-728:remove() www.shootemall.net###aswift_1:remove() !||cdne.cpmstar.com/cached/creatives/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdne.cpmstar.com^* ||downfmvplayer.com^* www.maketecheasier.com###MTE_in_content_ad:remove() www.webpagescreenshot.info###aswift_0:remove() www.softpedia.com###aswift_0:remove() www.softpedia.com###aswift_3:remove() www.softpedia.com###aswift_2:remove() www.softpedia.com###aswift_1:remove() !||cdn1.kovla.com/static/js/popunder9.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn1.kovla.com/static/js/popunder4.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn1.kovla.com/static/js/popunder2.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn1.kovla.com/static/js/popunder*.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css xfileload.com##a[href^="http://www.downloadab.com/clp/xfileloadcom"]:remove() ||fileandmore.com^* downloadab.com^* ||www.downloadab.com^* www.skillfeed.com##.container > .content > .page-content > .over-hide > .videos > .video-container > .vjs-default-skin > .vjs-big-play-button:remove() ||194.145.208.14/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||infinitymode.org^* !||deatrocker.ucoz.com/stat/dspixel.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||deatrocker.ucoz.com/stat/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||duhsoft.com/120_600.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||duhsoft.com/728_90.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||completecarrd.com/QParamert/images_upload/ebd5b35fb7b3fc61ef3a79f98137b44d.png kickass.duhsoft.com###wrapperInner > .mainpart > center ||duhsoft.com/got.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||duhsoft.com/got_dance.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css news-336843-latest.adrots.ru^* ||owpawuk.ru^* ||deatrocker.ucoz.com/abnl/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tarkita.ru^* ||darangi.ru^* !||m.ok.ru/dk?st.cmd=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||m.ok.ru^* !||mobikano.com/advertisement.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mobikano.com^* ||deatrocker.ucoz.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||alipromo.com/redirect/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stattds.club/s3726/stat?cl=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||kesarya.ru^* !||st.stattds.club/s3726/stat?cl=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||st.stattds.club^* ||unitplayer.ru/abnl/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||go.cmtrk.com/click$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||go.cmtrk.com^* ||serve.adplxmd.com^* ||www.thepiratebay.se/static/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||resources.infolinks.com/static/blank.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css atwigge.com###IL_INSEARCH:remove() kat.cr###_7063408f1c01d50e0dc2d833186ce962:remove() kat.cr###sidebar > .advertising > .legend:remove() !kat.cr###_2bffc94164dd9984ae4826e8bc988721 > .advertDownload > .darkButton[href="#"] > span:remove() !kat.cr###_2bffc94164dd9984ae4826e8bc988721 > .advertDownload > .blank:remove() kat.cr##.advertDownload:remove() !kickass.torproxy.eu###_2bffc94164dd9984ae4826e8bc988721 > .advertDownload:remove() kickass.torproxy.eu##.advertDownload:remove() ||lp2.pandagl.info^* !||nextad.media/cr?b=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||nextad.media/impression.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||nextad.media/ads-sync.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||nextad.media/js/show_ads__nextad.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nextad.media^* !||forshrd.com/ads?v=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||forshrd.com/js/show_ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||forshrd.com^* ||www.forshrd.com/no-impression.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.forshrd.com/impression.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.forshrd.com/multi-cookie.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.pidin.im/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||asto-exo.com^* ||api.olark.com/2.0/visitors/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s.adroll.com/j/roundtrip.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.adroll.com^* !||beacon.securestudies.com/scripts/beacon.dll$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||beacon.securestudies.com^* !||creative.xtendmedia.com/matomy/popurl.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||extended.dmtracker.com/images/zig.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||extended.dmtracker.com^* !||l.betrad.com/pub/p.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||l.betrad.com^* !||beacon.cracked.com/tracking/beacon/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||beacon.cracked.com^* summotorrent.com###tab-main > .advertDownload:remove() ||get1.fdg345.org^* !||scr.red1008page.info/RL/RD3.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||scr.red1008page.info/RL/RD2.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||scr.red1008page.info/rl/RD1.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||scr.red1008page.info^* !||get.file23desktop.com/DownloadManager/Get?p=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||get.file23desktop.com^* ||ads.pubsqrd.com^* winsupersite.com###roadblock:remove() winsupersite.com###roadblockcontainer:remove() winsupersite.com###roadblockbackground:remove() ||winsupersite.com/sites/all/modules/custom/pm_doubleclick/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.torrentair.com/realclick_left_banner.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.torrentair.com/realclick_board_top_banner.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adclk.about.co.kr/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||duhsoft.com/down.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||duhsoft.com/728_90p.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||duhsoft.com^* !||pw.duhsoft.com/piwik.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pw.duhsoft.com^* !||directile.net/key/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||directile.net^* lovattostudio.com##.yt-background > .lj-overlay-image.lj-overlay-color.lj-overlay !||systemcallpointcamel.info/scr/gboxes.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||systemcallpointcamel.info^* ||events.boomtrain.com/event/track?model=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||delivery.d.switchadhub.com^* ||www.takesurveysforcash.com/js/exitpop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||distillery.wistia.com/x?data=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||distillery.wistia.com^* ||embed.wistia.com/deliveries/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pipedream.wistia.com/mput?topic=metrics$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.stshrt.com/js/show_ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.stshrt.com/no-impression.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.stshrt.com/ads-async.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s.speednetwork3.com/imp9872$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.speednetwork3.com^* !||s.speednetwork4.com/imp2736$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.speednetwork4.com^* torrent-finder.info###pagecont > .bannerinst:remove() www.aiosearch.com###addon_info:remove() www.ocaholic.ch###bannercolonnadx1:remove() www.ocaholic.ch###bannercolonnadx2:remove() www.ocaholic.ch###bannercolonnadx3:remove() www.ocaholic.ch###bannercolonnadx4:remove() www.ocaholic.ch###bannercolonnadx5:remove() www.ocaholic.ch###bannercolonnadx6:remove() www.elfqrin.com###aswift_1:remove() www.elfqrin.com###aswift_0:remove() www.elfqrin.com###aswift_2:remove() ||www.zlothonline.info/showads.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.nowvideo.co###aad2 > div:remove() www.nowvideo.co###aad > div:remove() ||installreport.freemake.com^* ||freemaketb.ourtoolbar.com^* ||download.freemake.com/installation/installation_stat.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ict.infinity-tracking.net/track?igrp=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ict.infinity-tracking.net^* ||clickeu.teracreative.com^* ||files4.downloadnet1008.com^* ||files5.downloadnet1008.com^* ||apk.downloadatoz.com^* ||aiotop1.downloadatoz.com^* ||instantcasualconnections.com/promo/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||aibos.leadspediatrack.com^* !||androidgozar.com/ads/ajaxj.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||androidgozar.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cnd.gingermedia.com/gingermedia/tags/xdirect/xdirect.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||getandroid.ir/Files/Banner/Ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stat.infinitegra.co.jp^* ||www.musixlib.com/wi/lp6/thankyou/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||affrh2020.com/adServe/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||filenuke.com/a/js/ZeroClipboard.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||220ro.count.brat-online.ro^* !||s.speednetwork14.com/imp4726$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.speednetwork14.com^* !||s.speednetwork15.com/imp5894$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.speednetwork15.com^* ||allmyvideos.net/ajaxlog.txt$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||healthyrecipesandmore.com/c/assets/show_ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s.speednetwork13.com/imp9968$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.speednetwork13.com^* !||s.speednetwork16.com/imp5632$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.speednetwork16.com^* !||af-gb.adskeeper.co.uk/5481/3?pv=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||af-gb.adskeeper.co.uk^* ||otf.msn.com/c.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.cpsoft86.com/scripts/1/adnl.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.cpsoft86.com/layouts/graphic_300x250.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d.cpsoft86.com/api/vv/1?callback=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d.cpsoft86.com/api/vp/1?clk=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vacuous-band2da066.com^* !||impression785proxy.com/impression.do$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||impression785proxy.com^* !||eggzotope.com/Redirect.eng$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||eggzotope.com/fp.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||eggzotope.com^* !||update.bittorrent.com/time.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||update.bittorrent.com^* !||update.utorrent.com/checkupdate.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||update.utorrent.com^* ||free.myradioaccess.com^* www.danoah.com###post-53575 > .td-page-wrap.container > .row > .span12 > .td-grid-wrap > .container-fluid > .row-fluid:nth-of-type(2) > .td-post-content.column_container.span8 > .td-post-text-content > .td-a-rec-id-content_inline.td-a-rec > .HideOnVCPosts > .SDLInlineAd:remove() www.cloudy.ec###first_btn[href="javascript:pop_click();adclose();"]:remove() ||pool.admedo.com^* ||pool.adizio.com^* !||t.zqtk.net/c.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||t.zqtk.net^* ||jobsetter.info^* ||upgradenote.top-codec.com^* ||www.xmediaserve.com/apu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||js.coinisrsdelivery.com/dl.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||js.coinisrsdelivery.com^* ||cityadspix.com/click-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cityads.ru^* ||www.setliveupdates.net^* small-games.info###in-content > .overhide.w > .light:nth-of-type(3) ||www.stamplive.com/apu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||findbestsolution.net/go.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mvi.findbestsolution.net/go.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||system.adcat.pl^* pobieramy24.pl###db6c27e2e760a9c:remove() pobieramy24.pl###adf1d5c59:remove() pobieramy24.pl###\30 a8a8e777:remove() pobieramy24.pl###ad_global_below_navbar:remove() ||hotcpm.pl/images/1424199236_55.png ||hotcpm.pl/images/1422026731_38.png ! The following rule is sometimes a path in a URL not just a domain. secure.insightexpressai.com/adserver/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||e7876.dscg.akamaiedge.net/adServer/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.movpod.in^* !||imads.integral-marketing.com/ad?publisher_id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||imads.integral-marketing.com/scripts/imads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||imads.integral-marketing.com^* ||content.integral-marketing.com^* ||thepiratebay.la/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||piratebay.org/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a2.adformdsp.net^* ||cdn.adtrace.org^* ||www.justanimedubbed.tv/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.justanimedubbed.tv###main-content > .in_up_ad-area:remove() ||usageanalytics.coveo.com^* ||analytics.sewelldirect.com^* ||jumbofile.net/f86211.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css binbox.io###da1f1b:remove() www.cpuid.com###console_log > .widget-advert-728.widget-block:remove() www.cpuid.com###main__content > .main-wrapper > .block_100:nth-of-type(1) > .widget-advert-970.widget-block:remove() www.cpuid.com###downloading > .advert.block_33 > .widget-advert-336.widget-block:remove() www.cpuid.com###main__content > .main-wrapper > .block_100:nth-of-type(2) > .widget-advert-970.widget-block:remove() ||nethd.org/pic/1000gem.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !nethd.org###ads_zone20631:remove() !nethd.org###ads_zone20633:remove() nethd.org##*[id^="ads_zone"]:remove() ||track.109k.com^* ||fhb9n.trackvoluum.com^* ||clkoffers.com/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||clkcln.com/script/rhpop_1.1.25.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||eclkmpbn.com/adServe/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||clktag.com/adServe/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||binbox.io/adblock.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||downloadfastspot.com/download/query.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||downloadfastspot.com^* ||lozo.com/ajax/trackaction$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||track.mysavingsmedia.net/impression.track$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||track.mysavingsmedia.net^* !||www.reduxmediia.com/apu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.reduxmediia.com^* !||r.rfgsi.com/go/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||r.rfgsi.com^* ||s.admtpmp123.com^* ||wafmedia3.com/m/p.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||n.targetctracker.com/click/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||n.targetctracker.com^* !||a.depotnetsecure.com/fast56?q=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.depotnetsecure.com^* ||liversely.net/datafileban$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||b.version-pro.info^* ||files.red-3-small-button.com^* ||download.venturecdn.com^* ||a.simplesdirectory.com^* ||b.profficial.org^* ||a.collectioncall.work^* !||minimumpay.info/afterclick/aft.v2.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||minimumpay.info^* ||4.bp.blogspot.com/-qFK-GDJWWr8/UwOXd4tJC0I/AAAAAAAAOL0/3sK-W_uB_kQ/s1600/dow.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||arab-eng.org/e3lanat/ad12.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||arab-eng.org/e3lanat/Bannar_03.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||storage.googleapis.com/dfh/bnr003.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||storage.googleapis.com/dfh/9898.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tracking.adfishmedia.com^* ||s.admtpmp124.com^* ||vm11-nl07.cityads.com^* ||ads.couponaholic.net^* ||d3dc2aopftfkeo.cloudfront.net/FRONT_DB_AD/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adsys.adk2x.com^* ||newsoftready.checker-live.com^* ||www.free4updating.com^* ||play.leadzupc.com^* ||www.popmajor.com/pxl.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||spaces.slimspots.com/mobiledirect/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.popmajor.com/serve.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.popmajor.com^* mediafree.co##body > div:nth-of-type(1):remove() ||cdn.graymiser.com^* ||shos.formstack.com/forms/analytics.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.uploadable.ch/script/jquery.popunder.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||safenewupdates.checkerweb.com^* ||track.bcvcmedia.com^* ||onceux.unicornmedia.com/now/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||securityxploded.com/iframe_ad_$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||c.fqtag.com/tag/implement-r.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c.fqtag.com/tag/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ssl.whitetrading.org/ibxtrk3.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||befade.com/w/d/capu_o.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ucoxa.work/w/d/capu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wafmedia3.com/upop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||shield.sitelock.com^* ||adk2trk.cpmrocket.com^* ||rmbn.net/cgi-bin/main.fcgi$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css 176.227.193.50###MarketGidComposite586395:remove() 176.227.193.50###MarketGidComposite586394:remove() ||get.file8desktop.com^* ||thepiratebay.gd/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.directtrk.com/js/p/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.directtrk.com^* !||a.1nimo.com/c/log?tenant=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||a.1nimo.com/c/imp_new?vurl=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.1nimo.com^* !||cdn.adquantix.com/adsys/tags/xbanner/xbanner.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.adquantix.com^* !||a.adquantix.com/c/banner_s?tenant=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.adquantix.com^* ||redir1507.net^* ||www.link365.info/impression.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||keyupgrade.software-update.info^* ||www.newad4.com^* ||get.file117desktop.info^* ||www.homelandsecuritynewswire.com/sites/default/files/web_ad_$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.homelandsecuritynewswire.com###ad-72133:remove() !||s.tagsrvcs.com/*/analytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.tagsrvcs.com^* ||www.gamespot.com/*/zeroclipboard/ZeroClipboard.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.websters.biz^* ||ddd.webnewlist.com^* ||myfavoritesweeps-ipadair-winner.com^* ||ddd.firstallstate.link^* !||0aac4e6a54c170b0.se/?placement=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||0aac4e6a54c170b0.se^* !rapidmoviez.com##.clear.container > .clear.main-container > .left-container > .blogs > .clear.blog-details > div:nth-of-type(11) > .ab-alert:remove() rapidmoviez.com##.ab-alert:remove() ||ssw.live.com^* ||cs1.wpc.v0cdn.net^* ||n1.ad3clicktrack.com^* ||serve.a-widget.com^* ||media.go2speed.org/brand/files/traffiroo/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||general.virtuapoint.com/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tcf.mediagraph.com/platform/0.5/log.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||blackapk.com/dl.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||3c41ddc0.se^* ||us.battle.net.gm-blizzard.com^* ||uk.ads.justpremium.com^* !||error321.syswarning.net^* ||*.syswarning.net^* !||p.pxl2015x1.com/pixel/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||p.pxl2015x1.com^* !||creative.admtpmp124.com/admtpmp124/scripts/smart/smart.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||creative.admtpmp124.com^* !||t.mdn2015x2.com/build/ba9dce/v1/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||t.mdn2015x2.com^* ||finallywomen.com/c/aflog.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||finallywomen.com/c/afv.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||finallywomen.com/c/af_jss.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||finallywomen.com/c/assets/show_ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||finallywomen.com/c/cb/go.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gardenadvices.com/adcall.ashx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gardenadvices.com/traffic.ashx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bc.ixiaa.com^* !||leadsfinders.com/rd?uri=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||leadsfinders.com^* ||ads-stream.com^* ||thelocalsearchnetwork.com^* ||urgent-system-warning.com^* ||quality-click-tracking.info^* !||xml.clk1013.com/click?i=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xml.clk1013.com^* ||eclkspbn.com/adServe/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||eclkspsa.com/adServe/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.blkget8.com^* !||ext.gomovix.com/wi/lp13/index_16.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ext.gomovix.com^* ||www.watchmoviesall.com/impads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||10fbb07a4b0.se^* www.securityweek.com###simplemodal-container:remove() www.securityweek.com###simplemodal-overlay:remove() !||click.semantictec.com^* !||pop.semantictec.com^* !||ct.cbsi.com/pt?t=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.seedhost.eu/images/banners/*.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.torrent-invites.com###header > .torrinvcustom-wrapper > .ad_global_header:remove() ||sears.112.2o7.net^* ||us.af.beap.bc.yahoo.com^* ||beap-bc.yahoo.com^* ||pr.ybp.yahoo.com/sync/brightroll/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pr.ybp.yahoo.com/sync/casale/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pr.ybp.yahoo.com/ab/secure/true/imp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pr-bh.ybp.yahoo.com/sync/geniee/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pr-bh.ybp.yahoo.com/sync/openx/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pr-bh.ybp.yahoo.com/sync/casale/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pr-bh.ybp.yahoo.com/sync/adx?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ds-pr-bh.ybp.gysm.yahoodns.net/sync/adx?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tracking.justpremium.com^* ||ads.nexage.com^* ||webtrends2.epsilon.com^* ||gfmzz.allaff.8637.info^* ||trafficbauss.com^* !||www.safenetdir.com/fin.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.safenetdir.com^* !||www.terraclicks.com/click.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.terraclicks.com/watch?key=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.terraclicks.com/watch^* ||www.terraclicks.com^* ||tk2zz.allaff.8637.info^* ||allaff.8637.info^* ||www.teleate.info^* ||engine.phn.doublepimp.com^* !||8ekq.safesafenow.com^* !||*.safesafenow.com^* ||js.ad-score.com^* !||keentracking.xyz/tracking202/redirect/rtr.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||keentracking.xyz^* ||www.topshape.me^* faststore.org###add_text > .alert-error.alert:remove() ||faststore.org/fuckadblock.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cts.w55c.net/ct/cookie-pixel-lib.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cts.w55c.net/ct/cookie-pixel-fire.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sender.megapopads.com^* !||megapopads.com/scripts/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||megapopads.com^* zorofiles.com###container > .mainag > .contentback > form > table > tbody > tr > td:nth-of-type(1) > div > .adsbygoogle:remove() ||www.online-window-alert.com^* ||giftcardfanatic.com/images.eversave.com/Images/log_survey7372.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||srv.revdepo.com/adServe/sa?cid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||srv.revdepo.com/script/rhpop_1.1.29.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||srv.revdepo.com^* ||s3.amazonaws.com/dmp.info/publishers/js/plymedia.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||eclkmpsa.com/adServe/banners?tid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||eclkmpsa.com/adServe/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||babanetwork.adk2.co/babanetwork/tags/xbanner/xbanner.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||babanetwork.adk2.co^* ||track.tracker01.info^* !||www.terrapops.com/watch?key=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.terrapops.com^* ||winmorecoin.com/upload_dynamics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||trackbar.navigator-bs.gmx.com^* ||servedby.openxmarket.jp^* ||displayincloud.adk2x.com^* ||media.adtrack1.pl^* ||trk.pbjtime.xyz^* ||data.ad-score.com^* ||uploadex.com/tst/pop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||displayincloud.adk2.co/displayincloud/tags/xbanner/xbanner.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||displayincloud.adk2.co^* ||2y7ylbf.warningyou-mighthavean-infection.com^* !||houndprime.com/download/query.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||houndprime.com^* !||750fcb.textscene.com^* !||840e5a.textscene.com^* ||*.textscene.com^* pirateuropa.net###__topWidget287354_mainDiv:remove() !||hisohunt.com/00056/download.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hisohunt.com^* steffimariechen-1.deviantart.com###gmi-GPage > .gruser_top_slot > .top_wrapper > .ad-blocking-makes-fella-confused:remove() ||winmessage.info^* ||affiliate.cinstaller.com^* ||support.com-techsupport365.com^* ||free.pckeeper.best2015apps.co^* ||mailderef.gmx.com/adimg.uimserv.net^* ||www.trackerrmedia.com/click.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cpmpub.com/ax.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adpr.info/core/v3/impCore.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.maxcdmn.com^* ||track.trackerpros.com^* ||storage.googleapis.com/errorhandilngresources/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.loneforce.com/os/eh/fb-sweeps/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.loneforce.com^* ||ilividlive.byinmind.com^* ||connection-error.info^* !||kkuwbdn.critical-system-virus-alert72.com^* ||*.critical-system-virus-alert72.com^* ||error-codex0x01.info^* ||untangle-antispyware.co.cc^* ||adserver.femtoads.com^* ||c.pioneeringad.com^* ||femtoads.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||femtoads.com/zone/MzI=/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||p.adprimary.com/pop.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||p.adprimary.com^* ||pro-landers.com/campaign1$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adprimary.com/ga.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||connectionerrors.info^* ||mm87657jhbvd.com^* ||akz.imgfarm.com/images/anx/anemone-1.2.7.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||allin1convert.dl.myway.com/mirrorCookies.jhtml$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hoomezip.biz^* ||www.allin1convert.com/anemone.jhtml$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.loliphone25.xyz^* !||musicnote.info/collector?report=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||musicnote.info^* ||alwaysnew.newperferctupgrade.org^* ||d.castplatform.com/api/mpup/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.media4searching.org^* ||www.place4traffic.org^* ||trk.camptrkng.com^* ||strk.enlnks.com^* ||trk5zxc77.com^* www.softperfect.com###aswift_0:remove() www.softperfect.com###aswift_1:remove() www.softperfect.com###aswift_2:remove() !||oascentral.nailsmag.com/RealMedia/ads/click_lx.ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||oascentral.nailsmag.com^* !||imagec18.247realmedia.com/RealMedia/ads/Creatives/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||image*.247realmedia.com/RealMedia/ads/Creatives/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.rsc.cdn77.org/bsods/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||amrytt.adk2x.com/click/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||amrytt.adk2x.com^* ||fugdownload126.com^* ||1947145131.rsc.cdn77.org^* ||safedownloadsrus158.com^* ||c.msn.com/c.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.newser.com###g367CB268B1094004A3689751E7AC568FFloatingBanner0:remove() ||engine.adsupply.com^* ||lockerdome.com/lad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||b.aol.com/vanity/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.vidible.tv/prod/js/o2-min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||trk.vidible.tv/trk/ias_brand.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||trk.vidible.tv/trk/ias_measure.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||trk.vidible.tv/trk/impression.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||trk.vidible.tv/trk/js-loaded.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||trk.vidible.tv^* !||trends.revcontent.com/serve.js.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||trends.revcontent.com/event/impression$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||trends.revcontent.com/api/v1/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||trends.revcontent.com^* ||subscribe.glamour.com/ams/page-ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||event.glamour.com/js/eventTracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css betanews.com###bd > .wideCol > .article.section > .content > .lockerdomead:remove() ||1350745719.rsc.cdn77.org^* ||scanwarning.info^* ||www.liveadexchanger.com/rtb/worker.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.liveadexchanger.com/pix.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.liveadexchanger.com/a/display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adss.comeadvertisewithus.com/new-ads/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ads.comeadvertisewithus.com/ads/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adss.comeadvertisewithus.com^* ||ads.comeadvertisewithus.com^* ||hereforadollar.com^* ||theliving.space/offers/us/surveyron$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s3-us-west-2.amazonaws.com/ad-maven-public-cdn/usercloud.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s3-us-west-2.amazonaws.com/ad-maven-public-cdn/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ping.wespike.com/ping/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ping.wespike.com^* ||www.appcitydelivery.com^* ||wafra.adk2x.com^* ||f.analyticsdataprovider.com^* www.board.bloodsuckerz.net###vbseo_vhtml_0:remove() pan.baidu.com###share-ad-bottom[href^="http://qianbao.baidu.com/hd/cnfanxian"]:remove() !||revive.hpl-adserver.com/www/images/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||revive.hpl-adserver.com^* !||hpl-adserver.com/revive_adserver/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hpl-adserver.com/revive_adserver/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||content.googleapis.com/youtubei/v1/log_interaction$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.doubleclick.net/instream/ad_status.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css rapidmoviez.com###latest_episodes_fuck_adblock:remove() ||www.musixhub.com^* !||capture.trackjs.com/capture?token=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||capture.trackjs.com^* !||usage.trackjs.com/usage.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||usage.trackjs.com^* !||insight.adsrvr.org/track/evnt/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||insight.adsrvr.org^* ||forcepprofile.com^* !||v2.adgoto.com/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||v2.adgoto.com^* !||affiliates.5dimes.com/tracking/Affiliate.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||affiliates.5dimes.com^* ||bbredir.com^* !||clpremdo.com/ctrd/click/newjump2.do$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||clpremdo.com^* !||rdsa2012.com/static/lprdr.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rdsa2012.com^* ||safedownloadsrus173.com^* !||safedownloadsrus173.com/lp2/6720/88267/81/free/flashplayer$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||serve.bidtrk.com^* ||www.yieldtraffic.com/ad/display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||report.b.qq.com/crmReport/accesslog?FUid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||report.b.qq.com^* ||geniusboxmovies.com^* ||lp.baboom.audio^* ||log.adefficiency.net^* ||livestats.fr/counter.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dhzso7dpd119eeh.thecdnhost.com/impression.do$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tech.supportpc.com-189.co^* !||fb.com-189.co/SD77pc.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fb.com-189.co^* !||www.rockettabext.com/landing/adc?implementation_id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.rockettabext.com^* ||safestdownloadsrus113.com^* ||fugdownload143.com^* ||track.mediacomgroup-ads0043.com^* ||daddymeetsgoon.info^* ||adstract.adk2x.com^* ||domecontent.com^* !||cdn.ucaluco.com/Scripts/MediaScripts/p.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.ucaluco.com^* ||get.irucuzel36.com^* www.solidfiles.com###file > .clearfix.file-info > .clearfix.row > .btns:remove() ||static.bepolite.eu/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||by2.uservoice.com/t/*/x/p/track.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||by2.uservoice.com/*/track.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||alwaysnew.feelfree4update.com^* ||www.preparedcheck.net^* ||landing.bitcro.com^* ||www.newtab-tv.com^* !||media.affilize.com/pel/risk_free_728x90.gif ||media.affilize.com^* ||j.mp/sideracemoney$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.idgtn.net^* !||boom.bestadcom.com/gfra.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||boom.bestadcom.com/ggla.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||boom.bestadcom.com/gkca.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||boom.bestadcom.com^* !||cityads.com/service/banner?fid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cityads.com^* ||images.bestadcom.com^* ||iyfnzgb.com^* !||iyfnzgb.com/sk-logabpstatus.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||magic-data.biz^* !||mvi.fromfriendswithlove.com/go.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mvi.fromfriendswithlove.com^* !||fromfriendswithlove.com/go.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fromfriendswithlove.com^* ||onhax.net/cdn-cgi/pe/bag2?r[]=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||search.tvplusnewtabsearch.com/sc.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||search.tvplusnewtabsearch.com^* ||serving.bepolite.eu^* ||stat.moevideo.net/collect/player/flash_err$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stat.moevideo.net^* ||www.ad2browsebuy.com^* ||www.buynewmedia247.com^* ||www.openadserving.com/a/display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.openadserving.com/pix.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.openadserving.com/rtb/worker.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.pirate-baytorrent.com/pop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cse.google.ru/cse/brand?form=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||diane.dntrax.com/tr?id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||diane.dntrax.com^* !||cgi.pub.qq.com/report/bnl?data=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cgi.pub.qq.com/report/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||count19.51yes.com/sa.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||count19.51yes.com/click.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||count19.51yes.com^* ||5.nord-raum.com/iclk/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||5.nord-raum.com/js/cp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||5.nord-raum.com/show.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||66.8ox.cn/js/log_bgood_qy.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||89.8ox.cn/iclk/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||89.8ox.cn/show.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hs.qhupdate.com/sou/srp.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||huid.ad.360.cn^* ||i.qhupdate.com/p.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||jq.qq.com^* ||krgd.megafaders.com^* ||p9.qhimg.com/dmt/118_92_/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||qm.qq.com/cgi-bin/qm/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.360.cn/i360/qhpass.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.360.cn/sou/srp.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.qhupdate.com/so/click.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.qhupdate.com/sou/disp_rel.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||404.safedog.cn/sitedog_stat.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||edmag.net/static/js/popup.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||domaintoyourorder.info^* ||cdn.matheranalytics.com^* ||js.matheranalytics.com^* ||loggingservices.tribune.com^* ||www.i.matheranalytics.com^* ||i.matheranalytics.com^* ||metakeyproducer.com^* ||singleice.link/collector?report=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||barlive.link^* ||www.clickterra.net/watch$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rotator.offpageads.com^* ||track.popmog.com^* ||rc-aflrm.com^* ||download-performance.com^* !||d16b4.8ox.cn/i.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||d16b4.8ox.cn/iclk/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||d16b4.8ox.cn/js/cp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||d16b4.8ox.cn/show.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d16b4.8ox.cn^* !||js.jtdcg.com/iclk/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||js.jtdcg.com/js/cp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||js.jtdcg.com/show.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||js.jtdcg.com^* ||www.cilibaba.com/top/json_log$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tracking.godatafeed.com^* ||cdn.2xbpub.com/babanetwork/tags/xdirect/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ogswjfxal5.pw^* !||rd.connexity.net/rd?mid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rd.connexity.net^* ||a.komoona.com/passback/hp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.popundertotal.com^* ||s.komoona.com/passback/np/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s2s.komoona.com/GetAd?layoutid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||b.wishabi.com/track.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||b.wishabi.com^* ||tjtzz.pcloadletter.gyte.info^* hugefiles.net##a[href^="http://vidpark.com/downloadredirect"] > img[alt="Download now"]:remove() ||adimg.uimserv.net^* !||cdn.hmn-net.com/hmnlta/tags/xdirect/xdirect.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.hmn-net.com^* ||a2g-secure.com^* ||tags.bluekai.com^* ||top142freedownloads.com^* !||mpcdn1.com/dr2?srn=mp_adstract_fp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mpcdn1.com^* !||cdn.ad-maven.com/admaven/tags/xdirect/xdirect.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.ad-maven.com^* ||tn-cdn.abgeobalancer.com^* ||t.insigit.com^* ||a.rvttrack.com^* !||a.rvttrack.com/adx-dir-d/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.todigroup.com/todigroup/tags/xdirect/xdirect.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.todigroup.com^* ||codebluecmd.com^* !||ezramarketing.co/thriveredirect/coupon3$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||i.pcp003.com/assets/precheckemail.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||qisearchengine.com^* !||qitrck.com/setcookie$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.qitrck.com/setcookie.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||qitrck.com^* ||samples.coolsavings.com^* ||bestadbid.com^* !||bestadbid.com/apu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||bestadbid.com/afu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||t.mtagmonetizationb.com^* ||instatime.dist-app.com^* !||metrics.brightcove.com/tracker$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||metrics.brightcove.com/v2/tracker?domain=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||metrics.brightcove.com^* !||om.cbsi.com/b/ss/cbsigamespotsite,cbsicbsiall/1/JS-1.5.1/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||om.cbsi.com^* !||js-agent.newrelic.com/nr-100.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||js-agent.newrelic.com/nr-411.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||js-agent.newrelic.com/nr-412.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||js-agent.newrelic.com/nr-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pcvirusalerts.net^* !||1986a44b12e.com/Ad.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||1986a44b12e.com^* !||25643e662a2.com/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||25643e662a2.com^* !||25643e662a2.com/googlead.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||1986a44b12e.com/popunder.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.xl415.com/apu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.bwr-media.de^* ||us.ads.justpremium.com^* ||ads.paper.li/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.linkedin.com^* ||go.spaceshipads.com^* ||www.ultimatecloud.org^* ||fileinstallbox.com^* mp3albums.ucoz.com###uPreroll-holder:remove() mp3albums.ucoz.com##.myWinGrid:remove() ||utorrentinstall.com^* !||ec7638.torrentinstaller.com^* ||*.torrentinstaller.com^* ||unlimitedloads.com^* ||js.advideo.ru^* ||www.downage.org/showad.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||016625.torrentinstaller.com^* !||f2ca3d.torrentinstaller.com^* !||8b3b01.torrentinstaller.com^* !||541655.torrentinstaller.com^* ||fugdownload153.com^* ||mpredir-ac-101.com^* ||domainextensions.firm.in^* ||mytorrentsetup.com^* ||download.simple-download-7.com^* ||downprov.abc-abc-download-6.com^* ||downprov2.abc-abc-download-1.com^* ||downprov4.abc-abc-download-8.com^* ||files4.abc-abc-download-6.com^* !||ms1.easysuperdownload-1.com/getfast/ifhps1kyd2.cgi$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ms1.easysuperdownload-1.com^* ||simple-download-7.com^* ||tds.traffpartner.ru^* ||updatenew.freecodecheck.com^* !||7769domain.com/Ad/GoPEx2/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||7769domain.com/Ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||linkpaid.net/assets/app/css/interstitial.css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||orbitearth.net/f/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||worldsearchpro.com/popUnderResources/popUnderAdvan.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||worldsearchpro.com/popUnderResources/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.free2browse.org^* ||www.onclicktop.com/a/display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.onclicktop.com/pix.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.onclicktop.com/rtb/worker.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.upgrade4everyone.org^* ||driverupdate.net^* ||getdebrid.com/dhtaertaetzg.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css olo.gg###aswift_0 olo.gg###aswift_2 olo.gg###aswift_1 ||nosyezhe.com^* ||www.selsin.net/layer-advert-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.computergamesforum.com##.body_wrapper > center > a[href^="https://www.hotelscombined.com/"] www.computergamesforum.com###post_1761793023 > .postdetails > .postbody > .has_after_content.postrow > center > a[href^="https://www.hotelscombined.com/"] www.computergamesforum.com###post_1761793023 > .postdetails > .postbody > .after_content > center > a[href^="https://www.hotelscombined.com/"] !||js1.lishuanghao.com/cpv/i.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||js1.lishuanghao.com/cpv/lr_s.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||js1.lishuanghao.com/cpv/save_log.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||js993.lishuanghao.com/cpm_static/qy2014_direct_6.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||js993.lishuanghao.com/cpv/i.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||js993.lishuanghao.com/cpv/lr_s.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||js993.lishuanghao.com/cpv/save_log.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||js993.lishuanghao.com/i.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.lishuanghao.com/cpv/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.lishuanghao.com/i.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css linkcrypt.ws###nLayer_2b5cc4ac4945f02c970ff09091f1acd9 !||www.datafile.com/banners/728x90.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.datafile.com/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||track.dazhantai.com/ad_track.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||track.dazhantai.com/code_static/adstrack.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||track.dazhantai.com^* !||iiad.liuliguo.com/ha0000.php?adsid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||iiad.liuliguo.com/ha0000.php?op=click$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||iiad.liuliguo.com/ha0000.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.btbook.in/hot/json_log$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||66.8ox.cn/js/log_e4gg_qy.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hot.beiqisi.com/redian/temp/js/stat.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||j.jiawen88.com/wangzhai/i.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||j.jiawen88.com/wangzhai/s.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||j.jiawen88.com/wangzhai/wholeclick.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||j.jiawen88.com^* ||adsrvmedia.adk2x.com^* ||www.safesidetab.com^* ||search.safesidesearch.com^* ||pixels.safesidetab.com^* ||4.4001075656.com/iclk/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||4.4001075656.com/js/cp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||4.4001075656.com/show.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||e.tf.360.cn/search/imgpv.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||e.tf.360.cn/search/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||e4.6dad.com/i.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||t1.3sdaigou.com/cpv/go.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||v.6dvip.com/ge/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||web2.51.la:82/go.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.tradeadexchange.com/a/display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c.a2g-secure.com^* ||www.softwarecentral.net^* ||a9639bac622f09e53667-05e971146f45cd4ea7000f63bbb2d3a4.r0.cf5.rackcdn.com^* ||f9efb52667c76861cb3e-3c6a725a8e5d504a5ae72f00c7c1dc44.r52.cf5.rackcdn.com^* ||aea94cee02d9b1512ef2-866177c0a100464c268ec53bcb555f26.r86.cf1.rackcdn.com^* ||538aeabdba5c04a292be-f0ff273deb855075669441321009694f.r99.cf1.rackcdn.com^* ||a47424d09c05a44bc4fe-772f0b5bce751a33a850f36a6669b3b2.r34.cf1.rackcdn.com^* ||itiling.pw/game/itiling/index.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.adservingsolutionsinc.com^* ||auto-replicator-update.com^* www.bankrate.com###pageDiv > .pageHolder > .rightRail > .boxContainerRightRail:nth-of-type(3) > .bgAdBlue.pad9:remove() blogjob.com###ar-top:remove() blogjob.com###ar-bottom:remove() ||www.tradeadexchange.com/pix.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.protect0r.com^* ||010918.protect0r.com^* ||ads.protect0r.com^* audioz.download###inside > article > .descr > .UsenetGreen[href^="http://duckcash.eu/AF_TA/rel/index.cfm"]:remove() ||yepdigital.adk2x.com^* ||chakari16terium.com^* ||sweetpacks.go2cloud.org^* ||scredir10.com^* ||www.mktrack.com/click.track$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||slimcleaner.com^* ||in.ml314.com/ud.ashx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ml314.com/tag.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ml314.com/tpsync.ashx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ml314.com/utsync.ashx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ml314.com/imsync.ashx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vi.ml314.com/get?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stat.clickfrog.ru^* ||brandnewtommorrow.com^* !||popped.biz/pop-imp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||popped.biz^* ||www.opinionmatters.club/tracking/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xml.adfclick1.com^* ||callmd5map.com^* ||ad.360yield.com^* ||ads.inventmx.com^* ||ads.p161.net^* ||ads.kiosked.com^* ||delivery.a.switchadhub.com^* ||ih.adscale.de^* ||tvn.adocean.pl^* !||xb11766.com/ctrd/click/newjump2.do$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xb11766.com^* ||www.ultimatenews.org^* ||webinline-usage.streamesh.net^* ||cws.psccint.com/redirector/geturl$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||service.whiteserver6.com/serving/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adapi.ragapa.com/api/adscript.jsp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adapi.ragapa.com/v1/ad-strip-timer$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adapi.ragapa.com/v1/adcontent$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adapi.ragapa.com^* !||beam.hlserve.com/beacon^* ||beam.hlserve.com^* !||cn.tatami-solutions.com/eas?cu=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cn.tatami-solutions.com^* !||ctxfeed.media-serving.com/pops/index.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ctxfeed.media-serving.com^* ||thepiratebay.se/static/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||thepiratebay.se/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.albanyherald.com/tncms/tracking/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||oasc18016.247realmedia.com/om/1.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||oasc18016.247realmedia.com^* ||bloximages.newyork1.vip.townnews.com/albanyherald.com/content/tncms/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bloximages.newyork1.vip.townnews.com/albanyherald.com/content/tncms/live/components/ads_blox/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bloximages.newyork1.vip.townnews.com/albanyherald.com/content/tncms/live/components/ads_oas/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.albanyherald.com/_services/v1/client_ip_info/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.albanyherald.com/shared-content/art/tncms-ad-manager/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.albanyherald.com/shared-content/art/tncms/tracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||oascentral.blogher.org^* ||ads.mediade.sk/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||soft4update.whenupgradeswork.com^* ||b.ifmnwi.club/adblockr.javascript$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||b.ifmnwi.club/ads.bmp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||b.ifmnwi.club^* ||www.adnetworkperformance.com/pix.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adnetworkperformance.com/a/display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adnetworkperformance.com/script/packcpm.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.preparedsearch.org^* ||www.updating4free.net^* ||ads.kinkbomb.com^* ||download.aprilgreendownload.com^* ||files3.rqwe-rqwe-download-1.com^* ||downprov4.rqwe-rqwe-download-8.com^* ||www.batilo.de/advertisment/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.batilo.de/click.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.g4u.me/images/partners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stephanie.dntrax.com^* ||referrer.disqus.com/juggler/telemetry/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||multioptik.com^* ||errorhelper.site^* ||cdncache-a.akamaihd.net/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fw2.adgroo.com^* ||motherboard.vice.com/themes/motherboard/statics/html/mb_tracker.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||npmpecd.com/click?c=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||npmpecd.com^* ||scancomputer.site^* torcache.kattorrents.co###_801a36d4e167c7184d4c696d2e103004 > iframe ||torrentinstallname.com^* ||computer-warning.info^* ||a.computer-warning.info^* ||b.computer-warning.info^* ||c.computer-warning.info^* ||tpp.youtuybe.com^* ||angletryeds.com^* ||popserve.adscpm.net^* ||secureupload.eu/js/popadscpm.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||secureupload.eu/js/poad.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||uploadex.com/fuckadblock.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||uploadex.com/ad/banner/_adsense_/_adserver/_adview_.ad.json$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||uploadex.com/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||disqusads.com/ads-iframe/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||disqusads.com^* !||cao.tc600.com/cpv/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cao.tc600.com^* !||ccm.aixingxing.com/comm/c_axw.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ccm.aixingxing.com^* !||jsxd9u2g.aixiawa.com/cpv/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||jsxd9u2g.aixiawa.com/s8lt099z/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||jsxd9u2g.aixiawa.com^* !||push.zhanzhang.baidu.com/push.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||push.zhanzhang.baidu.com^* nnm-club.me###CGCandy377IF:remove() nnm-club.me##.copyright:remove() www.gametracker.com###div-gpt-ad-1320098165868-0:remove() www.gametracker.com##.block_ad303x1000_left:remove() www.gametracker.com##.block_ad303x1000_right:remove() !||ima3vpaid.appspot.com/?adTagUrl=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ima3vpaid.appspot.com^* !||h6.msn.com/nativeads/ms-nativeads-msn-inarticle.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||h6.msn.com/nativeads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||admtpmp123.adk2x.com^* !||6534573.clientreports.info^* ||*.clientreports.info^* !||potcityzip.com/async?tid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||potcityzip.com^* ||safedownloadsrus199.com^* !||bbredir101.com/dr2?srn=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bbredir101.com^* ||data.retainguaninefluorite.info^* ||factson37.com^* !||zerem.finishclueobscure.info/lets/play200.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||zerem.finishclueobscure.info/pix.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||zerem.finishclueobscure.info^* !||onceux.unicornmedia.com/now/ads/vmap/adaptive/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.gamespot.com###mpu_top-wrap !||helix.beanstock.co/nucleus/request?v=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||helix.beanstock.co/nucleus?slot_key=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||helix.beanstock.co^* !||static2.gamespot.com/js/compiled/tracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static3.gamespot.com/js/compiled/trackingWithCT.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static*.gamespot.com/js/compiled/tracking$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static4.gamespot.com/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static*.gamespot.com/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||459027.carecontrolerror.info^* !||23616.carecontrolerror.info^* !||325181.carecontrolerror.info^* !||601110.carecontrolerror.info^* !||984289.carecontrolerror.info^* !||717438.carecontrolerror.info^* !||296371.carecontrolerror.info^* !||989990.carecontrolerror.info^* !||131982.carecontrolerror.info^* ||*.carecontrolerror.info^* !||8930001.urgentclient.info^* ||*.urgentclient.info^* !||js.avstats.com/c.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||js.avstats.com^* !||trkoz.com/us-ac-1/index.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||trkoz.com^* !||ucaluco.com/*/Tag.a1b$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ucaluco.com^* ||www.clickmngr.com/watch?key=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.adsrvmedia.net^* ||c.interacttrk.com^* ||www.freecounterandstats.com/counter2.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||c.webtrends.com/acs/account/*/js/wt.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c.webtrends.com^* ||cache.betweendigital.com/code/showad_full.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||delivery.clickganic.com/js/placeholder.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||delivery.clickganic.com^* ||ssp.clickganic.com/vstat/banner$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ssp.clickganic.com/vstat/banner_failed$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css depositfiles.com###CGCandy2066IF depositfiles.com###CGCandy2066 ||secureupload.eu/images/soundcloud_2.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||secureupload.eu/images/wpman_2_2.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||secure.statcounter.com/counter/counter.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||secure.statcounter.com^* ||malecona.mastertopforum.info/topframe.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||199.101.98.242/services/GEO_CODE/?callback_func=load_popunder$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||c1.onedmp.com/c/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c1.onedmp.com^* ||cdn.onedmp.com/iframeH/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||frostbone.playground.ru/js/winter.php?bannerid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||frostbone.playground.ru/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||psma02.com/impression/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stat.videonow.ru^* ||www.emuparadise.me/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.interesty.net/h12srv/tags/xdirect/xdirect.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn1.srv.revdepo.com/script/rhpop_1.1.39.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn1.tags3.revdepo.com/banners/script/bnr-wrp_1.0.20.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.interesty.net^* ||cdn1.srv.revdepo.com^* ||cdn1.tags3.revdepo.com^* ||d2nq0f8d9ofdwv.cloudfront.net/track.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||eclkmpbn.freedownloadsite.net/adServe/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ee8f928b71ed0dc6033231fa0943d9f5.adsk2.co^* ||*.adsk2.co^* ||h12srv.adk2x.com^* ||tags.h12-media.com^* ||tagsh12-media.cztrack.net^* ||*.infolinks.com/action/getads.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nulledpirate.com/cdn-cgi/pe/bag2?r[]=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||defender.apps-webstore.net^* ||music.espeedcheck.com^* ||yepdigital.adk2.co^* !||ads62.depositfiles.com^* !||ads63.depositfiles.com^* ||ads*.depositfiles.com^* !||c.shopmania.com/redir$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c.shopmania.com^* ||www.blkget6.com^* ||affrh2019.com/adServe/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.geolify.com/georedirect.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tah.trueharborjump.com^* ||u9vzz.pcloadletter.niiz.info^* ||www.reimageplus.com/includes/router_land.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.reimageplus.com/includes/set_javascript.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||torrentstorage.download^* !||12021b.torrentinstaller.com^* ||mymediadownloadsthirtytwo.com^* ||adserverdirect.keypoint-media.com^* !||b1.windowsrepairpcsolution.com^* !||a1.windowsrepairpcsolution.com^* !||c1.windowsrepairpcsolution.com^* !||d1.windowsrepairpcsolution.com^* ||*.windowsrepairpcsolution.com^* ||www.windowsrepairpcsolution.com^* ||betack.com/cdn-cgi/nexp/dok3v=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||betack.com/cdn-cgi/pe/bag2?r[]=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.trendcounter.com/w/sidebar/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.g2a.com/js/affiliate.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||0b28a9.torrentinstaller.com^* ||ddownload48.club^* ||download5.gau135.tk^* ||fileupnow.rocks/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ic-u-88.xyz^* !||ijncw.tv/adx.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ijncw.tv/sc.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ijncw.tv^* utorrents.space###MarketGidPreloadC30884:remove() ||www.torrentz.eu/show_ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adserver-e7.com/js/show_ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adserver-e7.com^* ||dl.egexa.re/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wafmedia6.com/m/p.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.waframedia5.com/wafra/tags/xpopup/xpopup.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.waframedia5.com/wafra/tags/xnotificationbar/xnotificationbar.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.waframedia5.com/wafra/tags/xcatfish/xcatfish.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.waframedia5.com/wafra/tags/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||9876372.urgentclient.info^* ||filefreak.com/cdn-cgi/nexp/dok3v=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||filefreak.com/cdn-cgi/pe/bag2?r[]=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||id.get35.com/m/guid?us_eid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||id.get35.com^* ||seduction4life.info/cdn-cgi/pe/bag2?r[]=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||router.infolinks.com/gsd/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||udarem.com/ajs.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||udarem.com/fl.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||udarem.com/spc.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||udarem.com/spcjs.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||udarem.com/images/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||udarem.com/lg.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||udarem.com/ck.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||udarem.com/avw.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||udarem.com^* ||noembed.com/providers$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||place2066.nighter.club/js/engine.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||place2066.nighter.club/js/slider.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||place2066.nighter.club^* !||14616.carecontrolerror.info^* !||boom.1ccbt.com/gfua.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||boom.1ccbt.com/gpua.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||boom.1ccbt.com^* ||setupoffice.us^* !||park.above.com/jr.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||park.above.com^* ||avalerts.net^* nulledscripts.phonerace.com##.onp-sl-group nulledscripts.phonerace.com##.onp-sl-social-buttons nulledscripts.phonerace.com##.onp-sl-first-group nulledscripts.phonerace.com##.onp-sl-single-group nulledscripts.phonerace.com##.onp-sl-group-index-1 nulledscripts.phonerace.com##.onp-sl-has-counters nulledscripts.phonerace.com##.onp-sl-horizontal nulledscripts.phonerace.com##.onp-sl-lang-en_US ||ydxzz.super-promo.quhu.info^* ||atwb.hyperadslite.com^* ||ab167440.adbutler-tauon.com^* !||safesearch.raaz.io/lander.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||safesearch.raaz.io^* !||go.raaz.io/dd/xx/7632X.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||go.raaz.io^* ||tracking.tfxiq.net^* ||s7.addthis.com/static/counter.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.themobilegames.net^* ||www.onclickpredictiv.com/pix.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.onclickpredictiv.com/a/display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static.kinley.com/lib/PGMymxKANO9q4r3a/implement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.kinley.com/mis/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static.kinley.com/adn/images/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static.kinley.com/adn/content/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.kinley.com/adn/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static1.kinley.com/images/ad_images/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||liveupdate.new24checkupgrade.net^* ||www.digitalsoft247.net^* ||www.readyfornewsearch.online^* ||ssl.gstatic.com/s2/oz/images/notifications/spinner_32_*.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.shlahml4pizza.space^* !||49706a.torrentinstaller.com^* !||469781.chck-3ewdtg5s.pw^* !||73553.chck-3ewdtg5s.pw^* !||107407.chck-3ewdtg5s.pw^* !||www.chck-3ewdtg5s.pw^* ||*.chck-3ewdtg5s.pw^* ||a890b70fe6da22b9cfe8-7cee61343e7fa8e7eb119412d4bccaf7.r51.cf1.rackcdn.com^* ||www.coolshoolz.com^* !||files.innovid.com/creative/1x1.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||files.innovid.com/creative/UniversalMcCann/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||files.innovid.com/creative/UniversalMcCann/Jeep/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||files.innovid.com/creative/omd/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||files.innovid.com/creative/omd/altima_f4/Altima_Breakup_30_NOAL2893H.flv$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||files.innovid.com/creative/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s-cdn.innovid.com/*/iroll-runtimes/iRoll.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s-cdn.innovid.com/*/platform/vpaid/VPAIDIRollPackage.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s-cdn.innovid.com/iroll/companion/asset/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s-cdn.innovid.com/project_uploads/1hjiqe/ToyotaCamry_Bug.6.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s.innovid.com/1x1.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.innovid.com^* ||s-files.innovid.com/creative/1x1.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s-static.innovid.com/assets/*/encoded/media-1.flv$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s-static.innovid.com/assets/*/encoded/*.flv$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static.innovid.com/assets/7945/711/encoded/media-1.flv$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.innovid.com/assets/*.flv$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s-static.innovid.com/media/encoded/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s-static.innovid.com/mobileapps/s/js/vpaid/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.innovid.com/iroll/package/iab-vpaid/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dts.innovid.com/placement/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dts.innovid.com/to/liveramp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||rtr.innovid.com/r1.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rtr.innovid.com/placement/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ui.bamstatic.com/fedapp/video/flash/fvp/120sports/*/skins/ad_countdown.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||oasc08011.247realmedia.com^* ||securitas125maximus.xyz^* ||adplexmedia.adk2.co^* ||d1jl096lp4cce0.cloudfront.net^* ||31c2760f3f7e1de19c4f-517a86bcc8a5a1c7b2d17704661b8cf0.r84.cf2.rackcdn.com^* ||luvgames.pw/stream/bobo.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.driverupdate.net^* ||login.snw.media/snwmedia/tags/xdirect/xdirect.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.nic1er.space/randownload.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.nic1er.space^* ||www.fri10ed.space^* ||www.sho1es.space^* !||downloady.xyz/downloadd.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||downloady.xyz^* !||downloadme.online/click.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||downloadme.online^* !||www.sigalert.com/Data/Colorado/path.json$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||alpha.collectivads.com/ads/adc.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||alpha.collectivads.com^* ||www.medianewtab.com^* ||searchincognito.com^* !||cs.ijsve.com/s/596/298210.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cs.ijsve.com^* ||shadow.com^* www.gamewatcher.com##.adsbygoogle:remove() ||support.adware-scanner.co^* !||alwaysnewsoft.traffic-portal.net/gdsa?fdas=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||alwaysnewsoft.traffic-portal.net^* ||d2c4ofn4vwqrfd.cloudfront.net^* ||livedownblue.com^* ||ms1.easysuperdownload-2.com^* ||ms2.easysuperdownload-1.com^* !||piwik.ces2007.org/piwik/piwik.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||piwik.ces2007.org^* ||www.testingnewsoft.net^* ||www.update2upgrade.org^* ||i.ijsve.com^* ||p.ijsve.com^* ||support1.adware-scanner.co^* ||web.ijsve.com^* !||www.jobfromhometonight.com/lander/pcash$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.jobfromhometonight.com^* ||uplod.it/tst/pop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cpix.medleyads.com^* !||click.adimmix.com/fc/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||click.adimmix.com/click/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||click.adimmix.com^* ||downloatransfer.com^* ||d29lpg037v41oq.cloudfront.net^* www.playonlinux.com##.login cornerofhopeandmane.com##.ds_cpp ||track.dumedia.ru^* ||dnyjp3iys0r8o.cloudfront.net^* !||175314.servefail.tech^* !||33793.servefail.tech^* !||697342.servefail.tech^* !||593272.servefail.tech^* !||232902.servefail.tech^* ||*.servefail.tech^* ||58cesd.servefail.xyz^* !gamepolitics.com###pw_adbox_77831_7_0:remove() gamepolitics.com##*[id^="pw_adbox_"]:remove() ||wsehgaldesignsweb.info^* ||d3sbxpiag177w8.cloudfront.net/Analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a1.nyt.com/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||data.televiseneurosisfilmstrip.info^* !||gets.televiseneurosisfilmstrip.info/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gets.televiseneurosisfilmstrip.info^* ||images.gocomics.com/images/house_ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cm.dpclk.com/cm?nw_id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cm.dpclk.com^* !||report-ads-to.pubnation.com/dist/pnr.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||report-ads-to.pubnation.com^* ||track2.securedvisit.com^* ||assets-origin.nytimes.com/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||n.ads3-adnow.com^* !||st.n.ads3-adnow.com/js/adv_out.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||st.n.ads3-adnow.com^* ||ox-d.bhphotovideo.com^* !||ox-d.covers.com/w/1.0/afr?auid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ox-d.covers.com^* !||ox-d.cloud9-media.net/w/1.0/acj?ai=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ox-d.cloud9-media.net^* ||ox-d.adobe.com^* ||ox-d.bbt.com^* ||ox-d.pazoo.com^* ||ox-d.wetransfer.com^* ||ox-d.qz.com^* ||ox-d.journatic.com^* ||ox-d.gamer-network.net^* ||ox-d.openx.jp^* ||ox-d.gamerpublishing.com^* ||ox-d.adaptivem.com^* ||ox-d.crisppremium.com^* ||ox-d.101m3.com^* ||ox-d.makerstudios.com^* ||ox-d.netline.com^* ||ox-d.jrn.com^* ||ox-d.matchflowmedia.com^* ||ox-d.slickdeals.servedbyopenx.com^* ||ox-d.tmn.servedbyopenx.com^* ||ox-d.huddler.servedbyopenx.com^* ||ox-d.merriamwebster.servedbyopenx.com^* ||ox-d.cbs.servedbyopenx.com^* ||ox-d.wikihow.servedbyopenx.com^* ||ox-d.medianet.servedbyopenx.com^* ||ox-d.amu.servedbyopenx.com^* ||ox-d.deviantart.servedbyopenx.com^* ||e.deployads.com^* ||ads.waframedia1.com^* ||ad.theequalground.info^* ||optimize-stats.voxmedia.com^* ||track.audios.pw^* ||t1.trackforks.com^* !||pubted.com/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pubted.com/w/d/p.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pubted.com^* !||arecio.work/pops/tracker/noscript.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||arecio.work^* ||prsliders.com/sexybabes.top^* ||prwidgets.com/sexybabes.top^* !||sexybabes.top/ads.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||sexybabes.top/frm.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||sexybabes.top/juicy.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||sexybabes.top/plugrush.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sexybabes.top^* !||w.uptolike.com/match/cleardata$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||w.uptolike.com/match?uid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||w.uptolike.com/widgets/v1/cprs.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||w.uptolike.com/widgets/v1/extra.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||w.uptolike.com/widgets/v1/impression.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||w.uptolike.com/widgets/v1/zp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||w.uptolike.com/widgets/v1/zp/imp?pid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||w.uptolike.com/widgets/v1/zp/support.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||w.uptolike.com^* !||www.supersharewave.tk/img/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.supersharewave.tk/pjs.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.supersharewave.tk^* !||prscripts.com/pub.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||prscripts.com^* !||clckto.ru/sync$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||clckto.ru^* !||dmg.digitaltarget.ru/1/143/i/i?a=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dmg.digitaltarget.ru^* warezwarez.es###hrthwg345eEl ||d2lv4zbk7v5f93.cloudfront.net/esf.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||d1z2jf7jlzjs58.cloudfront.net/code/ptrack-v0.4.10-engaged-time.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||d1z2jf7jlzjs58.cloudfront.net/code/ptrack-v0.4.2-engaged-time.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d1z2jf7jlzjs58.cloudfront.net/code/ptrack-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css-engaged-time.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d1z2jf7jlzjs58.cloudfront.net/p.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||budgetedbauer.com/a.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||budgetedbauer.com^* ||cdn.craveonline.com/libraries/pebblebed/js/cookie_notice.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pix.silverpush.co/pixel.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pix.silverpush.co^* ||www.alternateatmosphere.com^* ||speed-ez-win.com^* !||vq91811.com/ctrd/click/newjump2.do$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vq91811.com^* ||ddownload39.club^* ||www.pc-online-support.net^* ||xml.adventurefeeds.com/click?adv=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mediafree.co/pop0.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||howtoremoveadblock.com/js/adblock-detector.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||i68.tinypic.com/344xvnr.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.waframedia3.com/wafra/tags/xbanner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ox-d.consumed.servedbyopenx.com^* !||ox-d.theunlockr.com^* www.pinterest.com##.InlineSignup:remove() www.pinterest.com##.UnauthBanner:remove() www.pinterest.com##.halfScreenBanner:remove() www.pinterest.com##.quarterScreenBanner:remove() www.pinterest.com##.wallStep:remove() ||uk.gpaf.net/b/sky?ref=pcgw&utm_content=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css&utm_medium=skyscraper$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css windowsforum.com###BrowserBar:remove() !||updatemybrowser.org^* !||track.netshelter.net/async/js/sites/tweaktown.com-async.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||track.netshelter.net^* !||tweaktown.us.intellitxt.com^* www.tweaktown.com##div[class="adcon"]:remove() www.tweaktown.com##div[class="ad"]:remove() www.tweaktown.com##div[class="center-tag-rightad"]:upward(1):remove() www.tweaktown.com##div[class="center-tag-rightad"]:remove() www.tweaktown.com##div[id="DesktopTop"]:remove() ||www.tweaktown.com/logger.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.tweaktown.com/logger_news.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.tweaktown.com/new/js/logger_news.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||uploadshub.com/images/start-download.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ads.genericlink.com/ads/site/pauseroll/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.genericlink.com^* !||www.etahub.com/trackn?app_id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ss.godlessnightsfilm.co.uk/scripts/ad-gallery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.quantserve.com/quant.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||assets.consumedmedia.com/js/interstitial-overlay.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.adsclean.com^* ||us-st.xhcdn.com/js/track.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||main.exoclick.com/tag.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.fuckbookdating.com/yui/yui.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||89394-39.popunder.loading-delivery2.com^* ||*.popunder.loading-delivery2.com^* ||static.xvideos.com/js/jquery.popunder.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||brealtime.mynativeads.com/pub2/error/log.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||brealtime.mynativeads.com/pub2/report.json$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||brealtime.mynativeads.com/pub2/web/widget2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn3.pressroomvip.com/wp-content/plugins/sranalytics_wordpress-0.1.5/javascripts/sranalytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn3.pressroomvip.com/wp-content/plugins/sranalytics_wordpress-0.1.5/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn3.pressroomvip.com/wp-content/themes/pressroomvip/js/misc/insert_interstitial.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn3.pressroomvip.com/wp-content/themes/pressroomvip/js/misc/prvip_advert.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn3.pressroomvip.com/wp-content/themes/pressroomvip/js/misc/utm-persistency.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn3.pressroomvip.com/wp-content/plugins/cpx-advert/library/cpxadvert_event_tracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn3.pressroomvip.com/wp-content/plugins/cpx-advert/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||go4up.com/assets/img/webbuttoned.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads2.contentabc.com^* !||bnr2.revdepo.com/adServe/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||bnr2.revdepo.com/banners/script/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bnr2.revdepo.com^* !||tags4.revdepo.com/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tags4.revdepo.com^* ||cdn.tenderchickenbites.com^* !||cpatrackingdeals.com/travel/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cpatrackingdeals.com^* winaero.com##.adsbygoogle:remove() !||www.thursaaw.com/alks/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.thursaaw.com^* ||www.repositoryheartbits.com^* !||stats.berkman.harvard.edu/piwik.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stats.berkman.harvard.edu^* !||whonami.info/async?crc=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||whonami.info^* thehill.com##.connatix:remove() thehill.com###dfp-ad-incontent_desk_2:remove() thehill.com##*[id^="dfp-ad-incontent_desk_"]:remove() thehill.com##*[class^="ad-unit"]:remove() thehill.com##div[id="acm-ad-tag-"]:remove() thehill.com##div[id="taboola-tracking-pixel"]:remove() thehill.com##script[id^="jetpack-stats-js"]:remove() thehill.com##script[class*="ns-ad-handler-js"]:remove() thehill.com##script[id="the-hill-ad-loader-js-js"]:remove() thehill.com##script[id^="htlbid_"]:remove() thehill.com##script[id="adobe-analytics-library-js"]:remove() thehill.com##+js(set-constant, CompanionAd, {}) thehill.com##+js(acs, /CompanionAd\.init\(\)/) thehill.com##+js(set-constant, window.isHtlbidEnabled, false) thehill.com##+js(aopr, window.isHtlbidEnabled) thehill.com##+js(aopw, window.isHtlbidEnabled) ! Do not refine or block all window.amScripts. thehill.com##+js(set-constant, window.amScripts["gpt"], {}) thehill.com##+js(aopr, window.amScripts["gpt"]) thehill.com##+js(aopw, window.amScripts["gpt"]) thehill.com##+js(aopr, window.isAdSponsorshipEnabled) thehill.com##+js(aopw, window.isAdSponsorshipEnabled) thehill.com##+js(set-constant, window.consentGranted, noopFunc) thehill.com##+js(set-constant, window.permutive, {}) thehill.com##+js(aopr, window.permutive) thehill.com##+js(aopw, window.permutive) thehill.com##+js(set-constant, window.permutive.consent, noopFunc) thehill.com##+js(aopw, oneTrustAccept) thehill.com##+js(aopw, window.NXSTdata.ads.blockthroughStatus) thehill.com##+js(aeld, load, /permutive\.consent\(/) thehill.com##+js(aeld, load, /window\.consentGranted/) thehill.com##+js(set-constant, window.isAdRefreshEnabled, false) thehill.com##+js(set-constant, window.isAdSponsorshipEnabled, false) thehill.com##+js(set-constant, window.adRefreshConfig, {}) ||thehill.com/wp-content/themes/the-hill/client/build/js/ad-loader.bundle.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||thehill.com/wp-content/plugins/nxst-advertising/dist/htlbid-advertising.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||thehill.com/wp-content/plugins/nxst-advertising/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||thehill.com/*/xhr/api/v2/collector$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||blue.thehill.com/rest/v2/recommendations/stats?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||l.ooyala.com/errors/report^log=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||opf.ooyala.com/3rdparty/freewheel_ads_manager_module_51.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||opf.ooyala.com/3rdparty/freewheel_sdk55_ads_manager_*.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||opf.ooyala.com/3rdparty/espn_analytics_v3_32.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !!||opf.ooyala.com/3rdparty/ESPNAnalytics_comscore_3.48b_omniture_3.42.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||opf.ooyala.com/3rdparty/ESPNAnalytics_*.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||player.ooyala.com/sas/authorized?analytics_params=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||player.ooyala.com/static/modules/analytics-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.modules.ooyala.com/static/modules/analytics-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||6h.c.ooyala.com/static/modules/analytics-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||modules.ooyala.com/static/modules/analytics-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adm.fwmrm.net/p/espn_live/AdManager.swf?logLevel=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adm.fwmrm.net/p/espn_prod/AdManager.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adm.fwmrm.net/p/espn_live/VPAIDAdRenderer.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adm.fwmrm.net/p/espn_live/VideoAdRenderer.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||espnfw-a.akamaihd.net/*/SEA_ad_*.mp4$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The following rule redirects the video to a null file instead. !||espnfw-a.akamaihd.net/*/SEA_ad_*.mp4$media,redirect=noop-1s.mp4 !||espnfw-a.akamaihd.net/m/*/BHTT6038000H_Drift_REV_30_HD_1456443170_79040_181.mp4$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The following rule redirects the video to a null file instead. !||espnfw-a.akamaihd.net/m/*/BHTT6038000H_Drift_REV_30_HD_1456443170_79040_181.mp4$media,redirect=noop-1s.mp4 ||espnfw-a.akamaihd.net^* !||capture.condenastdigital.com/track?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||capture.condenastdigital.com^* !||cdn.yldbt.com/js/yieldbot.intent.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.yldbt.com^* !||l2.visiblemeasures.com/adsnativeidswap$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||l2.visiblemeasures.com^* !||pixel.combotag.com/tracker/imp.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pixel.combotag.com/tracker/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||rudy.adsnative.com/cm.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rudy.adsnative.com^* ||srv.stackadapt.com^* www.wired.com##.paywall-bar--visible.paywall-bar:remove() !www.wired.com##.paywall-container-component--growler.paywall-container-component:remove() www.wired.com##.paywall-container-component--growler:remove() www.wired.com###veil.flex-box:remove() www.wired.com###veil.align-m:remove() www.wired.com###veil.right:remove() www.wired.com###veil.left:remove() www.wired.com###veil.bottom:remove() www.wired.com###veil.veil-active:remove() www.wired.com###sidebar-wrap > .marg-b-med.sidebar-rad.box.rad www.wired.com##.hr-top.headroom.justify-c.align-m.flex-box.bg-gray-1.brad-top.rad www.wired.com###prefooter > .flex-box.clearfix.site-container > .mob-order-2.flex-row > .mob-order-1.big-col-12.med-col-10.col.float-l-med.float-l-big.article-group > .items-3.items.flex-row > .med-order-2.col.big-col-9.med-col-18 > .flex-row > .hide-mob.big-marg-b-med.med-marg-b-med.big-col-18.med-col-10.justify-c.align-m.flex-box.col.rad.bg-white www.wired.com##.paywall-modal--paywall:remove() www.wired.com##.paywall-modal:remove() www.wired.com##div[class*="AdWrapper-"]:remove() www.wired.com##div[class*="ad__slot"]:remove() www.wired.com##+js(remove-class, vjs-ad-loading) www.wired.com##+js(remove-class, vjs-controls-disabled) www.wired.com##aside[class*="PaywallInlineBarrierWrapper"]:remove() ||subscribe.wired.com/ams/page-ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.wired.com/ads/newad.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.wired.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.wired.com/hotzones/src/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.wired.com/js/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.wired.com/js/omniture/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.wired.com/js/cn-fe-ads/wired.lazyload.ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.wired.com/js/cn-fe-ads/cn.ad.arsaccelerator.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.wired.com/js/cn-fe-ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sstats.wired.com^* ||stats.wired.com^* !blocks wired.com videos !||dp8hsntg6do36.cloudfront.net^* ||cdn.marvelhulk.com^* ||bestoffersdaily.xyz^* !||pr-v2.prchecker.info/getpr.v2.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pr-v2.prchecker.info^* ||cdn.imgtty.com^* www.bostonglobe.com###email-login.white-popup-block:remove() www.bostonglobe.com###email-login.paywall-square-meter:remove() www.bostonglobe.com###email-login.social-login:remove() www.bostonglobe.com###email-login.email-login:remove() !||yx-ads6.com/banner_show.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||yx-ads6.com^* !||stat.radar.imgsmail.ru/update?p=c$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stat.radar.imgsmail.ru^* !||cdn.mediaessence.net/yepdigital/tags/xbanner/xbanner.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.mediaessence.net/yepdigital/tags/xbanner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||oascentral.arkansasonline.com^* gbizzesss.blogspot.com##.ad:remove() gbizzesss.blogspot.com###lsmspnad:remove() ||justgetitfaster.com^* ||pop.ridiculousjedi.com^* ||www.gboxes.com/ad-here-gboxes.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||apkarea.com/stats/counter.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||apkarea.com/stats/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||stpix.media6degrees.com/orbserv/hbpix?pixid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stpix.media6degrees.com^* ||ads.crackhex.com^* ||www.crackhex.com/uploads/javascript_global/root_framework.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.mirrorcreator.com/mstat.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||show.qt13998.net^* ||fitdigs.leadpages.co^* !||serve.servesomeads.com/tracking202/redirect/dl.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||serve.servesomeads.com^* ||armoradvice.com/sticky.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||james-3465.kxcdn.com^* ||uptownads.com^* ||cdn.vindicosuite.com/Repository/adunit/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.dllsofttweaar.com^* !||www.ultifiletur.com/HF8ph4Z1/securely/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.ultifiletur.com^* ||lee-367b.kxcdn.com^* ||foggiermoonbeams9.top^* !||scredir16.com/dr2?srn=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||scredir16.com^* ||shuffling1aconitums.top^* ||ex.ibt.uk/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sharethrough.com^$domain=forbes.com ||stav-adu-1.s3.amazonaws.com^* !||clickadu.com/apu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||clickadu.com^* !||trzet.space/c6/index.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||trzet.space^* ||upvast.com/js/countdown.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||u3d.at.ua/.s/flash/bnr/ukit-eng-popup-HD.mp4$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The following rule redirects the video to a null file instead. !||u3d.at.ua/.s/flash/bnr/ukit-eng-popup-HD.mp4$media,redirect=noop-1s.mp4 ||rot.spotsniper.ru^* !||u3d.at.ua/abnl/?adsdata=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||u3d.at.ua/abnl/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sarah.dntrax.com^* ||land.pckeeper.software/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !www.solidfiles.com##.show-ads:remove() ||solidfiles-732425.c.cdn77.org/static/js/advertisement.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||solidfiles-732425.c.cdn77.org/static/js/viewer-vendor.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||solidfiles-732425.c.cdn77.org/static/js/main-vendor.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||solidfiles-732425.c.cdn77.org/static/js/vendor/modernizr-2.8.3.min.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bookforest.biz^* ||overturnedvva1v963.top^* ||10x0.errorcode0x000000cedriverunloaded.withoutcancelingpendingoperations.criticalerrordonotrestartorshutdowthecomputer.calltechnicalhelpdeskforimmediatesupport.errorcode0x000000cedriverunloaded.errorcode0x000000cedriverunloaded.domainbulkoptions.xyz^* !||tracks1377.biz/installme.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tracks1377.biz^* ||prochina.link^* ||1pko5v.rg.ro^* ||computerprotection21.com^* !||364642.computerprotection21.com^* ||*.computerprotection21.com^* !||go.quali-bid.com:17777/click.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||go.quali-bid.com^* !||direct.tekblue.net/u/cepgahefiemebepgmgbgjfad.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||direct.tekblue.net^* !||scredir3.com/dr2?srn=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||scredir3.com^* ||dr8pk6ovub897.cloudfront.net/c.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d1a32x6bfz4b86.cloudfront.net/jsapi/v1/retreaver.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||data.branchroughlend.info^* ||s01-mezzobit.s3.amazonaws.com/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||stats.mezzobit.com/tag-log?c=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stats.mezzobit.com^* ||www.sysonlinesecuritiespro.info^* !||209.222.12.19/c.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||209.222.12.19/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||64.15.72.104/click.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||64.15.72.104/click_second_new3.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||64.15.72.104/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||domainbulkoptions.xyz/redir.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||domainbulkoptions.xyz^* ||install.stream-it.online^* ||seen-on-screen.thewhizmarketing.com^* !||geekonline.bid/system.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||geekonline.bid^* !||pixel.stream-it.online/pixel.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pixel.stream-it.online^* ||www.whizstats.com/scripts/oid.v3.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.whizstats.com/statistics/oid/wgimage.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.whizstats.com/statistics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||xml.adventurefeeds.com/click?adv=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xml.adventurefeeds.com^* !||d36wtdrdo22bqa.cloudfront.net/mngr/55317d1a2710f55d37eb1be9.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||d36wtdrdo22bqa.cloudfront.net/mngr/module-uaparser.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||d36wtdrdo22bqa.cloudfront.net/mngr/mtm.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d36wtdrdo22bqa.cloudfront.net^* ||d3ewvey62tvite.cloudfront.net^* ||d3vfi478lf07xt.cloudfront.net^* ||d1rnw04e6mc22h.cloudfront.net^* ||dfj8a675g5oe3.cloudfront.net^* ||www.clustrmaps.com/widget_call_home.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||revenuehits.com/publishers/media/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||idsync.rlcdn.com/387496.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||idsync.rlcdn.com^* !||c.conversionlogic.net/sync/lirc/v1.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c.conversionlogic.net^* ||11165678-016282590.id2.channeltraffic.net^* ||c.adclickthru.net^* !||js.jdmdacbinariesdl.com/dlManual.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||js.jdmdacbinariesdl.com^* !||www.metagreatsoftware.com/flv-player/adbr2/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.metagreatsoftware.com^* !||www.nubestvideoplayer.com/flv-player/adbr2/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.nubestvideoplayer.com^* ||277612.smotretonlinehd.info^* ||306320.935762.47494.773886.277612.smotretonlinehd.info^* ||47494.773886.277612.smotretonlinehd.info^* ||773886.277612.smotretonlinehd.info^* ||935762.47494.773886.277612.smotretonlinehd.info^* ||*.smotretonlinehd.info^* www.solidfiles.com##div.bnr-1459916958.lead:remove() !u3d.at.ua##div#mainadsdva3GYk9:remove() u3d.at.ua##div[id^="mainadsdva"]:remove() !u3d.at.ua##div#_u_ablock_toplink:remove() !u3d.at.ua##div#_u_ablock_bottomlink:remove() u3d.at.ua##div[id^="_u_ablock_"]:remove() !||pkc.akdapi.com/click.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pkc.akdapi.com^* !||media.install.wtf/advertisement/advertisement.js/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||media.install.wtf/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||aa.install.wtf/advertisement/advertisement.js/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||aa.install.wtf/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||clickadscounter.com^* !||ss.install.wtf/advertisement/advertisement.js/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ss.install.wtf/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.trafficstars.com^* ||rotator.trafficstars.com^* ||pxl.trafficstars.com^* ||trafficstars.com/product/xhamster-ads?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||us-st.xhamster.com/js/hRotator.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xhamster.com/stats/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xhamster.com/stats2/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||b12.xhamster.com^* !||b11.xhamster.com/iframes2/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||b11.xhamster.com^* !||cnt.xhamster.com/cnt.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cnt.xhamster.com^* !||cnt1.xhamster.com/cnt.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cnt1.xhamster.com^* ||collector.xhamster.com^* ||xhamster.com/en/advert/widget/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static-ah.xhcdn.com/xh-desktop/css/v0efe3d222a.page-hidden.css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static-ah.xhcdn.com/xh-desktop/css/*.page-hidden.css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! TODO: Using the following two rules to block the age verification stylesheet and script do not actually bypass the age verification. !||static-ah.xhcdn.com/xh-desktop/css/vc1ea96b355.age-verification.css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static-ah.xhcdn.com/xh-desktop/css/*.age-verification.css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static-ah.xhcdn.com/xh-desktop/js/v78ff457bc5.age-verification.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static-ah.xhcdn.com/xh-desktop/js/*.age-verification.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css xhamster.com##+js(aeld, blur) xhamster.com##div[id="plAds"]:remove() xhamster.com##.avdo:remove() xhamster.com###playerSwf > div:remove() xhamster.com##body[class="xh-scroll-disabled"]:remove-class(xh-scroll-disabled) xhamster.com##+js(remove-class, xh-scroll-disabled, body) xhamster.com##div[class^="cookiesAnnounce-"]:remove() ! TODO: The following rule removes the age verification dialog, but it does not actually get past the age verification requirement to load the content of the page. xhamster.com##div[class*="dialog-desktop-container__content"]:has(div[class*="field-container--biometricConsent"]):upward(1):remove() ! TODO: None of the following five rules actually remove the age verification requirement. xhamster.com##+js(trusted-replace-node-text, script, /"isAgeVerificationRequired":\s?true/gm, "isAgeVerificationRequired": false) xhamster.com##+js(trusted-replace-node-text, script, /"isAgeVerified":\s?false/gm, "isAgeVerified": true) xhamster.com##+js(trusted-replace-node-text, script, /"ageVerificationNeeded":\s?true/gm, "ageVerificationNeeded": false) xhamster.com##+js(trusted-replace-node-text, script, /"showCookiesDialog":\s?true/gm, "showCookiesDialog": false) xhamster.com##+js(trusted-replace-node-text, script, /"hideCookieAnnounce":\s?false/gm, "hideCookieAnnounce": true) xhamster.com##+js(trusted-replace-node-text, script, /"isMomentsAdsEnabled":\s?true/gm, "isMomentsAdsEnabled": false) ||us-st.xhcdn.com/images/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||core.adprotected.com^* ||aa2.install.wtf/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ox-d.zergnet.servedbyopenx.com^* ||ht.xtube.com^* ccm.net##div#divVideoStepAdBottom:remove() sanet.me##div.advertising_item_news_full:remove() ||sanet.me/a2n/gB.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.smart-torrent.com##div.analytics_container:remove() www.smart-torrent.com##div.ads_rem:remove() ||www.ferrolad.com/cpvlab/base.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.mije.net##div#oio-banner-2:remove() www.mije.net##div.save-time:remove() ||www.mije.net/js/fuckadblock.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.ferrolad.com/oiopub/js.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ox-d.realvu.com^* !||terraclicks.com/pfw.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||terraclicks.com^* ||fabolele.com:8101/api/v1/noadb?adslotid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||network.advertise.com^* ||adserver.cgchannel.com^* ||www.onclicktop.com/script/java.php?option=rotateur$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.brightadnetwork.com/a/display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.brightadnetwork.com/pix.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||interyield.td553.com/InterYield/exit.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||interyield.td553.com/InterYield/coverage.do$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||interyield.td553.com/intent/get?callback=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||interyield.td553.com/InterYield/clickbinder.do$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||interyield.td553.com^* ||mobroute.com/plugin/1504000$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.torrentgamesps2.net##div#show_plugin:remove() ||adswarez.com^* ||minhaspromocoes.com^* ||openadserving.com^* ||ptrnscr.su/jE8j3L/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.mobygames.com##div.lifesupport-header:remove() small-games.info##div#brand:remove() small-games.info##div#TextAd:remove() small-games.info##div#TextAdContainer:remove() small-games.info##div.top-ban:remove() ||free.smarterpassword.com^* ||filter.vashoot.com^* ||www.downloadsdownloadsend.com^* !||mbuj.com/tracking202/redirect/rtr.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mbuj.com/tracking202/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||downwithloadsoftquicknow.com^* ||software-ez.net^* ||8kbk5hgkfo.downwithloadsoftquicknow.com^* !||a.komoona.com/tag/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.komoona.com^* ||guidekey.work^* ||www.sadeempc.com/entropybanner/1.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad2.adsafiliados.com.br^* !||adsoid.com/javascripts/iframe.tracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adsoid.com/javascripts/javascripts.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adsoid.com/javascripts/jquery.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adsoid.com^* ||www3.mylot.com/cya.ashx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||asmassets.mtvnservices.com/asmstor/asm/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||patrolled70platinize.top^* ||scch-router-25.tech^* !||contentreclog-a.akamaihd.net/s.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||contentreclog-a.akamaihd.net^* ||jisusaiche.com/js/dyn.beacon.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||optimized.by.tiller.co/img/trans.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pt21na.com/click?i=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pt21na.com/fclk?i=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pt21na.com^* !||searchsafer-a.akamaihd.net/ads/adblade5.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||searchsafer-a.akamaihd.net^* ||metrics1.citibank.com^* ||adsensecustomsearchads.com^* ||adobe-d.openx.net^* ||dominoad.adk2x.com^* ||uploadocean.com/js/countdown.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||loader.wisepops.com/default/index/get-loader$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||loader.wisepops.com^* ||ss.hexawebhosting.com/adcode.js/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||win-mac-error.org^* !||www.pornsitesxxx.in/popcash$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.pornsitesxxx.in^* !||rpc-php.trafficfactory.biz/click/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rpc-php.trafficfactory.biz^* ||media.trafficfactory.biz^* !||media.trafficfactory.biz//banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.xvideos.com##div#ads:remove() ||xmasscorp.net^* ||www.secureboom.net/lr.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.secureboom.net/pop.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||thankyouforadvertising.com/.adforge$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||thankyouforadvertising.com^* !||branchroughlend.info/path/ads/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||branchroughlend.info^* ||ads.cleveland.com^* ||oascentral.gda.com^* ||ads.masslive.com^* ||ads.mlive.com^* ||ads.nj.com^* ||ads.oregonlive.com^* ||ads.pennlive.com^* ||ads.syracuse.com^* ||syndication.traffichaus.com^* ||images2.adhits.net^* ||gers.seemindsay.ru^* ||sunblackg.rocks/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sub2.admitlead.ru^* !||rtb.adx1.com/log?action=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rtb.adx1.com^* !||static.adx1.com/t.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.adx1.com^* !||tg.adx1.com/static/js/viewability.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tg.adx1.com^* ||js.intercomcdn.com/intercom.76c2036b.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||resolverin.work^* ||filescdn.com/images/banner/dlads.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d2b560qq58menv.cloudfront.net^* ||rany.deadlings.ru^* ||sarsudexpert.ru^* ||news.softpedia.com/_img/_wlts.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pwrads.net/b/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pwrads.net/300x250.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pwrads.net^* kyojim.com##div.code-block.code-block-1:remove() kyojim.com##div.code-block.code-block-2:remove() ||www.moddb.com/media/block/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ncrypt.in/images/2.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||searchincognito.navigateto.net/go/vlmtrk/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||searchincognito.navigateto.net^* !||prjcq.com/click?i=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||prjcq.com/fclk?i=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||prjcq.com^* ||cdn.downloadmanager128.com^* ||intva12.integrateddebug.info^* ||52.201.167.177/bait$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ad.anetwork.ir/showad/c.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.anetwork.ir^* ||down.ctfile.com/ad_display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||down.ctfile.com/js/bd_stat.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||soft.ctfile.com/js/bd_stat.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.ctfile.com/js/bd_stat.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.ctfile.com/js/bd_stat.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||down.ctfile.com/reportSpeed.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||idm.bce.baidu.com/t/ping.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sourcenewsonline.com/redir.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.anetwork.ir/banner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.anetwork.ir/dynamicad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||aipi.anetwork.ir/p.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static-cdn.anetwork.ir/aw/aw.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tjs.sjs.sinajs.cn/open/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||xml.ad-maven.com/click2?i=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||xml.ad-maven.com/click?i=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xml.ad-maven.com^* !||beacons.brandads.net/cp-imp?cid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||beacons.brandads.net/duration$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||beacons.brandads.net/safety?error_code=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||beacons.brandads.net^* !||beacons.extremereach.io/csync?c=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||beacons.extremereach.io^* ||d2290ppie00mze.cloudfront.net/media/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||194.28.172.150/show_std.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||vip.xlingdi.com/cpv/ir.ashx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||vip.xlingdi.com/cpv/rv1.ashx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||vip.xlingdi.com/cpv/v2.ashx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||vip.xlingdi.com/cpv/vtck.ashx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vip.xlingdi.com/cpv/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||vip.xlingdi.com/js/cpv_fm_r.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vip.xlingdi.com/js/cpv_fm*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||vip.media8.cn/js/cpv_fm_guding.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vip.media8.cn/js/cpv_fm_*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||vip4.7huoguo.com/cpv/bi.ashx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||vip4.7huoguo.com/cpv/bv1.ashx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||vip4.7huoguo.com/cpv/v2.ashx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||vip4.7huoguo.com/cpv/vtck.ashx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vip4.7huoguo.com/cpv/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||r.uoyrsd.com/popuped.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||r.uoyrsd.com/view.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||downlaod.vstart.net^* !||hlok.qertewrt.com/smart_ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hlok.qertewrt.com^* ||s1.uploadshub.com/downloadfiles/download-button-blue.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ddfnmo6ev4fd.cloudfront.net/dynamic-banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||interyield.td563.com/InterYield/exit.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||interyield.td563.com/InterYield/exitbinder.do$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||interyield.td563.com/adentify/adentifybinder.do$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||interyield.td563.com/intent/get?callback=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||interyield.td563.com^* !||ads.adservernow.net/show.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.adservernow.net^* ||mobon.com/images/awsdqwsads$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||mobon.com/vendor/to.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||mobon.com/vendor/rd.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mobon.com/vendor/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vast.brandads.net^* !||gslbeacon.lijit.com/beacon?viewid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gslbeacon.lijit.com^* ||www.system-failure45.in^* !||www1.xmediaserve.com/lr.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www1.xmediaserve.com/pop.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www1.xmediaserve.com/apu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www1.xmediaserve.com^* ||amd-ssl.cdn.turner.com/cnn/big/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.majorgeeks.com###onscroll-ad-major-geeks-sky-right-sky:remove() www.experienceproject.com###adultpopup > .adultpopup-content:remove() www.experienceproject.com##body > .cover:nth-of-type(6):remove() www.experienceproject.com##body > .cover:nth-of-type(7):remove() www.experienceproject.com##body > .cover:nth-of-type(8):remove() ||teamvirtualprivateserver.com^* ||s1-adfly.com/show.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||uranupdates.com/installers/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||uranupdates.com^* u3d.at.ua##div#mainadsdv:remove() u3d.at.ua##div.uPreroll-holder:remove() ||c.morgdm.ru^* ||nativead.tech^* ||vortex-win.data.microsoft.com^* ||v10.vortex-win.data.microsoft.com^* ||settings-win.data.microsoft.com^* ||fun-music.work^* ||aclick.adhoc1.net^* ||js.adsrvr.org^* ||filescdn.com/clipboard.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cofe-super.top^* ||nn.cogniti.space^* ||cdn.video.abc.com/video_fep/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wfpscripts.webspectator.com/ws-ad.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||69.172.216.56/rjsi/n210adserv.com^* !||tms.usaa.com/main/prod/utag.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tms.usaa.com^* deviantart.com###gmi-GPage > .gruser_top_slot > .top_wrapper > .ad-blocking-makes-fella-confused deviantart.com###\38 75291631 > .gr-body > .gr > .c.pp > .adframe !||www.totalsourcetracker.com/JobTracker/CookieManager/Get.ashx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.totalsourcetracker.com/JobTracker/CookieManager/Set.ashx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.totalsourcetracker.com/JobTracker/CookieManager/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css pasted.co###captcha_box pasted.co###captcha_overlay ||cdn.onedmp.com/media/7/3/73716384363169_156.jpg$image ||instantprivacyalert.com^* big-games.info##div#midAds468x60:remove() ||speednetwork1.adk2x.com^* !||boom.easygetfreesoft4you.xyz/gfra.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||boom.easygetfreesoft4you.xyz/gkca.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||boom.easygetfreesoft4you.xyz^* !||detectca.easysol.net/detectca/images/mMY1Efx46jELY8VVfw0MI4bTcjdyF7/DetectCA.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||detectca.easysol.net/detectca/scripts/mMY1Efx46jELY8VVfw0MI4bTcjdyF7/detect.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||detectca.easysol.net^* ||www.brandsonlyshop.com//magmi/state/files/inet.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||da.usaa.com/id?callback=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||da.usaa.com^* ||s.usaa.com/javascript/uniccaoffersMainPage-min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||js.dmtry.com/channel.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bookviet4a.org/track.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||return.uk.uniregistry.com/return_js.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||return.uk.uniregistry.com^* ||cache.betweendigital.com/code/1x1.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cheap-r.com^* ||ictowaz.ru^* ||latest-403709.onpato.ru^* ||www.acint.net/aci.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.acint.net/mc/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||thursdayhotbargains.site^* ||xml.additionalmedia.com/click$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xml.userwave.com/click2$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||umekana.ru/retarget/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||dispenser-rtb.sape.ru/sections/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dispenser-rtb.sape.ru^* !||cdn-rtb.sape.ru/rtb-b/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn-rtb.sape.ru^* ||cache.betweendigital.com/code/async_rtb.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||scripts.rutracker.org.uk/rtb/worker.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||scripts.rutracker.org.uk/rtb/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ads.us.criteo.com/delivery/r/afr.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.us.criteo.com^* ||b.da.us.criteo.com/beacon$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||bidder.criteo.com/cdb?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bidder.criteo.com^* !||cas.criteo.com/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cas.criteo.com^* !||cas.us.criteo.com/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cas.us.criteo.com^* !||cas.ny.us.criteo.com/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cas.ny.us.criteo.com^* !||cat.ny.us.criteo.com/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cat.ny.us.criteo.com^* !||cat.va.us.criteo.com/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cat.va.us.criteo.com^* !||dis.criteo.com/dis/usersync.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dis.criteo.com^* !||dis.eu.criteo.com/dis/dis.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dis.eu.criteo.com^* !||dis.sv.us.criteo.com/dis/dis.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dis.sv.us.criteo.com^* !||er.criteo.com/setcem/empty.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||er.criteo.com^* !||rtax.criteo.com/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rtax.criteo.com^* ||dap.criteo.com^* ||dis.us.criteo.com^* !||gum.criteo.com/sync$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gum.criteo.com^* !||grid-bidder.criteo.com/openrtb_2_5/pbjs/auction/request?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||grid-bidder.criteo.com^* !||a248.e.akamai.net/appnexus.download.akamai.com/89298/adnexus-prod/v/s/39/trk.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css appnexus.download.akamai.com/*/adnexus-prod/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css twicsy.com##div.interstitial-wrapper:remove() twicsy.com##div#sub-frame-error:remove() ||wewa.cellafield.ru^* filescdn.com##div.pull-right:remove() ||ads.adventive.com^* ||ad.volter.ir^* ||clickonometrics.pl^* ||travisescadgerjeopardous968.xyz^* !news.softpedia.com###_wlts_lead > .adsbygoogle:remove() news.softpedia.com###_wlts_lead:remove() ||log.opentracker.net^* ||win-pcerror.com^* !||cdn.heapanalytics.com/js/heap-436442284.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.heapanalytics.com^* ||heapanalytics.com^* ||cdn.waframedia8.com/wmedia/tags/xbanner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||advertisingwouldbegreat.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||advertisingwouldbegreat.com^* ||onlinenews.website^* ||scch-router-ac-1.tech^* ||cdn.castplatform.com/scripts/1/adnl.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||apapi.dc121677.com/adportalwebservice/adu/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||apapi.dc121677.com/adportalwebservice/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||apapi.dc121677.com^* ||d.dc121677.com/js/pub.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d.dc121677.com/js/static.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d.dc121677.com^* !||cdn.adf.ly/static/js/view20.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css adf.ly###_bd adf.ly###fade ||adf.ly/1market.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adf.ly/fp.rev3.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adf.ly/puopen.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adf.ly/show.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.adf.ly/js/display.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.adf.ly/js/entry.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.adf.ly/js/entry_scriptV1.1.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.adf.ly/js/jquery.cookie.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.adf.ly/js/display.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.adf.ly/static/js/b64.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.adf.ly/static/js/amvn.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static.adf.ly/static/js/view40.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static.adf.ly/static/js/view62.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adblockdetect.xyz/googlead.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adblockdetect.xyz/popunder2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adblockdetect.xyz^* ||mxpopad.com^* ||5gyzz.rewardzone.ayayb.com^* !||5gyzz.rewardzone.ayayb.com/APP666CHFFSearchIncognitoUS.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.etfsrv.com^* !||advice.imho.net/check/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||advice.imho.net^* ||api.rees46.com/profile/advmaker_check$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.plus1.wapstart.ru/v1/cm/sync.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bodaybo.net^* !||brokeloy.com/j/w.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||brokeloy.com^* ||free-torrents.org/forum/advert.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||dsp-eu.exe.bid/mixtraff?site_id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||dsp-eu.exe.bid/traforet?callback=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dsp-eu.exe.bid^* ||dsp.dskrt.net/advmaker^* !||click.alibaba.com/rd/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||click.alibaba.com^* !||enter.rubet.com/system/check.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||enter.rubet.com^* ||icounter.net/getcode.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||kitbit.net/h.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||kitbit.net/kb.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||kitbit.net/s.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pixel-conv.ru/conv/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pixel-conv.ru^* !||qwe.qrrgv.space/vv/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||qwe.qrrgv.space^* ||rpl2.tapochek.net^* !||rtb.kadam.ru/register_ad_view$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rtb.kadam.ru^* !||s.dskrt.net/take?your_id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.dskrt.net^* !||stats.ssl-services.com/counter.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stats.ssl-services.com^* !||track.effitarget.com/cookie/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||track.effitarget.com^* !||ssp.adriver.ru/cgi-bin/dmp2.cgi$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ssp.adriver.ru/cgi-bin/sync.cgi$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ssp.adriver.ru^* ||stats.weborama.io^* !||track.recreativ.ru/mtch.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||track.recreativ.ru^* ||tracker.rareru.ru^* ||www.brightonclick.com/a/display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.brightonclick.com/pix.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.brightonclick.com/script/packcpm.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.tredman.com/bnrs/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tredman.com/j/s.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tredman.com/j/w.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tredman.com/c/s.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||f0uu.popperfectredirect.com^* !||mtrcss.com/c/c1.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||mtrcss.com/g/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mtrcss.com^* ||utarget.ru/jsclck/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hdmr.sddan.com^* !||tag.digitaltarget.ru/adcm.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tag.digitaltarget.ru/processor.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tag.digitaltarget.ru^* !||zones.foreign.marketgid.com/hit.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||zones.foreign.marketgid.com^* !||foreign.marketgid.com/hit.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||foreign.marketgid.com^* ||ad-gb.marketgid.com^* !||cm.marketgid.com/i.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cm.marketgid.com^* ||ag-gb.marketgid.com^* ||aj-gb.marketgid.com^* ||ak-gb.marketgid.com^* !||c.marketgid.com/c?pv=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c.marketgid.com^* !||jsc.marketgid.com/f/r/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||jsc.marketgid.com/t/r/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||jsc.marketgid.com^* usercloud.com##div.st-container:remove() ||logic.perfecttds.net/check/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||p.tpm.pw/sync?ssp=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||p.tpm.pw^* ||profile-eu.exe.bid/sandbox/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||sync-eu.exe.bid/google/sync$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||sync-eu.exe.bid/image?source=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sync-eu.exe.bid^* ||s01.riotpixels.com/static/cdn_check_com.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s01.riotpixels.net/static/cdn_check_net.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||riotpixels.com/rpc.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||riotpixels.net/i/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||en.riotpixels.com/ssi/ppdn.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||en.riotpixels.com/static/js/externals/angular/angucomplete-alt.css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||en.riotpixels.com/static/js/rpc-compressed.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||vogo.vogo-vogo.ru/goto/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||vogo.vogo-vogo.ru/goto/link/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vogo.vogo-vogo.ru^* !||lp.searchandstreamtv.com/lp3a/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lp.searchandstreamtv.com^* !||asset.easydmp.net/dn.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||asset.easydmp.net/etag.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||asset.easydmp.net/js/dn.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||asset.easydmp.net/js/dn_iframe.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||asset.easydmp.net/script_graphinium.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||asset.easydmp.net^* ||cnet.stream1.fyre.co/v3.1/collection/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||msrv.su/jb/6/rs-sob-3kfc/dj.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||place1011.nighter.club/js/putme.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||place1011.nighter.club^* !||factiousinappeasableprincess.com/path/ads/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||factiousinappeasableprincess.com/path/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||factiousinappeasableprincess.com^* ||data.factiousinappeasableprincess.com^* !||clip2net.com/clip/m135757/5fb89-clip-25kb.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||clip2net.com/clip/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||quickprivacycheck.com/siv9/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||quickprivacycheck.com^* !||www.seedr.cc/analytics/piwik.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.seedr.cc/analytics/piwik.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.seedr.cc/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d2zah9y47r7bi2.cloudfront.net/releases/current/tracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||secure-dcr.imrworldwide.com/cgi-bin/gn^* !||secure-us.imrworldwide.com/cgi-bin/m^* !||secure-us.imrworldwide.com^* !||secure-sg.imrworldwide.com^* !||secure-uk.imrworldwide.com/cgi-bin/m^* !||secure-uk.imrworldwide.com^* !||secure-it.imrworldwide.com/cgi-bin/m^* !||secure-it.imrworldwide.com/v60.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||secure-it.imrworldwide.com^* !||secure-gl.imrworldwide.com/cgi-bin/m^* !||secure-gl.imrworldwide.com^* ||secure-*.imrworldwide.com^* !||d.uuidksinc.net/match/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d.uuidksinc.net^* !||uuidksinc.net/match.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||uuidksinc.net/soc.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||uuidksinc.net/uniqsinc.min.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||uuidksinc.net/unique2$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||uuidksinc.net^* !||vogorana.ru/c2e0bc2d80574792e7744a7a5feb858c.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||vogorana.ru/kadam.base.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vogorana.ru^* !||vogozae.ru/ef1ec06a56a610aead76d4aebe55b029.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vogozae.ru^* !||vogozaw.ru/41c08dd72b9a11e52d4d21d8c92f642c.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vogozaw.ru^* ||b.am15.net^* !||w100.am15.net/ssp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||w1020.am15.net/ssp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||w1030.am15.net/ssp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||w1050.am15.net/ssp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||w1060.am15.net/ssp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||w1090.am15.net/ssp/dsp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||w1100.am15.net/ssp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||w130.am15.net/ssp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||w140.am15.net/ssp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||w150.am15.net/ssp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||w160.am15.net/ssp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||w180.am15.net/ssp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||w190.am15.net/ssp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||w200.am15.net/ssp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||w220.am15.net/ssp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||w240.am15.net/ssp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||w14.am15.net/bn2.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||w30.am15.net/ssp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||w39.am15.net/ssp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||w44.am15.net/ssp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||w46.am15.net/bn2.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||w50.am15.net/ssp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||w60.am15.net/sb1.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||w60.am15.net/x/fpx.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||w60.am15.net^* !||w90.am15.net/ssp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||w*.am15.net/bn2.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||w*.am15.net/js/bn_workaround.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||w*.am15.net^* !||c.am15.net/exit-pop/exit-pop.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||c.am15.net/exit-pop/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||c.am15.net/delay-loader/delay-loader.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||c.am15.net/scroll/scroll-bn.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c.am15.net^* !||html5.am15.net/f3/f3ae285a62/600x200.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||html5.am15.net/js.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||html5.am15.net^* ||am15.net/x/mm.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||rtb.am15.net/aux/sync?advm_nid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rtb.am15.net^* !||tex.trafex.net/71d540a9-95aa-40b0-a144-4e0a122fd0af/check_bid^* !||tex.trafex.net/71d540a9-95aa-40b0-a144-4e0a122fd0af/pixel.jsonp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tex.trafex.net/check/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tex.trafex.net^* !||ultraimg.com/images/Banner_THXc6f82.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ultraimg.com/images/Banner_*.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||front.facetz.net/collect_pluso.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||front.facetz.net/crossd_pluso_iframe.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||front.facetz.net^* ||share.pluso.ru/pluso-like.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||p.crm4d.com/sync/weborama.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||p.crm4d.com/sync/weborama/match?uid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||p.crm4d.com^* !||ssp.tds.io/merge/advmaker$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ssp.tds.io^* ||turbotraff.com/m/frames/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||imasdk.googleapis.com/flash/core/3.236.0/adsapi.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||imasdk.googleapis.com/flash/core/adsapi_3_0_164.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||imasdk.googleapis.com/flash/sdkloader/adsapi_3.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||imasdk.googleapis.com/flash/*/adsapi*.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||imasdk.googleapis.com/js/sdkloader/vpaid_adapter.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ca.cbsi.com.cn/cgimp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dw.cbsi.com.cn/clear/c.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dw.cbsi.com.cn/clear/redx/c.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dw.cbsi.com/clear/c.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dw.cbsi.com/anonc.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dw.cbsi.com/levt/beacon/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dw.cbsi.com/levt/ria/e.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||dw.cbsi.com/levt/video/e.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dw.cbsi.com/levt/video/e.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css&event=adblock$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dw.cbsimg.net/js/cbsi/ds.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||taboola.com^$3p ||ads.taboola.com^* ||beacon.bidder.taboola.com^* ||display.bidder.taboola.com^* !||thehuffingtonpost.trc.taboola.com^* !||demandmedia.trc.taboola.com^* !||demandmedia.trc.taboola.com/cracked/log/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.trc.taboola.com^* !||trc.taboola.com/cpxinteractive-sc/log/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||trc.taboola.com^* !||trc-events.taboola.com/futureplc-windowscentral/log/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||trc-events.taboola.com/*/log/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||api.taboola.com/1.2/json/msn-adblocker-us/recommendations.notify-click$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.taboola.com/*/json/msn-adblocker-us/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||api.taboola.com/2.0/json/msn-msn-home/recommendations.notify-available$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||api.taboola.com/2.0/json/msn-msn-home/recommendations.notify-visible$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.taboola.com/*/json/msn-msn-home/recommendations.notify-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.taboola.com/libtrc/impl.250-RELEASE.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.taboola.com/libtrc/impl.5-95-109789-5-Release.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.taboola.com/libtrc/impl.211-61-RELEASE.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.taboola.com/libtrc/impl.*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.taboola.com/libtrc/impl.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.taboola.com/libtrc/cpxinteractive-sc/tfa.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.taboola.com/libtrc/cpxinteractive-sc/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.taboola.com/libtrc/cbsinteractive-cbsnews/loader.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.taboola.com/libtrc/cbsinteractive-cbsnews/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.taboola.com/libtrc/unip/*/tfa.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.taboola.com/libtrc/msn-sc/tfa.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.taboola.com/libtrc/msn-network/trk.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.taboola.com/libtrc/mirrorcreator/loader.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.taboola.com/libtrc/linkvertise-link-to/loader.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.taboola.com/libtrc/linkvertise-link-to/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.taboola.com/libtrc/alluremedia-kotakuau/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.taboola.com/libtrc/chatango-network/loader.js$script,domain=cdn.stream-24.net|klubsports.online !||cdn.taboola.com/libtrc/tegna-network1/loader.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.taboola.com/libtrc/tegna-network1/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c2.taboola.com/nr/cbsinteractive-cbsnews/newsroom.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sync.taboola.com/sg/adkernelrtb-network/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||widget.perfectmarket.com/opt/tboptevent.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||widget.perfectmarket.com^* !||dsp1.madnet.ru/traforet?callback=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dsp1.madnet.ru^* !||sync.madnet.ru/image?source=advmaker_rtb$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sync.madnet.ru^* ||vid.x-casino.net^* !||js-sec.indexww.com/ht/ls-cbsnews.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||js-sec.indexww.com^* ||oxredex.ru^* !||supply2.clickganic.com/static/moreCG.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||supply2.clickganic.com^* !||rtb.com.ru:8084/advmaker-sync$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rtb.com.ru^* !||rtbwin-sync.rutarget.ru/sync$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rtbwin-sync.rutarget.ru^* ||kinja.com/utils/matomo/matomo.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||kotaku.com/api/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||kotaku.com/assets/javascripts-min/lib/criteo.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||kotaku.com/assets/ad_iframe.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||kotaku.com/assets/ad_iframe-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||kotaku.com/stats/mark$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||kotaku.com/stats/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The following four rules will prevent videos from playing even thoug hthey are not advertisements. !||kotaku.com/x-kinja-static/assets/new-client/vendor~adEditor~$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||kotaku.com/x-kinja-static/assets/new-client/adEditor~$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||kotaku.com/x-kinja-static/assets/new-client/adManager$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !kotaku.com##div[class*="advertisement"]:remove() ||kotaku.com/x-kinja-static/assets/new-client/runtime~adManager.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||kotaku.com/x-kinja-static/assets/new-client/trackers.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||kotaku.com/x-kinja-static/assets/new-client/runtime~trackers.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||kotaku.com/x-kinja-static/assets/new-client/vendor~trackers.*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||kotaku.com/api/veritas/b?debug=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css kotaku.com##*[class*="cnx-ad-slot"]:remove() kotaku.com##button[class*="js_expandable-container-button"][data-vtas-click="self:ExpandContent:expandable-container-button"]:remove() !kotaku.com##div[class*=" rBsvk"]:style(max-height: 100% !important; overflow: auto !important;) kotaku.com##div[class*=" rBsvk"]:style(max-height: fit-content !important; overflow: auto !important;) ! The following two rules are not necessary if the rule above for class rBsvk is set. !kotaku.com##div[class*=" hGpdBg"]:style(padding-bottom: 0% !important;) !kotaku.com##img:style(position: relative !important;) kotaku.com##div[class*=" hmdKyt"]:style(background: none !important;) kotaku.com##div[class*="taboola-container"]:remove() kotaku.com##div[class*="js_sticky-top-ad"]:remove() kotaku.com##div[class*="js_desktop-horizontal-ad"]:remove() !kotaku.com##div[class*="js_ad-dynamic"]:remove() !kotaku.com##div[class*="js_ad-mobile-dynamic"]:remove() !kotaku.com##div[class*="js_ad-sticky-footer"]:remove() kotaku.com##div[class*="js_ad-"]:remove() !kotaku.com##div[class*="ad-mobile-dynamic"]:remove() kotaku.com##div[class*="ad-mobile"]:remove() kotaku.com##div[class*="ad-unit"]:remove() kotaku.com##div[class*="left-top-ad"]:remove() kotaku.com##div[data-ad-unit]:remove() kotaku.com##div[id^="dfp-ad-"]:remove() kotaku.com##div[id^="cnx-ad-slot-"]:remove() kotaku.com##div[id="commerce-inset-wrapper"]:remove() kotaku.com##div[id="taboola-below-article-thumbnails"]:remove() kotaku.com##div[id="leftrail_dynamic_ad_wrapper"]:remove() kotaku.com##iframe[id^="goog_"]:remove() kotaku.com##iframe[style="display: none;"][title="Advertisement"]:remove() kotaku.com##iframe[scrolling="no"][frameborder="0"][allowtransparency="true"][style="width: 1px; height: 1px; display: none; border: 0px; margin: 0px; padding: 0px;"]:remove() kotaku.com##amp-analytics:remove() kotaku.com##amp-iframe:remove() kotaku.com##amp-ad:remove() kotaku.com##.tp-modal:remove() kotaku.com##.tp-active.tp-backdrop:remove() kotaku.com##video:style(overflow: hidden !important; left: 0px !important; right: 0px !important; top: 0px !important; bottom: 0px !important; padding: 0 !important; margin: 0 !important; border: none !important; border-width: 0 !important; max-width: 100% !important; width: 100% !important; max-height: 100% !important; height: 100% !important; user-select: all !important; pointer-events: all !important;) kotaku.com##video[disableremoteplayback]:remove-attr(disableremoteplayback) kotaku.com##+js(remove-attr, disableremoteplayback, video[disableremoteplayback]) kotaku.com##video[disablepictureinpicture]:remove-attr(disablepictureinpicture) kotaku.com##+js(remove-attr, disablepictureinpicture, video[disablepictureinpicture]) kotaku.com##+js(trusted-set-attr, video, x-webkit-airplay, allow) kotaku.com##+js(trusted-set-attr, video, data-autoplay-mute-lock, false) kotaku.com##+js(trusted-set-attr, video, controls, true) kotaku.com##+js(trusted-set-attr, video, width, 100%) kotaku.com##+js(trusted-set-attr, video, height, 100%) kotaku.com##+js(trusted-set-attr, video, preload, metadata) !kotaku.com##+js(trusted-set-attr, video, preload, none) !kotaku.com##+js(trusted-set-attr, video, preload, auto) kotaku.com##+js(trusted-set-attr, video, crossorigin, anonymous) ! The following attributes are already set to these values by the web page. kotaku.com##+js(trusted-set-attr, video, playsinline, true) !kotaku.com##+js(trusted-set-attr, video, playsinline, playsinline) kotaku.com##+js(trusted-set-attr, video, webkit-playsinline, true) kotaku.com##span[data-css-selector^="ad-container"]:remove() kotaku.com##+js(trusted-replace-node-text, script, /"showSuperheroAd":\s?true/gm, "showSuperheroAd":false) kotaku.com##+js(trusted-replace-node-text, script, /"showLeaderboardAd":\s?true/gm, "showLeaderboardAd":false) kotaku.com##+js(trusted-replace-node-text, script, /"amazonInsetsEnabled":\s?true/gm, "amazonInsetsEnabled":false) kotaku.com##+js(trusted-replace-node-text, script, /"adsEnabled":\s?true/gm, "adsEnabled":false) kotaku.com##+js(trusted-replace-node-text, script, /"adNetworkId":\s?\d+/gm, "adNetworkId":0) kotaku.com##+js(trusted-replace-node-text, script, /"adSiteName":\s?"gm.kotaku"/gm, "adSiteName":"") kotaku.com##+js(trusted-replace-node-text, script, /"analyticstracking":\s?true/gm, "analyticstracking":false) kotaku.com##+js(trusted-replace-node-text, script, /"amazon_aps_tag":\s?true/gm, "amazon_aps_tag":false) kotaku.com##+js(trusted-replace-node-text, script, /"devtools":\s?false/gm, "devtools":true) kotaku.com##+js(trusted-replace-node-text, script, /"prebid":\s?true/gm, "prebid":false) kotaku.com##+js(trusted-replace-node-text, script, /"sourcepoint_ccpa":\s?true/gm, "sourcepoint_ccpa":false) kotaku.com##+js(trusted-replace-node-text, script, /"refresh_30_seconds":\s?true/gm, "refresh_30_seconds":false) kotaku.com##+js(trusted-replace-node-text, script, /"disable_readmore_in_discussions":\s?false/gm, "disable_readmore_in_discussions":true) kotaku.com##+js(trusted-replace-node-text, script, /"featured_ads_four":\s?true/gm, "featured_ads_four":false) kotaku.com##+js(trusted-replace-node-text, script, /"featured_ads_two":\s?true/gm, "featured_ads_two":false) kotaku.com##+js(trusted-replace-node-text, script, /"no_ads":\s?false/gm, "no_ads":true) kotaku.com##+js(trusted-replace-node-text, script, /"ad_script_in_head":\s?true/gm, "ad_script_in_head":false) kotaku.com##+js(trusted-replace-node-text, script, /"ad_lightning_tag":\s?true/gm, "ad_lightning_tag":false) kotaku.com##+js(trusted-replace-node-text, script, /"trackonomics_amp":\s?true/gm, "trackonomics_amp":false) kotaku.com##+js(trusted-replace-node-text, script, /"welcome_ad_analytics":\s?true/gm, "welcome_ad_analytics":false) kotaku.com##+js(trusted-replace-node-text, script, /"prebid_analytics":\s?true/gm, "prebid_analytics":false) kotaku.com##+js(trusted-replace-node-text, script, /"sidebar_ad_whitespace":\s?true/gm, "sidebar_ad_whitespace":false) kotaku.com##+js(trusted-replace-node-text, script, /"adsTxtEnabled":\s?true/gm, "adsTxtEnabled":false) kotaku.com##+js(trusted-replace-node-text, script, /"disableAds":\s?false/gm, "disableAds":true) kotaku.com##+js(trusted-replace-node-text, script, /"enable_gtm":\s?true/gm, "enable_gtm":false) kotaku.com##+js(trusted-replace-node-text, script, /"enable_gtag":\s?true/gm, "enable_gtag":false) kotaku.com##+js(trusted-replace-node-text, script, /"newsletter_exit_intent_ad":\s?true/gm, "newsletter_exit_intent_ad":false) kotaku.com##+js(trusted-replace-node-text, script, /"google_tagmanager":\s?true/gm, "google_tagmanager":false) kotaku.com##+js(trusted-replace-node-text, script, /"theroot_black_history_month":\s?true/gm, "theroot_black_history_month":false) kotaku.com##+js(trusted-replace-node-text, script, /"theroot_black_history_month_homepage":\s?true/gm, "theroot_black_history_month_homepage":true) kotaku.com##+js(trusted-replace-node-text, script, /"ad_refresh_enabled":\s?true/gm, "ad_refresh_enabled":false) kotaku.com##+js(trusted-replace-node-text, script, /"amp_sticky_ad":\s?true/gm, "amp_sticky_ad":false) kotaku.com##+js(trusted-replace-node-text, script, /"homepage_sticky_ads_4s":\s?true/gm, "homepage_sticky_ads_4s":false) kotaku.com##+js(trusted-replace-node-text, script, /"prebid_ias_enable":\s?true/gm, "prebid_ias_enable":false) kotaku.com##+js(trusted-replace-node-text, script, /"sticky_right1_ad":\s?true/gm, "sticky_right1_ad":false) kotaku.com##+js(trusted-replace-node-text, script, /"veritas_tracker":\s?true/gm, "veritas_tracker":false) kotaku.com##+js(trusted-replace-node-text, script, /"refresh_ads_in_view":\s?true/gm, "refresh_ads_in_view":false) kotaku.com##+js(trusted-replace-node-text, script, /"amazon_related_link":\s?true/gm, "amazon_related_link":false) kotaku.com##+js(trusted-replace-node-text, script, /"amp_enable_t13":\s?true/gm, "amp_enable_t13":false) kotaku.com##+js(trusted-replace-node-text, script, /"custom_ad_sizes":\s?true/gm, "custom_ad_sizes":false) kotaku.com##+js(trusted-replace-node-text, script, /"editor_content_analytics":\s?true/gm, "editor_content_analytics":false) kotaku.com##+js(trusted-replace-node-text, script, /"pride_month_color_schema":\s?true/gm, "pride_month_color_schema":false) kotaku.com##+js(trusted-replace-node-text, script, /"smartnews_ads":\s?true/gm, "smartnews_ads":true) kotaku.com##+js(trusted-replace-node-text, script, /"specialsection_remove_top_ad":\s?false/gm, "specialsection_remove_top_ad":true) kotaku.com##+js(trusted-replace-node-text, script, /"infinite_scroll":\s?true/gm, "infinite_scroll":false) kotaku.com##+js(trusted-replace-node-text, script, /"truncate_permalink_content":\s?true/gm, "truncate_permalink_content":false) kotaku.com##+js(trusted-replace-node-text, script, /"truncate_sidebar":\s?true/gm, "truncate_sidebar":false) kotaku.com##+js(trusted-replace-node-text, script, /"taboola_enabled":\s?true/gm, "taboola_enabled":false) kotaku.com##+js(trusted-replace-node-text, script, /"more_below_post":\s?true/gm, "more_below_post":false) kotaku.com##+js(trusted-replace-node-text, script, /"commentsDisabled":\s?true/gm, "commentsDisabled":false) ! TODO: Enabling the following rules doesn't appear to do anything meaningful. !kotaku.com##+js(trusted-replace-node-text, script, /"superuser":\s?false/gm, "superuser":true) !kotaku.com##+js(trusted-replace-node-text, script, /"postIsStarter":\s?true/gm, "postIsStarter":false) !kotaku.com##+js(trusted-replace-node-text, script, /"useSecondScroll":\s?true/gm, "useSecondScroll":false) www.kotaku.com.au^script:has-text(window.adTech):remove() www.kotaku.com.au##+js(remove-node-text, script, /window\.adTech/gm) www.kotaku.com.au##.ad:remove() www.kotaku.com.au###div-gpt-ad-mrec:remove() www.kotaku.com.au##div[class*="wp-block-create-block-pedestrian-gam-ad-block"]:remove() www.kotaku.com.au##div[id^="ad_slot_"]:remove() www.kotaku.com.au##div[id^="ad-slot_"]:remove() www.kotaku.com.au##div[class*="ad-slot-wrapper"]:remove() www.kotaku.com.au##script[id^="ped-brightcove-script-js"]:remove() www.kotaku.com.au##script[id="kotak-tracking"]:remove() www.kotaku.com.au##script[id^="advanced-ads-pro"]:remove() www.kotaku.com.au##script[id^="advadsTrackingScript-js"]:remove() www.kotaku.com.au##*[data-ads-displayed]:remove-attr(data-ads-displayed) www.kotaku.com.au##+js(remove-attr, data-ads-displayed) www.kotaku.com.au##+js(set-constant, pedBrightcove, {}) www.kotaku.com.au##+js(set-constant, advadsCfpInfo, {}) www.kotaku.com.au##+js(set-constant, advads_tracking_ads, {}) www.kotaku.com.au##+js(set-constant, advads_tracking_urls, {}) www.kotaku.com.au##+js(set-constant, advads_tracking_methods, {}) www.kotaku.com.au##+js(set-constant, advads_tracking_parallel, {}) www.kotaku.com.au##+js(set-constant, advads_tracking_linkbases, {}) www.kotaku.com.au##+js(acs, advads_tracking_, advadsCfpInfo) ||www.kotaku.com.au/content/mu-plugins/ad-tech/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.bing.com/widget/*/trending.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.bing.com/msnhomepagehistory.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.bing.com/fd/ls/GLinkPing.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.bing.com/rewardsapp/reportactivity$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.bing.com/fd/sa/*/log/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.bing.com/widget/metrics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bat.bing.com/action/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bat.bing.com/actionp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bat.bing.com/bat.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bat.r.msn.com/action-uic/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gf.wagenwerkz.com^* rustorka.com###eb33e92477 > table:remove() chiappsesmobsmbapp.com###exitpopup:remove() chiappsesmobsmbapp.com###exitpopup_bg:remove() ||get.orizontalam.space^* ||itorrents.org/images/download.png$image ||1730645610.rsc.cdn77.org^* ||webtechnicians.site^* !||tiads.health.com/ads/tgx.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tiads.health.com^* ||www.health.com/sites/all/themes/health_desktop/js/jquery.sticky-ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css multisharing.org##div#toolbar2:remove() !||st6.recreativ.ru/tizers/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||st6.recreativ.ru^* !||clk.recreativ.ru/go.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||clk.recreativ.ru^* !||recreativ.ru/rcode.d95d21c065.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||recreativ.ru^* gfx-hub.com##div#bn_d95d21c065 ||dep.ipowercdn.com^* ||763082b5b559d7acd7db47dc.fileskious.ru^* ||get.hflight.space^* !||dep.jscloud.org/docs.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dep.jscloud.org^* ||storefilism.ru^* ||repeatsmiling.ru^* ||toe-dime.ru^* ||cdn.rutracker.org.uk/handler_static/swf/cndr.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ywolp672ywolp.xyz^* rutracker.org.uk##body > div:nth-of-type(6) > div:nth-of-type(1):remove() rutracker.org.uk##body > div:nth-of-type(6) > div:nth-of-type(2):remove() ||bbch-ac-router-100.com^* ||gripplug.ru^* ||fbmetrix.net/altdn-sbm-www/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||latest-405756.onpato.ru/protJS/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||latest-405756.onpato.ru^* ||psalti.ru^* ||scripts.rutracker.org.uk/ts.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.fullinthehouse.com^* ||as.digital-life.com.au^* ||cdn.rutracker.org.uk/protJS/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rutracker.org.uk/yqbiqtxd.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||scripts.rutracker.org.uk/pix.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||zoomspell.ru/d/*/rutracker.org.uk$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||staticcf0.ntvk1.ru/nvv.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||aptitude.12updatenew.download^* ||www.safeinstall.top^* !||adexc.net/networking/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adexc.net^* !||104.197.90.55/statistics/appid/wgimage.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||104.197.90.55/statistics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||104.197.90.55/scripts/appid.V2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||104.197.90.55/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lp.myvideodownloadtab.com^* !||js.sendfarmdownloads.com/dl.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||js.sendfarmdownloads.com^* ||d3h1xwy5tbbn3s.cloudfront.net/lps/FlashPlayer2_T/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||plym.z5x.net/dsnrmg/tags/xpopunder/xpopunder.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||plym.z5x.net^* ||checkupdate.onlineupgrade.xyz^* !||psma01.com/impression/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||psma01.com/iframeC/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||psma01.com/js/sys.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||psma01.com^* !||www.newsoft4you.xyz/cupa?opa=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.newsoft4you.xyz^* ||lockscalecompare.com/path/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.c0594.com^* !||aa-gb.traffic-media.co/u56922710/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||aa-gb.traffic-media.co^* ||ads.intentiq.com^* ||adserve-nj.1rx.io^* ||bdimg.share.baidu.com/static/js/logger.js?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||papi.mynativeplatform.com/pub2/error/log.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||papi.mynativeplatform.com/pub2/impressionpixel.json$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||papi.mynativeplatform.com/pub2/report.json$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.traineeprograms.com/en/tp_gadgets_right_column/abandonia$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.abandonia.com###container > .right_outside_ads:remove() !||deviantart-d.openx.net/w/1.0/acj?cc=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||deviantart-d.openx.net/w/1.0/jstag$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||deviantart-d.openx.net^* ||www.etahub.com/trackn?app_id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.imagefap.com/adserver.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.imagefap.com/jscripts/popup-window.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.imagefap.com/jscripts/show_ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.porngqh.online/jscripts/show_ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||aka-cdn.adtechus.com/dt/common/DAC.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||aka-cdn.adtechus.com/dt/common/DACPubApiPlugin.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||aka-cdn.adtechus.com/dt/common/postscribe.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||aka-cdn.adtechus.com^* ||funn.graphiq.com/ajax_store_analytics$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sync.rhythmxchange.com/usersync2/sonobi$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pipeaota.com/300/*/asynch/null/123/null/true/*/Tag.a1b$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stec-site.xhcdn.com/id11/js/track.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! important directive is needed in the following rule to override @@||blogspot.com/b/stats$xhr,1p rule in the "uBlock filters – Unbreak" fileter list. ||*.blogspot.com/b/stats?style=$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||us.flipp.com/assets/distribution/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||us.flipp.com/dist_stage/distribution.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||us.flipp.com/prefetch/dist?p=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.da-ads.com/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.da-ads.com/google.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||t05.wildcdn.com/ast/b/invideo-exo.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||t05.wildcdn.com/ast/b/ntv-a-gamma-2.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||t05.wildcdn.com/ast/b/ntv-b-gamma-2.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||t05.wildcdn.com^* *###invideo_wrapper:remove() ||p10055.ic-live.com/hit.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||hearstmagazines-d.openx.net/w/1.0/acj?cc=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||hearstmagazines-d.openx.net/w/1.0/jstag?nc=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hearstmagazines-d.openx.net^* ||solidfilescdn.com/static/js/advertisement.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||solidfilescdn.com/static/js/viewer-vendor.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||events.bounceexchange.com/track.gif/eligible$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||events.bounceexchange.com/track.gif/pop?pop:activation=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||events.bounceexchange.com/track.gif/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||bounceexchange.com/tag/761/i.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bounceexchange.com/tag/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bounceexchange.com/bounce/iframeCampaign/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.bounceexchange.com/bounce/iframe_campaign/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||rojakpot.us.intellitxt.com/intellitxt/front.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||rojakpot.us.intellitxt.com/v4/load^* ||rojakpot.us.intellitxt.com^* !||cs.gssprt.jp/yie/ld/cs?dspid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cs.gssprt.jp/yie/ld/mcs?ver=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cs.gssprt.jp/yie/ld/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cs.gssprt.jp^* !||am.adlooxtracking.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||am.adlooxtracking.com^* ||www.performanceadexchange.com/a/display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.performanceadexchange.com/pix.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adx.torcache.net/adx.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adx.torcache.net/sc.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adx.torcache.net^* ||static5.gamespot.com/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||web.adblade.com/js/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||web.adblade.com^* !||y.cdn.adblade.com/impsc.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||y.cdn.adblade.com^* !||dmp.adblade.com/srv/sync/gateway?cid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dmp.adblade.com^* !||staticd.cdn.adblade.com/banners/images/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||staticd.cdn.adblade.com^* ||www.reg.ru/i/affiliate/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pan.baidu.com/api/analytics?_lsid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pan.baidu.com/api/analytics?type=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||yun.baidu.com/api/analytics?_lsid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.baidu.com/api/analytics$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pcs.baidu.com/rest/2.0/pcs/adx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||yun.baidu.com/feproxy/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||yun.baidu.com/ppres/static/js/util/ADPanLog.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s.ntv.io/serve/load.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.ntv.io/serve/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nexus.ensighten.com/hearst/mag/Bootstrap.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nexus.ensighten.com/hearst/mag/code/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ialaddin.genieesspv.jp/yie/ld/acs?ver=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ialaddin.genieesspv.jp/yie/ld/gl0?zid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ialaddin.genieesspv.jp/yie/ld/gl1?zid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ialaddin.genieesspv.jp/yie/ld/gl3?zid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ialaddin.genieesspv.jp/yie/ld/jsk?zoneid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ialaddin.genieesspv.jp^* !||js.genieessp.com/t/074/345/a1074345.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||js.genieessp.com^* !||rt.gsspat.jp/yie/ld/gcs?v=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rt.gsspat.jp^* ||s-jp.acxiomapac.com^* ||d29usylhdk1xyu.cloudfront.net/load/login.prevention.com$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||shipthankrecognizing.info/path/ads/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||shipthankrecognizing.info^* !||nativead.s3.amazonaws.com/creatives/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nativead.s3.amazonaws.com^* !||www.techarp.com/wp-content/plugins/adrotate/library/jquery.adrotate.clicktracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.techarp.com/wp-content/plugins/adrotate/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.solidfiles.com###content > .centered > .dl > .buttons > .btn-sm.btn-success.btn:remove() ||storage.googleapis.com/error-microsoft-de-critically-infected-computer-multipleinfect/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||done.witchcraftcash.com/afu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||done.witchcraftcash.com^* ||code.poptm.com^* !||push.poptm.com/i.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||push.poptm.com/watch?key=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||push.poptm.com^* ||zm1.november-lax.com^* !||zj1.november-lax.com/zcvisitor/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||zj1.november-lax.com^* ||secure.bidvertiser.com^* ||cdn.bidvertiser.com^* !||secure.bidverdrd.com/performance/bdv_rd.dbm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||secure.bidverdrd.com/performance/bdvclkv6_jsb.dbm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||secure.bidverdrd.com/performance/bdv_captcha.dbm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||secure.bidverdrd.com^* !||www.geniusdisplay.com/ts.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.geniusdisplay.com^* ||pixellitomedia.com^* ||jat01.reward4spin.info^* !||rtb-api.startmenubutton.com/showurl?url=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rtb-api.startmenubutton.com^* ||www.maxbounty.com/lnk.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.mb102.com/lnk.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d3ezl4ajpp2zy8.cloudfront.net/amped_tag.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||smartconsumerrewards.com/go/to/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||smartconsumerrewards.com/js/pop_window.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||likablescaldfelted.info/ads/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||likablescaldfelted.info^* !||proton56.in/win/windows/platform.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||proton56.in^* ||sites.mpstatic.com/fgl-assets/img/enhance/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xml.adservme.com^* !||cdn1.predictad.com/images/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn1.predictad.com^* !||sp.index.about.com/sh/ads/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sp.index.about.com/sh/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdndevx.com^* !||tracpx14.com/r.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tracpx14.com^* ||www.antiguacasadelabodega.com^* !||xml.olmeramarketing.com/click?i=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xml.olmeramarketing.com^* !||xml.primusad.com/click?i=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xml.primusad.com^* !||xml.vokut.com/click?i=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xml.vokut.com^* ||linkurystoragenorthus.blob.core.windows.net^* !||dailypromos.net/videostripe-ac/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dailypromos.net^* !||api-visitor-us-east.velaro.com/signalr/ping$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api-visitor-us-east.velaro.com^* ||bridge.sf.admarketplace.net^* savefrom.net##div.install-now:remove() savefrom.net##div.ox7.loaded:remove() savefrom.net##div.ox7-title:remove() savefrom.net##div.ox7-content:remove() savefrom.net##div#ox-banner-id:remove() savefrom.net##div#ox7:remove() ||78.138.126.253/www/a9g/1afr.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||search.moccini.com^* !||search.moccini.com/js/insights.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s11.histats.com^* !||s4i.histats.com^* !||s10.histats.com^* ||s*.histats.com^* !||sstatic1.histats.com/0.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sstatic1.histats.com^* ||www.shefinds.com/wp-content/themes/shefinds_14/img/ad-unit.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.shefinds.com##div[id^="div-gpt-ad-"]:remove() www.shefinds.com##div.sf-aside.ad-160-600:remove() www.shefinds.com##div.collections-sf-aside.sf-aside.ad-300-250:remove() ||www.filetolink.com/d/Before-you-continue-LB-728x90.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||advicecancer.com^* !||habbonados.com.br/enc/z$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||habbonados.com.br^* !||softologicb.com/download2/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||softologicb.com/track.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||softologicb.com^* ||paulsbetterbargains.xyz^* ||parkingcrew.net/assets/scripts/js3.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||versionwin.work^* ||www.up.media1fire.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||download-pic.com/downbtn/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pl139719.puhtml.com/c4/4b/11/c44b11c18c8dceca6b992fb1ee61c81e.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pl140821.puhtml.com/e4/e8/f2/e4e8f2d9ac69beab24919043cdf7d511.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pl108258.puhtml.com/2d/0b/5c/2d0b5c963e5a84eb3571562ec47be60b.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pl165676.puhtml.com/25/dd/8f/25dd8f61d296dce6d4ed8e13f1480e4d.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||p*.puhtml.com/*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pl139719.puhtml.com^* ||pl140821.puhtml.com^* ||pl108258.puhtml.com^* ||pl115781.puhtml.com^* ||pl143167.puhtml.com^* ||pl165676.puhtml.com^* ||western-route.com^* ||katie.dntrx.com^* ||beta-feed.domainapps.com/cuout.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||beta-feed.domainapps.com/cuout2.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||anycast.popads.net/checkInventory.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||anycast.popads.net^* !||static.popads.net/pop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.popads.net^* !||analytics.safelinking.net/piwik/piwik.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||analytics.safelinking.net^* ||163.172.29.124/pop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.komoona.com/scripts/kmn_sa.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||geo.widdit.com/service/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||geo.widdit.com^* ||static.widdit.com/js/website/widdit.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.adperformr.com^* !||musicloader.fr/arplit/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||musicloader.fr^* www.looper.com###content > .sharethrough-container:nth-of-type(1) > .str-card-exp soundcloud.com###app > .m-visible.g-z-index-header.playControls > .playControls__inner > .l-fullwidth.l-container.playControls__wrapper > .playControls__panel > .is-active.is-visible.sc-background-darkgrey.sc-font-body.playControlsPanel > .playControlsPanel__inner > .playControlsPanel__adDisplay !www.mcvuk.com###ouibounce-modal > .modal:remove() !www.mcvuk.com###ouibounce-modal > .underlay:remove() www.mcvuk.com##div#ouibounce-modal:remove() www.dosgamers.com###content > .directx-9-windows-10-windows-8.page-130 > div > .adsright300.adsgoogle:remove() ||microsoft.com-----up.date^* !||stats.radiors.pl/stats_r7_global.txt$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stats.radiors.pl^* ||thursdaynewbargains.win^* ||stephanie.dntrx.com^* ||www.advanpromo.com/ads$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||px.large-format.net^* !||px.large-format.net/popunder.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||1396447067.rsc.cdn77.org^* scene-p2p.com###dle-content > .mainblock > .center > .quote:remove() ||safelinking.net/cdn/*/randim.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css safelinking.net###ad728container:remove() safelinking.net###ad300container:remove() ||cityadspix.com^* !||cityadspix.com/click-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dfh.abb.tagmetanext.com^* ||360redirect.org/360adsdl$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ox-d.futurenet.servedbyopenx.com^* ||sporthero.thewhizmarketing.com^* ||lpstatic.thewhizmarketing.com/scripts/lpask.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cache.betweendigital.com/code/showad_full_sync.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rdsa2013.com^* !||rdsa2013.com/static/lprdr.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.blkget.com/*&clickid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.blkget.com^* !||ddnk.advertur.ru/v1/code.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ddnk.advertur.ru/v1/s/loader.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ddnk.advertur.ru^* ||www.360ads.online^* ||www.360adshost.net/impression.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ddpnt.advertur.ru^* www.komando.com##.interstitial-wrapper ||ads.altitude-arena.com^* ||www.tradeadexchange.com/rtb/worker.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads2.videe.tv^* ||ads3.videe.tv^* ||event-log.videe.tv^* ||scoring-log.videe.tv^* !||vast-log.videe.tv/campaign/error?waterfall_position=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vast-log.videe.tv^* !||thesame.tv/embed/api/stat/ad?adid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||thesame.tv/embed/api/stat/inventory?token=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||thesame.tv/embed/api/stat/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tags.rllcll.com^* ||cp.abbp1.space^* ||cdn11.acceptableads.pw^* !||ss.phncdn.com/iframe-1.1.1.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn1a.static.pornhub.phncdn.com/www-static/js/ph-tracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn1b.static.pornhub.phncdn.com/www-static/js/ph-tracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.static.pornhub.phncdn.com/www-static/js/ph-tracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ht.pornhub.com/js/ht.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ht.pornhub.com^* !||media.trafficjunky.net/js/holiday-promo.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||media.trafficjunky.net^* ||ads.trafficjunky.net^* ||slopeaota.com/*/asynch/null/123/null/true/*/Tag.a1b$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||uploads.to/fuckadblock.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css uploads.to##div.pjdvlmwydw1467997644615tl uploads.to##div.rcudi1467997909696anuzdvp uploads.to##div.jm1467998115108gasoxgftr uploads.to##div.fmampqgwv1467998212104xzy uploads.to##div.fxtle1467998312427ri uploads.to##div.container ||www.bet365.com/dl/~offer?affiliate=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||affilist-n-ban01.com/adImages/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||affilist-n-ban01.com^* ||uploads.to/tst/pop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adn.impactradius.com/display-ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adn.impactradius.com^* !||get-zillion.top/tiefile?q=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||get-zillion.top^* www.univers-down.com###vb17 ||www.millionaire-trader.trade/?aff_sub=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.trafficthat.com/plugins/jquery.xmc-optin-form.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.trafficthat.com/plugins/jquery.xmc-trading-results.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.trafficthat.com/plugins/xmc-track.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tfp.sapphirum.com^* ||hdmmix.pro^* ||analytics.zdbb.net^* up.media1fire.com##.contentag > .contentag2 > .contentor > .file_slot > tbody > tr:nth-of-type(2) > td:nth-of-type(2) > span > a[href^="http://confirmo.top/HLB"] !||confirmo.top/sodico?q=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||confirmo.top^* !||www.sadeempc.com/entropybanner/5.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.sadeempc.com/entropybanner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||i0.wp.com/extraimago.com/images/*/download-15.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||torrentdeep.com/static/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.emutor.com###s-article > .data_block > .advB ||www.mftracking.com^* !||cdn.mftracking.com/images/dl_banner.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.mftracking.com^* ||serv.clicksor.net^* !||mnet-ad.net/px.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mnet-ad.net^* !||iad1.ipromote.com/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||iad1.ipromote.com^* !||servedby.ipromote.com/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.gamer-network.net/plugins/dfp/evil-ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||r.adc-srv.net/retargeting.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||r.adc-srv.net^* ||www.googletagservices.com/dcm/dcmads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.googletagservices.com/dcm/impl_v*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||media.match.com^* !||media.match.com/cookE/geoip/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||media.match.com/te_re/te_re.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||media.match.com/xl/PROD/*/creatives.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||media.match.com/xl/PROD/TrackingTags/fetch.cp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.aimg.media.net/new/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.aimg.media.net^* !||ads.pro-market.net/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.pro-market.net^* !||g.bing.com/uac/request$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||g.bing.com/uac/response$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||g.bing.com/uac/*adclntid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||g.bing.com/uac/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn-zulu.r867qq.net/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||zulu.r867qq.net/smart_ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fa.2004seo.cn/engine/out.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||srv12.marsads.com/srv/click/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||srv12.marsads.com^* !||cdn.doubleverify.com/avs604.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.doubleverify.com/dvbs_src.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.doubleverify.com/dvtp_src.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.doubleverify.com/dvtp_src_internal35.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn3.doubleverify.com/bst2tv3.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn3.doubleverify.com^* !||cdn.doubleverify.com^* ||cdn*.doubleverify.com^* !||rtb0.doubleverify.com/verify.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rtb0.doubleverify.com^* !||tps10217.doubleverify.com/event.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tps10229.doubleverify.com/event.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tps30.doubleverify.com/visit.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tps.doubleverify.com^* !||tps10217.doubleverify.com^* !||tps10229.doubleverify.com^* !||tps30.doubleverify.com^* ||tps.doubleverify.com/visit.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! TODO: the "tps" in "https://" is matched by the following rule. ||tps*.doubleverify.com^* ||o.aolcdn.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||o.aolcdn.com/ads/adsWrapper.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||o.aolcdn.com/ads/adswrappermsni.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||o.aolcdn.com/omniunih.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||o.aolcdn.com/os/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||o.aolcdn.com/os/mapquest/Ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||o.aolcdn.com/os_merge/?file=/aol/beacon.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||o.aolcdn.com/os_merge/?file=/aol/omniture.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||accumulatorg.com^* !||accumulatorg.com/popunder.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ad.doubleclick.net/ddm/activity/dc_oe=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.doubleclick.net/ddm/activity/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.doubleclick.net/ddm/adj/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.doubleclick.net/ddm/clk/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.doubleclick.net/ddm/pfadx/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.doubleclick.net/ddm/trackimp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.doubleclick.net/ddm/trackimpj/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.doubleclick.net/ddm/ad/vsxhwufx/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.doubleclick.net/ddm/trackclk/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ad.doubleclick.net/ddm/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ade.googlesyndication.com/ddm/activity_ext/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ade.googlesyndication.com/ddm/activity/dc_oe=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ade.googlesyndication.com/ddm/activity/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.bigfile.to/script/ZeroClipboard.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.bigfile.to/script/jquery.popunder.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.ipromote.com/media/t/v05/01/adchoices/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.ipromote.com/media/t/v05/01/assets/template05_adfmt_5.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.ipromote.com/n/3562/advertiser/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.ipromote.com^* !||www.ad4mat.net:444/ads/js/ck_tracker.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.ad4mat.net:444/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.120sports.com/site-core/scripts/external/jquery.smartbanner.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||contextual.media.net/checksync.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||contextual.media.net/bidexchange.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||contextual.media.net/fcmdynet.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||contextual.media.net/dmedianet.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||contextual.media.net/dmpmedianet.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||contextual.media.net/amedianet.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||contextual.media.net/__media__/js/util/nrr.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||contextual.media.net/mediamain.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||contextual.media.net/nmedianet.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||contextual.media.net/px.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||contextual.media.net^* ||cdn.krxd.net/controltag^* !||ev.ib-ibi.com/ibiview.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ev.ib-ibi.com^* !||global.ib-ibi.com/pibiview.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||global.ib-ibi.com^* ||sp.adbrn.com^* ||oascentral.ghmedia.com^* !||ad2.adfarm1.adition.com^* !||adfarm1.adition.com^* !||dsp.adfarm1.adition.com^* ||adfarm1.adition.com^* ||computer-support-call-now.site^* ||s3.amazonaws.com/inject_ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||trebelow.com/adso/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||trebelow.com^* !||thaez4sh.com/e4/e8/f2/e4e8f2d9ac69beab24919043cdf7d511.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||thaez4sh.com^* ||www.isanalyze.com^* www.666so.com##.resource-page.container.sep > .col-a > .slide2 > .sep > div > a[href^="http://fa.zinyo.cn/reload"]:remove() !||www.networkworld.com/www/js/ads/gpt_includes.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.networkworld.com/www/js/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.networkworld.com###drr-container > .tease-promo:remove() ||ziifile.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.halal.ad/adserve$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||getetafun.info^* ||www.heidoc.net/amazon/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s3-us-west-2.amazonaws.com/amcdn/admvpopunder.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||lp.ad-maven.com/multi-registration/EN/index.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lp.ad-maven.com^* ||meson.ad-l.ink/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||postback.zeroredirect1.com/zppostback/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||postback.zeroredirect1.com^* ||stats.steep.tv^* !||stats.steep.tv/piwik.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||steep.tv^* !||tags1.eclkspsa.com/adServe/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tags1.eclkspsa.com^* ||www.maxonclick.com/a/display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.maxonclick.com/px.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xml.infinity-info.com^* ||download-en3.ceecap.org^* ||ads.proboards.com^* leray.proboards.com###top-ad-banner !||banner.inside3d.com/telefragged/defaultnopop.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||banner.inside3d.com^* ||twuk.sundaient.ru^* ||netbinring.info^* ||smik.officite.ru^* !||share.yandex.net/counter/gpp/?callback=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||share.yandex.net/counter/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||varkindt.top/di_kvar23/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||varkindt.top^* rustorka.com###lJsJTkKujdBPzJfuMOhFxqTMq ||z.track351.com^* ||exitmonetization.com/js/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||104.131.66.45/eudaimonia/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||megagames.com/728x90.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||megagames.com/megagames/adblock/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||megagames.com/sites/all/modules/custom/megagames/js/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pixel.condenastdigital.com/sparrow.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pixel.condenastdigital.com^* !||partnersinfo3n.cf/BDJRFc.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||partnersinfo3n.cf^* !||n-cdn.areyouahuman.com/init$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||n-cdn.areyouahuman.com/kitten$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||n-cdn.areyouahuman.com/observe$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.consultingcareerconnection.org/index.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.consultingcareerconnection.org^* !||levelsofdetail.net/wp-content/plugins/google-analyticator/external-tracking.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||levelsofdetail.net/wp-content/plugins/google-analyticator/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hlfx.ru/forum/counter.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||dptr.areyouahuman.com/dptr$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dptr.areyouahuman.com^* ||onhax.net/wp-content/oh-content/imgs/green_btn2.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||i1.wp.com/codex.onhax.net/img/pooradb_androidpk.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||psma02.com/ck/branding/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||zp1.delta-boa.com/zcvisitor/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||zp1.delta-boa.com^* !||1empiredirect.com/redirect?aff_id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||1empiredirect.com^* ||cdn.nezlobudnya.com/directclick/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||top-24h-can-store.com/redirect.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tools.bongacams.com/hit.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||bongacams.com/track?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||bongacams.com/load-promo/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||bongacams.com/members/ajax-popup$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||bongacams.com/members/join-ajax-popup$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||bongacams.com/tools/listing_v3.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||bongacams.com/tools/track.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bongacams.com^* apk4play.com##div.td-no-lightbox.ad-paragraph:remove() ||ox-d.wikia.servedbyopenx.com^* ||track.rtb-media.me^* ||exchange.nativeads.com^* ||ads.deliverimp.com^* ||ads.smartstream.tv^* ||rtbg.admedia.com^* ||ads.yieldmo.com^* ||redirect.xmladfeed.com^* !||n161adserv.com/vast.xml$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||n161adserv.com^* ||n196adserv.com^* !||n196adserv.com/ads?key=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||n159adserv.com/ads?key=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||n159adserv.com/impression.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||n159adserv.com^* !||n180adserv.com/ads?key=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||n180adserv.com/impression.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||n180adserv.com^* !||n156adserv.com/impression.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||n156adserv.com/ads?key=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||n156adserv.com^* ||n210adserv.com^* ||n189adserv.com^* ||n131adserv.com^* ||onhax.net/wp-content/oh-content/imgs/green_btn2.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$image ||i1.wp.com/codex.onhax.net/img/pooradb_androidpk.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$image onhax.net###oh_promd torrent-besplatno.net###brndc0b15c5d0:remove() apk4play.com###__admvnlb__modal:remove() apk4play.com###__admvnlb__modal_container:remove() ||a.adplacebest.com^* ||download20562.downloadlsdir.com^* ||nextlandingads.com^* ||apploading.mobi^* ||downloads.driveservfile.com^* ||ads.gamespy.com^* !||show.buzzcity.net/show.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||show.buzzcity.net^* ||www.pcspeeduppro.net^* ||cdn.pcspeeduppro.net^* ||lau1.slot.union.ucweb.com/beacon/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||img.ucweb.com/s/uae/g/09/ad/material/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||admaster.union.ucweb.com^* ||eroplay.sextgem.com^* ||js.buzzcity.net/bcads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||boom.clickpartoffon.xyz^* !||go.ad2upapp.com/afu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||go.ad2upapp.com^* ||www.androidyes.com/wp-content/uploads/2016/06/Download-now-button1.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$image my.pcloud.com##div.desktop-message.ad ||filechoco.net/wp-content/uploads/filechoco/download.jpg$image ||4.bp.blogspot.com/-WpCyOnPsCZw/VsX49t7MTnI/AAAAAAAABYk/BBYj_Cp_m_8/s1600/download9.png$image !||s.csbew.com/acookie.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.csbew.com^* ||fungetbag.info^* !||fungetbag.info/popunder.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||members.bet365.com/Members/javascript/Release/Cookies_v0.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s3.amazonaws.com/files.bannersnack.net/crfiles/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s3.amazonaws.com/files.bannersnack.net/crjson/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s3.amazonaws.com/files.bannersnack.net$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sqs.us-east-1.amazonaws.com/756737886395/stats-banner$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stats.bannersnack.com^* !||affilist-a-ban01.com/adImages/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||affilist-a-ban01.com^* !||cdn.bannersnack.com/iframe/js/rotator.gz.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.bannersnack.com/iframe/rotator.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.bannersnack.com^* ||video.monarchads.com^* ||vast.vertamedia.com^* !||st.videojam.tv/VideoJamAdService/getCreative$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||st.videojam.tv/VideoJamAdService/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ssp.anyclip-media.com/ssp/vpaid/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ssp.streamrail.net/ssp/vpaid/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||stat.lianmeng.360.cn/s2/srp.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stat.lianmeng.360.cn^* ||api.so.lianmeng.360.cn/searchthrow/api/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vid.springserve.com/vast/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vid.springserve.com/ssusersync$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cm.lianmeng.360.cn^* ||cm.mediav.com^* ||afpeng.alimama.com^* !||afpmm.alicdn.com/g/mm/afp-cdn/JS/k.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||afpmm.alicdn.com^* !||afpssp.alimama.com/acookie.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||afpssp.alimama.com^* !||afptrack.alimama.com/imp?bid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||afptrack.alimama.com/opt?bid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||afptrack.alimama.com^* !||s.lianmeng.360.cn/so/f.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s.lianmeng.360.cn/so/imagelink.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s.lianmeng.360.cn/so/m.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s.lianmeng.360.cn/so/monitor.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s.lianmeng.360.cn/so/runtime.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.lianmeng.360.cn^* ||vast.mediastinct.com^* !||vast.videe.tv/vast-proxy/?VPAID=1$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vast.videe.tv^* ||ylx-3.com/trkpx.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||banners.ylx-3.com^* ||ylx-3.com/banner_show.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||game-hoome.info/uppir/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||game-hoome.info^* ||pegi.euromano.ru^* ||data.shipthankrecognizing.info^* ||www.baczxsdw3esdrf.info^* androidmodpalace.blogspot.com###ads-top-728 ||goo.gl/mOrGTY$image ||fabolele.com:8135/api/v1/cspop$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||clkfeed.com/adServe/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||xml.pdn-2.com/click?adv=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xml.pdn-2.com^* ||uploads.to/t4/tabber.js ||yllix.com/banner.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||yllix.com/banner_show.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||yllix.com/banners/aff/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||yllix.com/layer.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||yllix.com/show.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,cssad=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||yllix.com/show_pop.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||yllix.com/publishers/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||yllix.com/popup.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.attenuablelhs.com/please.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.attenuablelhs.com^* ||bestandroidappsdownload.com/img/da/23574_c_mr.gif$image ||goo.gl/CGHVVo$image ||1.bp.blogspot.com/-UKjIkke8ddY/VBlwm-xBwSI/AAAAAAAAAI0/gamBCuXDMOM/s1600/anizanads.gif$image ||img15.hostingpics.net/pics/7467361313.png$image ||candytech.in/wp-content/uploads/*/banner-ad-$image !||candytech.in/wp-content/uploads/*/banner-ad-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css lifucon.cba.pl##.ktz-allwrap > .ktz-inner-content > .container:nth-of-type(1) > .ktz-aftermenubanner lifucon.cba.pl###post-9835 > .ktz-single-box > .entry-body > .ktz-post.clearfix.ktz-wrap-content-single.entry-content > .bannersinglefot !||78cc571ae97.net/googlead.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||78cc571ae97.net^* ||tag.vdossp.com^* ||d2kbaqwa2nt57l.cloudfront.net^* ||ad.appsary.com^* ||pl3618.puhtml.com^* filechoco.net##^script:has-text(Adblock) filechoco.net##+js(remove-node-text, script, /Adblock/gm) ||ssl.hstpnetwork.com/docallbakcinfo.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ssl.hstpnetwork.com/scripts/e519127597c6a40354cd904b06ca004e.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css uploads.to##^script:has-text(_impspcabe_) uploads.to##+js(remove-node-text, script, /_impspcabe_/gm) !||d5nxst8fruw4z.cloudfront.net/atrk.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||d31qbv1cthcecs.cloudfront.net/atrk.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.cloudfront.net/atrk.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.hlserve.com/delivery/api/search?creative=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||use-tor.adsrvr.org/bid/feedback/appnexus$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||use-tor.adsrvr.org^* !||vq918450.com/ctrd/click/newjump2.do$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vq918450.com/ctrd/click/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adtag.mediaiqdigital.com^* !||secure.bidverdrs.com/performance/bdv_rd.dbm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||secure.bidverdrs.com/performance/bdvclkv6_jsb.dbm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||secure.bidverdrs.com/performance/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||prod.video.msn.com/FraudDetect.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||77-1485231118147791863-597eb80f.d.telemetryverification.net/ps3/blank.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||77-1485231118147791863-597eb80f.d.telemetryverification.net^* !||cdn455.telemetryverification.net^* !||cdn455.telemetryverification.net/tv2n/directcontent/600075/300276_700167/531224_1/8a8c4bc3645dd145f6924bd157bfa32dba6759a6-531224__512_linear_640x360_h264.mp4$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The following rule redirects the video to a null file instead. !||cdn455.telemetryverification.net/tv2n/directcontent/600075/300276_700167/531224_1/8a8c4bc3645dd145f6924bd157bfa32dba6759a6-531224__512_linear_640x360_h264.mp4$media,redirect=noop-1s.mp4 !||cdn456.telemetryverification.net^* !||cdn457.telemetryverification.net^* !||cdn457.telemetryverification.net/tv2n/autocontent/mars/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn457.telemetryverification.net/tv2n/telemetry_player_vpaid_as3/live/r0200/telemetry_player_vpaid_as3.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn458.telemetryverification.net^* !||cdn458.telemetryverification.net/tv2n/directcontent/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn458.telemetryverification.net/tv2n/vpaid/aafa28f/telemetry_player_vpaid_as3.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn460.telemetryverification.net^* !||cdn460.telemetryverification.net/tv2n/directcontent/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn460.telemetryverification.net/tv2n/vpaid/8aca76c/telemetry_player_vpaid_as3.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn*.telemetryverification.net/tv2n/autocontent/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn*.telemetryverification.net/tv2n/telemetry_player_vpaid_as3/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||spc--ceedadgdlehdghbdjgjhedad.telemetryverification.net^* !||spc--cehgkgbfjcfhogjgffoepgfe.telemetryverification.net^* !||spc--cehgkgbfjcfhogjgffoepgfe.telemetryverification.net/hwp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||spc--ceihjdpeifffpgghdhcfdged.telemetryverification.net^* !||spc--ceihjdpeifffpgghdhcfdged.telemetryverification.net/hwp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||spc--ceihjdpeifffpgghdhcfdged.telemetryverification.net/ps3/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||spc--ceihjdpeifffpgghdhcfdged.telemetryverification.net/tax/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||spc--cejfhfigddgejfgfjgkhbehh.telemetryverification.net^* !||spc--cejfhfigddgejfgfjgkhbehh.telemetryverification.net/hwp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||spc--cejfhfigddgejfgfjgkhbehh.telemetryverification.net/ps3/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||spc--cejfhfigddgejfgfjgkhbehh.telemetryverification.net/tax/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||spc--$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css.telemetryverification.net^* ||*.telemetryverification.net^* !||booj7tho.com/e4/e8/f2/e4e8f2d9ac69beab24919043cdf7d511.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||booj7tho.com^* www.si.com##.with-sidebar-right.container-full-width > .article.content > .padded.body.content > .nolinks.swoop-container:nth-of-type(3) > .spx-ft-compliant.spx-ft-base.spx-full-text > .spx-ft-wrapper > .spx-ft-text > .spx-ad-.spx-ft-headline:remove() www.si.com##.with-sidebar-right.container-full-width > .article.content > .padded.body.content > .nolinks.swoop-container:nth-of-type(3) > .spx-ft-compliant.spx-ft-base.spx-full-text:remove() www.si.com##.with-sidebar-right.container-full-width > .article.content > .padded.body.content > .nolinks.swoop-container:nth-of-type(1) > .spx-button-base.spx-button > .spx-button-classic.spx-button-shine-off.spx-button-default > .spx-button-ad-.spx-button-cta:remove() ||fieldpprofile.com^* ||stats.leapdroid.com^* dropapk.com###mngez-wrapper > .mngez-container > .mngez-download1 > .mngez-download1plus > .mngez-downright > form > div:nth-of-type(2) > .download1:remove() !||tracker.samplicio.us/tracker/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tracker.samplicio.us^* ||usersync.samplicio.us/amazon/pixel.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||360popunder.com^* !||lizard1301.spider.ad/spd_display$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||lizard1301.spider.ad/spider3.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lizard1301.spider.ad^* ||venom1301.spider.ad^* ||s3.amazonaws.com/cdn4.mediakit.com.br/campaign/spider/adcash---display/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s3.amazonaws.com/cdn4.spider.ad/js/spider_ad_jquery.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s3.amazonaws.com/cdn4.spider.ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||medianet-d.openx.net^* ||match.adsby.bidtheatre.com^* ||ads.avocet.io^* ||xml.adxfactory.com^* ||filter.adxfactory.com^* ||tag.clrstm.com^* ||analytics.tout.com^* ||tag.1rx.io^* ||dmeserv.newsinc.com^* ||pp-serve.newsinc.com^* !||dyn.naiadsystems.com/pixel.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dyn.naiadsystems.com^* !||boom.pdanew.com/gfra.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||boom.pdanew.com/gfua.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||boom.pdanew.com/ggla.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||boom.pdanew.com/gpua.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||boom.pdanew.com^* ||muzikfury.thewhizmarketing.com^* !||letzonke.com/fp.eng$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||letzonke.com/Redirect.a1b$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||letzonke.com^* ||tgcaptions.org/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ox-d.mylikes.servedbyopenx.com^* ||engine.4chan-ads.org^* ||tracking.efreemobi.com^* ||rev.lanistaads.com^* nnm-club.me###EIclNamjRYVRqycWJFaJehyXs nnm-club.me###bfAMfBNVbtTqLrVyVnnUpoUmp nnm-club.me###ZYXNgssvRriVDIGIwnFfUsAPV ||i1.cdn2b.image.pornhub.phncdn.com/m=ecuK8daaaa/videos/201406/21/28411491/original/5.jpg$image www.pornhub.com##.abAlert www.pornhub.com##div.abAlertInner !||ab168260.adbutler-meson.com/app.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ab168260.adbutler-meson.com/adserve/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ab168260.adbutler-meson.com^* !||buzzie.tv/facebook-videos/js/videojs.ads.css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||buzzie.tv/facebook-videos/js/videojs.ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||buzzie.tv/facebook-videos/js/videojs.ads.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||mediaraily.com/ca/fl.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||mediaraily.com/ca/bl.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||porojo.net/funnelme.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.exdynsrv.com/*/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||main.exdynsrv.com/click.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ads.exdynsrv.com/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.exdynsrv.com^* !||www8.smartadserver.com/diff/1995/5691124/show2.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www8.smartadserver.com/diff/1995/5691125/show1.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www8.smartadserver.com^* ||d2wxwu28a4m0zf.cloudfront.net/js/gp.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css uploaded.net###ad-group-download-bottom uploaded.net###adshare-modal-content\ style\= uploaded.net###fakeContentBoxContainer uploaded.net###placement_209662_0 uploaded.net###placement_209663_0 uploaded.net###placement_209659_0 ||uploaded.net/img/as/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||uploaded.net/img/e/box.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$image ||uploaded.net/js2/ablok.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||uploaded.net/js2/adblock_detector.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||uploaded.net/js2/yahoo-dom-event.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||uploaded.net/video/adshare-ima.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||uploaded.net/video/adshare-modal.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.virtualcloudhosts.com/track.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adnetworkperformance.com/px.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adnetworkperformance.com/script/java.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||editorials.wishabi.com/track.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||a.wishabi.com/track.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.wishabi.com/sync/wid_iframe.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.wishabi.com^* ||adskgjhsdkjfhsgyghfk.xyz^* ||cdn.at.atwola.com/_media/uac/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stupidprofit.xyz^* ||track.lifemoneyhelp103.xyz^* ||oascentral.adage.com^* !||adexchangeprediction.com/script/packcpm.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adexchangeprediction.com^* ||collieryrebeller.xyz^* !||globeallinfo.com/18ac/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||globeallinfo.com^* ||unperpendicular.com^* !||unperpendicular.com/ts/en/2/ts-sc.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wecanonly.onemonthmeetonce.club^* ||dangerous-virus-alert2.xyz^* !||theliving.space/Popcash$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||theliving.space^* ||www.businessprohelp.com^* ||classicerror.xyz^* ||onlineweatherus.com^* ||yourjavascript.com/2155015101/adsshieldasmin.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !www.igameandroid.com###mtc-style-popup > .adsbygoogle:remove() www.igameandroid.com###mtc-style-popup:remove() ||info.privacysearch.co^* apk4play.com###__admvnlb_609456_modal_container ||one-and-one-d.openx.net^* ||thepiratebay.org/static/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||jlflzjdt.com/avbtp.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||jlflzjdt.com^* ||www.hurrynow.xyz^* !||wwwpromoter.com/code/uploadrocket/pop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||wwwpromoter.com/code/kingfiles/pop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||wwwpromoter.com/code/vodlocker/pop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||wwwpromoter.com/code/firedrivessl/drop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||wwwpromoter.com/code/anafile/pop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wwwpromoter.com/code/uploadrocket/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wwwpromoter.com/code/kingfiles/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wwwpromoter.com/code/vodlocker/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wwwpromoter.com/code/firedrivessl/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wwwpromoter.com/code/anafile/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wwwpromoter.com/code/*/drop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||creative.wwwpromoter.com/pop/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||creative.wwwpromoter.com^* !||xml.wwwpromoter.com/attribution/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xml.wwwpromoter.com^* !||bid.las01.wwwpromoter.com/attribution/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bid.las01.wwwpromoter.com^* !||creative.las01.wwwpromoter.com/pop-imp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||creative.las01.wwwpromoter.com^* !||www.dingit.tv/botDetect/js/swfobject.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.dingit.tv/botDetect/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||xml.mistralads.com/click?i=kPiSki47F6E_0 ||xml.mistralads.com^* !||etahub.com/events?app_id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||etahub.com/guid?app_id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||etahub.com^* ||logs-01.loggly.com^* ||adclickservice.com^* ||main.adclickservice.com^* ||ads.nativad.net^* ||contractkey.info^* 98io.blogspot.co.id##div#mediashareb ||www.websmultimedia.com/contador-de-visitas.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||3.bp.blogspot.com/-cFJETSTLu1M/UvLzLTdmIbI/AAAAAAAADOA/Ezwq43LfDsU/s1600/salslajsaygameopc.png$image !||m.FriendlyDuck.com/AF_TA/MediaServer/Media/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.friendlyduck.com/AF_TA/MediaServer/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.friendlyduck.com/AF_TA/MediaServer/Media/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.friendlyduck.com/AF_TA/MediaServer/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.friendlyduck.com/AF_TA/ViewCounter/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.friendlyduck.com/AF_TA/rel/index.cfm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.friendlyduck.com/LP_TA/index.cfm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||toplist.sk/count.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||js.xtgreat.com/mz_ad_serving.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||f.jtxh.net/code/pop_cpf.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||page93.ctfile.com/ad_display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.ctfile.com/ad_display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.usemax.de/rt.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.usemaxserver.de/rt.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.contentspread.net/cdn/toolbox/itag.dyn$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||toolbox.contentspread.net/integration/olusenetnl/35763e.dyn$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||toolbox.contentspread.net/integration/olusenetnl/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !torhash.net##div#__admvnlb_606500_modal_container:remove() !torhash.net##div#__admvnlb_606500_modal:remove() *###__admvnlb_606500_modal_container:remove() *###__admvnlb_606500_modal:remove() !||s1.slimtrade.com/in.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s1.slimtrade.com/s6292.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s1.slimtrade.com^* ||www.g4u.me/wpbanner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dvnafl0qtqz9k.cloudfront.net^* ||hilltopads.net^* ||ms.autoplayerror.online^* ||gifts4you.club/redirect/adcash/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||comeadvertisewithus.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||namesakeoscilloscopemarquis.com/path/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css nethd.org###ads_zone20627 ||www.nanoadexchange.com/a/display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.pgware.com/piracy/report/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||moevideoruanalytics.solution.weborama.fr^* ||alipromo.com/rotator/banner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||event.winktv.co.kr/banner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||img.soramall.kr/banner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||everybodylookingforty.ru/download/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||everybodylookingforty.ru/file/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||everybodylookingforty.ru^* ||sevtracker.org/styles/js/adframe.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||referrer.disqus.com/juggler/stat.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||attention-violently.ru/download/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||dlc.attention-violently.ru/uploaded/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||attention-violently.ru^* ||dlc.attention-violently.ru^* ||mx-it.ru^* ||idinaxyi.ru^* !||marvin.pw/px.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||marvin.pw^* !||fridaywinter.ru/download/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fridaywinter.ru^* !||dlc.fridaywinter.ru/uploaded/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dlc.fridaywinter.ru^* ||favvkjuhzkcn.net^* !||tr.kqzamd.com/track/c2.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tr.kqzamd.com/track/cb.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tr.kqzamd.com^* ||www.clrtracker.com/rd/r.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.deliveryclear.com/rd/r.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xvidcodecrepair.com^* !||stats.pusher.com/timeline/v2/jsonp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stats.pusher.com^* !||d2zl2pzv2q9dot.cloudfront.net/ads/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d2zl2pzv2q9dot.cloudfront.net/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||creative.speednetwork6.com/speednetwork6/tags/xcatfish/xcatfish.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||creative.speednetwork6.com^* ||ads.viouviouads.com^* !||xmlsearch.anytheengmedia.com/click^* ||xmlsearch.anytheengmedia.com^* !||filter.anytheengmedia.com/filter^* ||filter.anytheengmedia.com^* ||c.codeonclick.com/script/wait.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gsn.chameleon.ad^* ||static.chameleon.ad^* !||merriamwebster-d.openx.net/w/1.0/jstag$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||merriamwebster-d.openx.net^* ||pixel.quantserve.com/aquant.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adspredictiv.com/a/display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||t.tmdn2015x9.com/build/5cc965a9/v1/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||t.tmdn2015x9.com^* ||keycontract.info^* ||ar.mcgregormedicalclinic.com^* ||dd.skyginonline.com^* ||get.leriddleho.download^* ||longbank.info^* ||mw-silent.bgdev.dowjones.io/bg2/signalr/ping$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mwstream.wsj.net/bg2/signalr/ping$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||i.imgsafe.org/abf5727178.png$image !||analytics.openload.co/piwik.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||analytics.openload.co^* ||openload.co/adv.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||log.openload.co^* ||openload.co/reward/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||openload.co/pfz.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||openload.co/logpopup/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||stats.openload.co/log$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stats.openload.co^* ||appless.store^* !||wangyanyi.com/click.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wangyanyi.com^* !||hndesrzcgjmprqbbropdulvkfroonnrlbpqxhvprsavhwrfxtv.com/J.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hndesrzcgjmprqbbropdulvkfroonnrlbpqxhvprsavhwrfxtv.com^* ||windows-xjmsto.info^* ||cdrjblrhsuxljwesjholugzxwukkerpobmonocjygnautvzjjm.com^* ||adspacelnk.com^* ||pttsite.com^* !||static.phts.io/hitwe/choice_upcoming-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static.phts.io/hitwe/landbase_upcoming-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.phts.io/hitwe/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||t.viprsp.nl/clickout/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||t.viprsp.nl/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rose.dntrx.com^* !||cdn.drnxs.com/js/gp.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.drnxs.com^* ||d2gt9oovykfp1z.cloudfront.net/filmsanto.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rose.tnctrx.com^* !||do01.3al.pw/apu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||do01.3al.pw^* ||impression-bus1.us_east.prod/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||international-winners.com^* !||track.reacheffect.com/click.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||track.reacheffect.com^* !||n152adserv.com/ads-sync.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||n152adserv.com/js/show_ads_supp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||n152adserv.com^* !||delivery.g.switchadhub.com/adserver/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||delivery.g.switchadhub.com^* ||slickdeals-d.openx.net^* ||browser-update.org/update.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||assets.tapad.com/tapestry/tapestry-0.7.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||assets.tapad.com/tapestry/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pub.reacheffect.com/go/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pub.reacheffect.com^* ||gif.barclaycardus.com/servicing/*/js/base/monitoring/appd/adrum.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gif.barclaycardus.com/servicing/*/js/base/tagging/adbe/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gif.barclaycardus.com/servicing/js/base/monitoring/appd/adrum-ext.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css indoflac.com###fab-over indoflac.com###fab !||cdn.engine.spotscenered.info/Scripts/infinity.js.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.engine.spotscenered.info^* !||engine.spotscenered.info/Redirect.eng$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||engine.spotscenered.info/Tag.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||engine.spotscenered.info/fastpopunder.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||engine.spotscenered.info/link.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||engine.spotscenered.info^* !||sh.st/adSession/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||sh.st/adSession/callback^* !||sh.st/shortest-url/end-adsession$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||sh.st/bundles/advertisement/img/tracking.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sh.st/bundles/advertisement/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||sh.st/bundles/smeadvertisement/img/track.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sh.st/bundles/smeadvertisement/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sh.st/bundles/smeweb/img/advertisement-tracking-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sh.st/bundles/smeweb/img/tracking-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css sh.st##div[id^="epom-popup-"]:remove() !sh.st###epom-popup-07f997b1ee:remove() !sh.st###epom-popup-61948bf1ee:remove() sh.st###sandbox_iframe:remove() !||static.shorte.st/js/packed/interstitial-page.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static.shorte.st/js/packed/smeadvert-intermediate-ad.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.shorte.st/js/packed/intermediate_iframe_protector.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.shorte.st/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ads.shorte.st/footer.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ads.shorte.st/pop.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.shorte.st/get-ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||collector.shorte.st/interstitial-page-event$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bp.bpasyspro.com^* www.grunge.com###content > .sharethrough-container:remove() !||servedby.pixfuture.net/click^* !||servedby.pixfuture.net/impression^* ||servedby.pixfuture.net^* ||paypal.de-security.cc^* ||dgw.clickprotects.com^* ||console.brax-cdn.com/creatives/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||phic.methingine.ru^* !||1.tl813.com/tl813.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||1.tl813.com^* !||bitrix.info/ba.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bitrix.info^* ||sepsing.info^* ||mamload.ml^* !||mamload.ml/file.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mt.mediapostcommunication.net^* ||checkapi.xyz^* ||myprotectionalert.com^* ||perf.cdnads.com^* ||d.la4-c1-chi.salesforceliveagent.com/chat/rest/Visitor/Availability.jsonp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||e2ertt.com^* !||torpsol.com/300/*/asynch/null/123/null/true/*/null/Tag.a1b$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||torpsol.com^* ||www.mirrorcreator.com/js/pop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.mirrorcreator.com/mstats.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ct.sddan.com/CT.d$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ct.sddan.com^* ||*.mktoresp.com/webevents/visitWebPage$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.mktoresp.com/webevents/clickLink$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||rec.smartlook.com/bundle.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||rec.smartlook.com/recorder.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rec.smartlook.com^* !||www.hyubowucvkch.com/VOwb.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.hyubowucvkch.com/xaha.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||hyubowucvkch.com/MdXhz.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hyubowucvkch.com^* ||www.hyubowucvkch.com^* !||big.sddan.com/diffx/track/compgb.ashx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||big.sddan.com^* !||anal.taimienphi.vn/Check.ashx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||anal.taimienphi.vn^* !||www.adwidecenter.com/adlscript/adl_display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.adwidecenter.com/adlscript/showads.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adwidecenter.com/adlscript/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||taimienphi.vn/ads/topgia3.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||taimienphi.vn/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||wortparser.info/popunder.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wortparser.info^* ||sync.ipredictive.com/d/sync/cookie/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ns.ixiaa.com^* ||munchkin.marketo.net^* !||s4.ispringsolutions.com/stats/stats-1.3.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s4.ispringsolutions.com/stats/tracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s4.ispringsolutions.com/stats/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.ilcorsaronero.info/js/nopopup.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vmweb.net/beacon/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.webmasterrock.com/cpxt_pab1728.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||redstick.online^* ||api-secure.solvemedia.com/papi/creative_api.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.movementventures.com/_uid.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ps.eyeota.net^* ||www.ad4mat.de/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.zanox.com^* ||s3.amazonaws.com/cc.silktide.com/cookieconsent.latest.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static-de.ad4mat.net/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static-de.ad4mat.net^* !||static.ad4mat.net/images/de/advertiser/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.ad4mat.net^* gamesresources.forumfree.it##body > .ads:nth-of-type(4):remove() ||zipshare.online^* !||get.filestore.host/crack/download.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||get.filestore.host^* !||traffic.adxprts.com/ads/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||traffic.adxprts.com^* ||www.typepad.com/t/stats$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||htl.bid/build/bidder-mediaite.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||edge.simplereach.com^* ||inityreper.info^* !||omni.springserve.com/hb$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||omni.springserve.com^* ||www.torlock.gq/track.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||simple-cdn.s3.amazonaws.com/js/reach.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||monova.org/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||1306145884.rsc.cdn77.org/ads/saga/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.rsc.cdn77.org/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad8k.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||analytics.wheretowatch.com/piwik.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||analytics.wheretowatch.com^* ||anon-mpaa.gowatchit.com/api/v3/tracking/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||data.ruckusschroederraspberry.com^* ||ruckusschroederraspberry.com^* !||ruckusschroederraspberry.com/path/ads/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||secure-ads.pictela.net^* ||inclk.com/adServe/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||kraken.rambler.ru/cnt/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||server.vidazoo.com/campaigns/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||server.vidazoo.com^* ||wres.misileno.ru^* !||sf.monetate.net/trk/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||sb.monetate.net/img/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||se.monetate.net/js/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sf.monetate.net^* ||sb.monetate.net^* ||se.monetate.net^* ||www.dsply.com^* uploaded.net###pico-1:remove() uploaded.net###pico-2:remove() ||uploaded.net/js2/ablock.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||soundpark.online/js/banner.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||rutrk.org/iframe/advertserve-1200x120-2.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rutrk.org/iframe/advertserve-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rutrk.org/iframe/MG-728x90-1.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rutrk.org/iframe/MG-bottom-1.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||counter.tovarro.com/setmuidn/images/mui.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||counter.tovarro.com^* ||mediaraily.com^* !||n130adserv.com/ads-sync.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||n130adserv.com/js/show_ads_supp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||n130adserv.com/no-impression.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||n130adserv.com^* ||data.namesakeoscilloscopemarquis.com^* ||adbetnet.advertserve.com^* ||al-gb.marketgid.com^* ||bannersvideo.com/edge/*/728x120_100pr_edge.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cs01.et-code.ru/content/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cs01.et-code.ru^* !||et-code.ru/bens/vinos.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||et-code.ru/content/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||et-code.ru/files/etarg.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||et-code.ru^* !||gynax.com/js/MTA0Mw==.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gynax.com^* ||yadi.sk/monitoring.txt$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||l-stat.livejournal.net/js/??ads/googletag.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||l-stat.livejournal.net/js/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||l-stat.livejournal.net^* ||adminlady.info^* uploadocean.com##div.ads_big.big_res uploadocean.com##div.ads_small !||wmedia.adk2.co/wmedia/tags/xpopup/xpopup.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wmedia.adk2.co^* ||d3al52d8cojds7.cloudfront.net^* ||francep.ru^* ||pochina.ru^* ||latest-416598.aptexof.ru^* !||www.ssov.net/click.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.ssov.net/searchlock/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.ssov.net^* ||indisancal.com^* !||tool.petsavings.net/redirect.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tool.petsavings.net^* ||petsavings.net/Dev/fake-ads.css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||exchange.bdex.com/bdex/bdexSeller.jsp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||exchange.bdex.com^* ||3314062956.pub.ezanga.com^* !||c3.ezanga.com/util/click.pl$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||clickppcbuzz.com/click^* !||clickppcbuzz.com/clickcheck^* ||clickppcbuzz.com^* !||danmeneldur.com/829786/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||danmeneldur.com^* !||fulltab.com/lp3^* ||fulltab.com^* !||search.fulltabsearch.com/sc.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||search.fulltabsearch.com^* !||www.adexten.com/lp3^* ||www.adexten.com^* !||d1sj3yrs7ojvv7.cloudfront.net/extensions/js/app.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d1sj3yrs7ojvv7.cloudfront.net^* !||educing.info/popunder.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||educing.info^* !||s3.amazonaws.com/waframedia16.com/p.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s3.amazonaws.com/waframedia16.com/p.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s3.amazonaws.com/waframedia16.com$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wmedia.adk2x.com^* ||go4up.com/assets/img/buttoned.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s3.eu-central-1.amazonaws.com/system32update.com$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.msnetworkfirewall.xyz^* !||www.techconnect.com/www/js/ads/gpt_includes.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.techconnect.com/www/js/ads/gpt_launcher.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.techconnect.com/www/js/ads/gpt_starter.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.techconnect.com/www/js/ads/jquery.lazyload-ad.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.techconnect.com/www/js/ads/proximic.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.techconnect.com/www/js/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||4.bp.blogspot.com/-awYtr5cJAqw/VgzjQsw2LQI/AAAAAAAABqA/ahPkBacW5tM/s1600/downloadnow.png$image ||1.bp.blogspot.com/-hVelkOf4R-0/U2h3y9PrkeI/AAAAAAAAANo/-YznRLIZ79Q/s1600/download.gif$image ||load.sumome.com^* ||exoshare.com/images/3Button_Download.png$image !||engine.adbooth.com/adserver/iframe.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||engine.adbooth.com^* !forum.4rgameprivate.com###ads_zone34535:remove() forum.4rgameprivate.com##*[id^="ads_zone"]:remove() ||i.imgur.com/DeGl0tZ.png$image ||i.imgur.com/rt1qmlo.jpg$image !||stats.capitalone360.com^* !||stats.capitalone360.com/urchin.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stats.capitalone360.com/__utm.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||r.remarketingpixel.com/stats$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||r.remarketingpixel.com^* !||citi.bridgetrack.com^* !||sec-citi.bridgetrack.com/dmar/js/pf.mutation.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||sec-citi.bridgetrack.com/dmar/js/picturefill.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gateway.answerscloud.com/accountonline/production/foresee/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||longvan.link//www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||longvan.link^* ||track.xtrawx.com^* ||brtrk.com^* ||c.dfgyw.com^* ||rbxtrk.com^* ||5qddo.redirectvoluum.com^* gamesresources.forumfree.it##.ads:remove() ouo.io##iframe[src="about:blank"]:remove() ||cdn.adsoptimal.com^* !||ditwrite.com/300/*/asynch/null/123/null/true/*/null/Tag.a1b$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ditwrite.com/Redirect.a2b$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ditwrite.com/fp.rb$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ditwrite.com^* !||credit.iljmp.com/improvely.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||credit.iljmp.com^* !||adi.admicro.vn/adt/cpc/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||admicro1.vcmedia.vn/ads_codes/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adi.admicro.vn^* ||admicro1.vcmedia.vn^* !||media1.admicro.vn/ads_codes/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||media1.admicro.vn/core/adm_tracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||media1.admicro.vn/core/admcoreext.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||media1.admicro.vn/core/admicro_core_nld.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||media1.admicro.vn/core/cpc/self33_120_560.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||media1.admicro.vn/core/cpc/ssv_250_600.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||media1.admicro.vn/core/cpc/ssvzone_300_250.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||media1.admicro.vn/core/fipmin.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||media1.admicro.vn/core/lgnews.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||media1.admicro.vn/cpc/ssvzone_34534_1.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||media1.admicro.vn/cpc/ssvzone_default.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||media1.admicro.vn^* !||p.acceptableserver.com/px.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||p.acceptableserver.com^* ||n284adserv.com^* ||ads.shaggytexas.com^* ||ads.undertone.com^* ||xxtu.net^* ||www.share-online.biz/template/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||go.stickcoinad.com^* ||go.cartstick.com^* ||go.dropzenad.com^* ||hukae.cloudzid.com^* ||satisfaction-surveys.org^* ||landcdn.sexgangsters.com^* ||track.eadv.it^* ||t.leady.com^* ||t.leady.cz^* ||trck.cs1track.com^* ||strk.enlnks2.com^* ||gogamego.thewhizproducts.com^* !||lpstatic.thewhizproducts.com/scripts/lpask.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||lpstatic.thewhizproducts.com/scripts/psv.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lpstatic.thewhizproducts.com^* ||m.ajxqiongbg.com^* !||pageview.goroost.com/pageview^* ||pageview.goroost.com^* ||notify.bugsnag.com^* !||boxcdn02-61704.onmodulus.net/pageviews/jsonp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||boxcdn03-61705.onmodulus.net/pageviews/jsonp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||boxcdn02-61704.onmodulus.net^* !||boxcdn03-61705.onmodulus.net^* ||boxcdn*.onmodulus.net^* ||c.easydem.net^* !||thebrowsergame.com/preland/landing-n-Beijing-3.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||wcdn01.thebrowsergame.com/preland/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||thebrowsergame.com^* ||wcdn01.thebrowsergame.com^* !||prxiii.tk/pace_min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||prxiii.tk^* ||system32update.com^* !||a.adrsp.net/dsp/ci/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.adrsp.net^* ||downgradepc.readysoft4youopen.top^* ||go.coinsicmp.com^* !||kuaptrk.com/mt/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||kuaptrk.com^* ||r7mediar.com^* ||www.checkupgrade24safe4allos.space^* ||admedit.net^* !||admedit.net/affiliates/refine.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ae01.alicdn.com/kf/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ae01.alicdn.com^* !blocks pictures on AliExpress ||ficusoid.xyz^* ||digitaldigsads.com^* ||lamiflor.xyz^* !||glaswall.online/829769/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||glaswall.online^* !||www.bxoixzbtllwx.com/LhNw.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.bxoixzbtllwx.com/ynm.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.bxoixzbtllwx.com^* !||bxoixzbtllwx.com/r.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bxoixzbtllwx.com^* ||www.cio.com/www/js/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.cio.com/www/js/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||050005.voodoo.com/js/partner.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||15-minute-beauty.com^* !||555fff555f.net/googlead.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||555fff555f.net/popunder2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||555fff555f.net^* !||www.xxyafiswqcqz.com/spi.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.xxyafiswqcqz.com^* !||xxyafiswqcqz.com/zBFA.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||xxyafiswqcqz.com/eFQ.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||xxyafiswqcqz.com/sz.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||xxyafiswqcqz.com/uP.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xxyafiswqcqz.com^* ||us-defymedia.videoplaza.tv/proxy/tracker/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www1.wannasport.com/te/as.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www3.wannasport.com/js/utracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www3.wannasport.com/tpx/ppx.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www3.wannasport.com/tpx/px.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www1.wannasport.com^* ||www3.wannasport.com^* !||bid.contextweb.com/header/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bid.contextweb.com^* !||bh.contextweb.com/visitormatch/prebid$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||bh.contextweb.com/bh/rtset$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bh.contextweb.com^* !||ads.contextweb.com/TagPublish/getvideo.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.contextweb.com^* !||tag-st.contextweb.com/getjs.static.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tag-st.contextweb.com^* ||allbreakingnews.com^* !||www1.allbreakingnews.com/te/as.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www3.allbreakingnews.com/js/utracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www3.allbreakingnews.com/tpx/ppx.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www1.allbreakingnews.com^* ||www3.allbreakingnews.com^* ||udmserve.net/udm/fetch.pix$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||udmserve.net/udm/img.fetch$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bid.underdog.media^* !||cdn.udmserve.net/mid859/brainbend300x250.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.udmserve.net^* !||static.sh.st/js/packed/interstitial-page.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||info.search-privacy.club^* ||bc7zz.allcpa.5106.ws^* ||beta.spamanalyst.com^* ||gv7e.5255965.com^* ||trk.fastfwxyz.com^* www.majorgeeks.com###onscroll-ad-major-geeks-sky-left-sky ||s.fqtag.com^* !||k.streamrail.com/t.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||k.streamrail.com^* ||sdk.streamrail.com/*/sr.ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.fqtag.com/pixel.cgi$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||189137.measurementapi.com/serve^* ||189137.measurementapi.com^* ||c.actrck.com^* !||heracgjcuqmk.com/N.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||heracgjcuqmk.com/oO.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.heracgjcuqmk.com/v.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||heracgjcuqmk.com^* ||english1.gift-today68.online^* ||gctwh9xc.site^* !||async01.admantx.com/admantx/service?request=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||async01.admantx.com^* ||collector-464045923.us-east-1.elb.amazonaws.com^* ||video.unrulymedia.com/loader-analytics.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||video.unrulymedia.com/loader-stats.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||video.unrulymedia.com/lotame/lotame-beacon.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||video.unrulymedia.com/lotame/lotame_beacon.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||info.privatesearchonline.com^* !||mediapage2111.pw/popscpm14_1/scripts/pop-packcpm.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||mediapage2111.pw/popscpm14_1/server-redir.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mediapage2111.pw^* !||bspjagxietut.com/PyjbI.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bspjagxietut.com^* ||mg.adskeeper.co.uk^* ||cr2-01.com^* www.cheatsheet.com##.nolinks.swoop-container ||microsoft.com-1784.info^* !||ad.lkqd.net/mediafile/blocking_regex$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ad.lkqd.net/vpaid/vpaid.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.lkqd.net^* !||bleutrack.com/makecashonlinepropeller^* ||bleutrack.com^* ||d5p.de17a.com/getuid/adsolution^* !||data.adsrvr.org/track/cmf/generic^* ||data.adsrvr.org^* !||c1.adform.net/serving/cookie/match/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||c1.adform.net/serving/cookie/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c1.adform.net^* ||go.letadnew.com^* !||imp.vj-vid.com/trkVJAdsReqPxl.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||imp.vj-vid.com/videojamHtmlLoaded.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||imp.vj-vid.com^* ||www.adexchangecloud.com/a/display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||t.lkqd.net^* ||vast.deliads.com^* !||www.jbgehhqvfppf.com/p.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.jbgehhqvfppf.com/sbdw.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.jbgehhqvfppf.com^* !||jbgehhqvfppf.com/WJCh.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||jbgehhqvfppf.com/jwrKu.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||jbgehhqvfppf.com/nTY.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||jbgehhqvfppf.com/bK.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||jbgehhqvfppf.com^* ||www.adsonflags.com/js/show_ads_ecpmband.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.dfnhosting.com/ads-async.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.dfnhosting.com/impression.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adn.bwaarmada.com/beacon/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adn.bwaarmada.com^* !||rtb-csync.smartadserver.com/rtb/csync/CookieSync.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rtb-csync.smartadserver.com^* !||tracker.adotmob.com/smart/cookie^* ||tracker.adotmob.com^* !||adg.bzgint.com/pub/adg/combined_adg.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adg.bzgint.com^* !||ppndr.xyz/script-2/license.8.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ppndr.xyz/script-2/new_script.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ppndr.xyz^* !||st.videojam.tv/VideoJamAdService/getCreative^* !||www.myadcash.com/video_landing/js/jquery.inview.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.myadcash.com/video_landing/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||a.algovid.com/areq^* ||a.algovid.com^* !||arena.altitude-arena.com/*/?size=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||arena.altitude-arena.com/vast^* !||arena.altitudeplatform.com/vast^* ||arena.altitude-arena.com^* ||arena.altitudeplatform.com^* !||cdn.altitude-arena.com/js/vpaid.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.altitudeplatform.com/js/vpaid.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.altitude-arena.com^* ||cdn.altitudeplatform.com^* !||gmpx.bzgint.com/collectorx/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gmpx.bzgint.com^* ||ads.adap.tv/redir/javascript/lightintegration.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||edvbyybaviln.com/CeLWQ.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||edvbyybaviln.com^* !||www.edvbyybaviln.com/tmc.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.edvbyybaviln.com^* !||cdn.adsb4track.com/landings/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.adsb4track.com^* ||go.whiteboardnez.com^* ||cdn.oldgrannytube.com^* ||www.adtracker33.com^* ||okrnj.adsb4track.com^* ||oldgrannytube.com^* !||popcdn1.xcapps.com/adc.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||popcdn1.xcapps.com/pqqp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||popcdn1.xcapps.com^* ||b.codeonclick.com/script/wait.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||rbrbvedkazkr.com/ehng.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||rbrbvedkazkr.com/xsQRS.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.rbrbvedkazkr.com/kl.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rbrbvedkazkr.com^* ||www.rbrbvedkazkr.com^* ||ads.adap.tv/redir/javascript/jsvpaid.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css onhax.me###bottom-promo-dload ||nifi.woodrealm.ru^* !||download.televisionfanatic.com/anemone.jhtml$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||download.televisionfanatic.com^* ||televisionfanatic.dl.myway.com/mirrorCookies.jhtml$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ak.imgfarm.com/images/anx/anemone-1.2.7.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ak.imgfarm.com/images/download/spokesperson/html5/audio/spokesperson.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ak.imgfarm.com^* ||cholling.info^* ||go4up.com/assets/img/downloadbuttoned.png$image ||go4up.com/download/forwardr/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ami-d.openx.net^* !||www.reimageplus.com/includes/router_land.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.reimageplus.com^* ||www.clicksgear.com^* ||www.search-privacy.info^* ||tv.myappline.com^* !||global-redirect.com/path/meta.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||global-redirect.com^* !||nwqjziqi.top/ts-red/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nwqjziqi.top^* ||livepassdl.conviva.com/hf/ver/*/LivePassModuleMain_telemetry.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||your-reward.net^* ||private.mixplugin.com^* !||cdn.hiberniacdn.com/frt/vpaid/ANGUserSyncer-7.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.hiberniacdn.com/frt/vpaid/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdnjs.cloudflare.com/ajax/libs/videojs-vast-vpaid/*/videojs.vast.vpaid.min.css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdnjs.cloudflare.com/ajax/libs/videojs-vast-vpaid/*/videojs_5.vast.vpaid.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdnjs.cloudflare.com/ajax/libs/videojs-vast-vpaid/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||unpkg.com/videojs-vast-vpaid@$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||czgeitdowtlv.com/TG.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||czgeitdowtlv.com^* !||www.czgeitdowtlv.com/w.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.czgeitdowtlv.com^* ||support.com-support-net.online^* !||krovrhmqgupd.com/o.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||krovrhmqgupd.com/V.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||krovrhmqgupd.com^* !||www.krovrhmqgupd.com/ut.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.krovrhmqgupd.com^* ||pk-5ad1.kxcdn.com^* !||www.ssjhkvwjoovf.com/kxe.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.ssjhkvwjoovf.com^* !||ssjhkvwjoovf.com/mLfpqX.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ssjhkvwjoovf.com^* !||syndication.exdynsrv.com/splash.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||syndication.exdynsrv.com/ads-iframe-display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||syndication.exdynsrv.com^* ||cdn.hiberniacdn.com/frt/img/trpx.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mmwebhandler.aff-online.com^* edmdownloads.com##.ArevicoModal-iframe.ArevicoModal:remove() edmdownloads.com##.ArevicoModal-iframe.ArevicoModal-bg:remove() ||edmdownloads.com/wp-content/themes/toujours/images/toujoursbackground20160105.png$image ||mobon.com/vendor/au.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.djtunes.com^* !||s.tyxo.com/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s.tyxo.com/c.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.tyxo.com^* !||imp.vrtzads.com/empty.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||imp.vrtzads.com^* ||judyr.xyz^* ||quei1ai.top^* !||s2pops.club/path/meta.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s2pops.club^* !||tracker.departapp.com/api/collect^* ||tracker.departapp.com^* ||vortexglobal.cdn.adglare.net^* ||www.nextlnk4.com^* ||www.socialnewpages.com^* ||www.worldwebprofits.com/js/show_ads_ecpmband.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cx.atdmt.com^* ||external-dft4-2.xx.fbcdn.net/safe_image.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||mediawhirl.net/r/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mediawhirl.net^* ||claim-reward.0rqafj.top^* !||banner.vrtzads.com/scripts/js/screentime.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||banner.vrtzads.com^* ||cpm.wargaming.net^* !||affrh2015.com/adServe/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||affrh2015.com^* !||cnt.tyxo.com/btn^* !||cnt.tyxo.com/push^* ||cnt.tyxo.com^* androido-mania.com###ag8541318 !||growfoodsmart.com/sas/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||growfoodsmart.com/sas/player/directPlayer.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||robo.growfoodsmart.com/api/v1/services/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||growfoodsmart.com^* ||robo.growfoodsmart.com^* !||0gowsq.top/claim-reward-redirect/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||0gowsq.top^* ||69wnz64h.xyz^* ||www.clickpapa.com/c.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.clickpapa.com/d.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xml.readywind.com^* ||mosaicolor.website^* ||gk25qeyc.xyz^* ||go.topbananaad.com^* ||dogo.zip-lab.ru^* ||track.sharktrkr.xyz^* ||www.risk.vrsinsrtsysdmg.info^* !||tracted.net/cp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tracted.net^* ||usafashionmania.xyz^* ||onedrive.su/code/swf_banner.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||onedrive.su/code/bshow.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||onedrive.su/code/partners.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||btdb.in/beacon.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||code.moviead.ru/c.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||code.moviead.ru^* !||cs25753.skyadvert.su/promo/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cs25753.skyadvert.su/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||skyad5.ru/markup/core/script_v1.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||skyad5.ru^* ||www.predictivadvertising.com/a/display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.shglegle.com/ads^* ||www.shglegle.com/impression.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||yastatic.net/share/ya-share-cnt.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||wac.a164.taucdn.net/80A164/adsurge-cdn/files-adsurge/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wac.a164.taucdn.net/*/adsurge-cdn/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pp.vk.me^* !||img1461.r.worldssl.net/media/html5/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||img1461.r.worldssl.net/js/html5js/createjs-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||img1461.r.worldssl.net/js/html5js/easeljs-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||img1461.r.worldssl.net/js/html5js/movieclip-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||img1461.r.worldssl.net/js/html5js/preloadjs-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||img1461.r.worldssl.net/js/html5js/tweenjs-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||img1461.r.worldssl.net/iframeH/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||img1461.r.worldssl.net^* ||1-17.ru^* ||1-20.ru^* ||et-code.ru/bens/vinos.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css allbesta.net###bbf916cf0c ||allbesta.net/templates/allbesta/images/bloc.png$image torrentzwealmisr.onion.rip##.rOmoYEUi monova.org###MarketGidWrap77920 monova.org##.warning-message ||www.seedpeer.eu/images/Blue_Button_Download_Large_EN.png$image !||r.yawsa.com/click^* ||r.yawsa.com^* !||pwwysydh.com/click^* ||pwwysydh.com^* !||ssp.zryydi.com/impression^* ||ssp.zryydi.com^* !||api.pointcmarketing.com/h/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.pointcmarketing.com^* !||awakefinder.com/d/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||awakefinder.com^* !||dizzyfestive.com/d/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dizzyfestive.com^* !||tracking.waterfrontmedia.com/GCScript.ashx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tracking.waterfrontmedia.com^* !||cdn.augur.io/_.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.augur.io/augur.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.augur.io^* !||clicktale.pantherssl.com/XHRWrapper.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||clicktale.pantherssl.com^* ||fast.fonts.net/t/trackingCode.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||popcash.net^* ||cdn.popcash.net^* !||cdn.popcash.net/pop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||popcash.net/server/go/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||popcash.net/world/go/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||popcash.net/world/sgo/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||jsc.dt07.net/r/l/rlslog.net.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dashgreen.online^* ||bgrndi.com/js/NTQw.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||dmp.vihub.ru/match^* ||dmp.vihub.ru^* ||main-rutor.org/lastvisit.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||soundpark.online/cdn-cgi/l/chk_jschl$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sync.pool.datamind.ru/image?source=adwis$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css heatst.com##.str-card-exp.str-adunit ||brokeloy.com/c/sw.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||rev.adip.ly/revive/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rev.adip.ly^* !||gnipadiiodpa.com/MI.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||gnipadiiodpa.com/SVH.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||gnipadiiodpa.com/UCcpQ.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gnipadiiodpa.com^* !||fashionback.com/promo/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||fashionback.com/tdm.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fashionback.com^* main-rutor.org##span:remove() ||critical-error4053.91wj41558534.security-alert-pdabx.party^* !||esimedia-d.openx.net/w/1.0/acj$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||esimedia-d.openx.net/w/1.0/jstag$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||esimedia-d.openx.net^* ||go.pixelm1.com^* !||impl.onscroll.com/content-injector/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||impl.onscroll.com/onscroll/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||impl.onscroll.com^* ||info.search-privacy.net^* ||insanetrack.com^* ||pixelm1.com^* ||tags.onscroll.com^* ||www.independent.co.uk/profiles/ines/modules/ines_commercial/ines_commercial_ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.independent.co.uk/profiles/ines/modules/ines_commercial/ines_commercial_affiliates/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static.independent.co.uk/s3fs-public/advagg_css/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.independent.co.uk/s3fs-public/advagg_js/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.trkfl.com/go.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.trkfl.com/ssl.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||eu-u.openx.net^* !||us-u.openx.net/w/1.0/sd$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||us-u.openx.net^* !||u.openx.net/w/1.0/pd$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||u.openx.net^* !||stag.mdotlabs.com/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||stag.mdotlabs.com/sherlock.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stag.mdotlabs.com^* !||sp.mdotlabs.com/images/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sp.mdotlabs.com^* !||www.sexystat.com/decor/entrez.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||p.cpx.to/p/11667/px.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||p.cpx.to^* ||10nr6frq.cricket^* !||my.rtmark.net/img.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||my.rtmark.net^* !||onclkds.com/img.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||onclkds.com^* ||pin22pin.com^* ||static.pin22pin.com^* !||3405590922.log.optimizely.com^* !||2788500260.log.optimizely.com^* !||3717650865.log.optimizely.com^* !||1369090036.log.optimizely.com^* !||173671602.log.optimizely.com^* !||2628570003.log.optimizely.com^* !||303096761.log.optimizely.com^* !||310987714.log.optimizely.com^* !||4162051502.log.optimizely.com^* !||42265985.log.optimizely.com^* !||7144006.log.optimizely.com^* ||*.log.optimizely.com^* !||c.adforgeinc.com/w.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c.adforgeinc.com^* !||blutonic2.as.adforgeinc.com^* !||495.as.adforgeinc.com^* ||*.as.adforgeinc.com^* ||browser-defence.com^* ||adobe.demdex.net^* ||akcdn.demdex.net^* !||akcdn.demdex.net/dm/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.demdex.net/dm/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.demdex.net^* !||condenast.demdex.net/dest3.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||condenast.demdex.net^* !||dailymotion.demdex.net/event^* ||dailymotion.demdex.net^* ||fairfax.demdex.net^* ||fast.adobe.demdex.net^* ||fast.cbsi.demdex.net^* !||fast.cbsi.demdex.net/dest4.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cbsi.demdex.net^* ||fast.condenast.demdex.net^* ||fast.mtvn.demdex.net^* ||fast.philly.demdex.net^* !||fast.sears.demdex.net/dest4.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fast.sears.demdex.net^* ||homedepot.demdex.net^* ||mtvn.demdex.net^* ||nbcu.demdex.net^* !||nexac.demdex.net/nexac.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nexac.demdex.net^* ||pepsico.demdex.net^* ||usaa.demdex.net^* ||vivaki.demdex.net^* ||adserver.fanserver.net^* greasyfork.org##^script-show-info-ad greasyfork.org##script-show-info-ad:remove() !||dpallyihgtgu.com/OIZFVB.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||dpallyihgtgu.com/e.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||dpallyihgtgu.com/lSWLsD.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dpallyihgtgu.com^* !||www.dpallyihgtgu.com/m.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.dpallyihgtgu.com^* !||nfdntqlqrgwc.com/XWbaj.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||nfdntqlqrgwc.com/e.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||nfdntqlqrgwc.com/edkj.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||nfdntqlqrgwc.com/xOnK.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||nfdntqlqrgwc.com/y.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nfdntqlqrgwc.com^* !||www.nfdntqlqrgwc.com/q.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.nfdntqlqrgwc.com^* !||vivcdctagoij.com/iB.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vivcdctagoij.com^* !||www.vivcdctagoij.com/it.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.vivcdctagoij.com^* !||www.tubeoffline.com/ads2/adframe2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.tubeoffline.com/ads2/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s10.postimg.org/70t37rizt/320x50_Orange_2_Button_Download_Play_Now.png$image !||b1.zemanta.com/api/bidder/spoutable/win/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||b1.zemanta.com^* !||r1.zemanta.com/r/u1f8blev4vls/b1_spoutable/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||r1.zemanta.com^* ||n331adserv.com^* ||roimedia.advertserve.com^* ||track.letsgosg.com^* ||track.mztrack.com^* ||tracking.revimedia.com^* ||track.spots.im^* ||track.whitespace57.com^* ||www6.afsanalytics.com^* !||bigproducts.info/campaigns/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bigproducts.info^* ||narutoonline.com-travel.website^* !||s2.contribusourcesyndication.com/trending.js.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s2.contribusourcesyndication.com^* ||stormfall.com-travel.website^* ||www.buzzadexchange.com/a/display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cst.innogames.de/e.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cst.innogames.de^* !||lps-pixel.innogames.de/t.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lps-pixel.innogames.de^* !||amp.mdotlabs.com/eval.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||amp.mdotlabs.com^* !||b.measuread.com/rs/test/am.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||b.measuread.com^* ||rwvideo.us/video/cs_log.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||stats.systems/js/stracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||stats.systems/spx/px_new.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stats.systems^* ||beacon.lynx.cognitivlabs.com^* ||cdnjs.dw-hostings.com/js_tags/v2/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdnjs.dw-hostings.com/js_tags/v2/pixels/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||delivery.b.switchadhub.com/adserver/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||delivery.b.switchadhub.com^* !||ping-aws.rtbanalytics.com/bidder/ping_rtb.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ping-aws.rtbanalytics.com^* !||qfmbgvgvauvt.com/IEOkx.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||qfmbgvgvauvt.com/tNWpx.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.qfmbgvgvauvt.com/we.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||qfmbgvgvauvt.com^* ||www.qfmbgvgvauvt.com^* !||pm.w55c.net/ping_match.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pm.w55c.net^* ||japanmo.xyz^* ||s2s.dw-hostings.com:9202/bidder/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tag.dw-hostings.com/js_tags/v2/adquality/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tag.dw-hostings.com^* !||cm.steepto.com/setmuidn/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cm.steepto.com^* ||cdn.spoutable.com^* !||750857.dld.file-shares.com^* !||750857.dld.file-shares.com/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.dld.file-shares.com^* ||adhome.biz^* !||adhome.biz/r/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.vicomi.com/api/v1/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.vicomi.com/api/v1/feelbacks/init.json$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn-tags.cignalio.com/cignal-starter.1.0.12.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn-tags.cignalio.com^* ||cositin.com^* !||magic-cleaner.cc/landing4/js/app.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||magic-cleaner.cc^* ||www.fiuxy.com/links/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.fiuxy.net/links/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||viid.me/bundles/advertisement/img/tracking.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||viid.me/bundles/advertisement/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||viid.me/bundles/smeweb/img/advertisement-tracking-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||viid.me/bundles/smeweb/img/tracking-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||viid.me/shortest-url/end-adsession^* ||www.cash4files.com/CEB21/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.filesonthe.net/fkK/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static.linkbucks.com/scripts/intermissionLink.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.linkbucks.com/scripts/intermissionLink.v6.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.linkbucks.com/scripts/intermissionLink.v9.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.linkbucks.com/scripts/intermissionLink.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ecbd60ff.linkbucks.com/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.linkbucks.com/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.linkbucks.com/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.linkbucks.com/scripts/jspopunder.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.linkbucks.com/scripts/popUnderLink.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.linkbucks.com/scripts/popUnderLink.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.linkbucks.com/popUnder/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.linkbucks.com/scripts/script-adv.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.linkbucks.com/tmpl/mint/css/ads.css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.linkbucks.com/visitScript/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.linkbucksmedia.com/director/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.linkbucks.com/scripts/pop.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||releases.flowplayer.org/vast/born2invest.com^* ||sunus.xyz/link.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tbyauqjvluik.net^* ||piratebox.site/link.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||dl.bithoster.info/download.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||dl.ulver.xyz/download.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dl.bithoster.info^* ||dl.ulver.xyz^* ||born2invest.com/videos/wp-content/plugins/geotargeting-pro/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d0wn7.website/link.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||dl.rapids8.accountant/download.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dl.rapids8.accountant^* ||indifile.download/link.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||leechbay.tech/link.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||veryupload.info/link.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||downloadb0x.host/link.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sharepedia.online/link.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||dl.azdownloads.men/download.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dl.azdownloads.men^* ||ifiles.win/link.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ufyvdps3.webcam^* ||d93gameplay.com^* !||instafolowlike.top/chan100$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||instafolowlike.top^* !||repolokin.xyz/extension/chan100.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||repolokin.xyz/extension/pops/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||repolokin.xyz^* !||theemploymentspot.com/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||theemploymentspot.com/search/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||theemploymentspot.com/stats/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||theemploymentspot.com^* ||u85foldero.com^* ||www.dyzzle.com/free-rpg-online-game/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||r91c6tvs.science^* ||jzeu6qlk.accountant^* ||bwknu1lo.top^* !||traffmasta.pw/extension/setclid.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||traffmasta.pw^* !||clk1005.com/adServe/feedclick^* ||clk1005.com^* ||assets-jpcust.jwpsrv.com/player/*/ping.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||c.vrvm.com/pass/vrv/adtag/vervetag.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c.vrvm.com/pass/vrv/adtag/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d2a83yrkcf5k5p.cloudfront.net^* !||dbctr.gq/ddos_test$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dbctr.gq^* ||entitlements.jwplayer.com^* !||cdn-gl.imrworldwide.com/novms/js/2/nlsDcrLite510.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn-gl.imrworldwide.com/novms/js/2/ggcmb510.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn-gl.imrworldwide.com^* ||go.bistroapi.com^* !||gzkoehgbpozz.com/VLYK.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||gzkoehgbpozz.com/gJ.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gzkoehgbpozz.com^* ||www.gzkoehgbpozz.com/sfbx.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||insurance4you.space^* !||mm-trking.com/jump/jump.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||mm-trking.com/jump/jumpto.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||mm-trking.com/visit.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mm-trking.com^* !||qianxianyuan.com/insurance4you/noreferer.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||qianxianyuan.com^* !||www.qianxianyuan.com/insurance4you/index.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.qianxianyuan.com/insurance4you/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tracking.dreamfii.com/click.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tracking.dreamfii.com^* !||tracking.mobipotato.com/click.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tracking.mobipotato.com^* !||www.chvjfriqlvnt.com/zvom.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.chvjfriqlvnt.com^* !||chvjfriqlvnt.com/lsUBSK.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||chvjfriqlvnt.com^* ||www.hotestapps.com^* !||r.mobobeat.com/deliver_cpa.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||r.mobobeat.com^* ||appflood.com/images/xpromt/noad.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||click.union.ucweb.com^* !||click.union.ucweb.com/log/logger.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||clinkadtracking.com/tracking^* ||clinkadtracking.com^* ||img.mobusi.com/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lau1.slot.union.ucweb.com^* ||play.leadzu.com^* !||www.appimule.com/img/1.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.appimule.com/js/clean-blog.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||privatepillvalue.ru^* !||dovltuzibsfs.com/xwPElt.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dovltuzibsfs.com^* !||www.dovltuzibsfs.com/fkp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.dovltuzibsfs.com^* !||owlmjcogunzx.com/h.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||owlmjcogunzx.com^* !||tag.bounceexchange.com/2000/i.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tag.bounceexchange.com^* !||comcluster.cxense.com/Repo/rep.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||comcluster.cxense.com^* !||scdn.cxense.com/cx.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||scdn.cxense.com^* !||serve.vdopia.com/adserver/html5/inwapads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||serve.vdopia.com/adserver/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||swgvpkwmojcv.com/T.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||swgvpkwmojcv.com^* !||akcdn.nativeadsfeed.com/n284/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||akcdn.nativeadsfeed.com/n284/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||analytics-static.ugc.bazaarvoice.com/prod/static/3/bv-analytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||analytics-static.ugc.bazaarvoice.com^* !||zgdejlhmzjrd.com/CvFD.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||zgdejlhmzjrd.com/J.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||zgdejlhmzjrd.com/LRkaO.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||zgdejlhmzjrd.com/PUi.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||zgdejlhmzjrd.com/Reuar.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||zgdejlhmzjrd.com^* !||www.zgdejlhmzjrd.com/ffv.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.zgdejlhmzjrd.com^* !||mm-trackings.com/visit.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mm-trackings.com^* !||www.jauftivogtho.com/wd.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||jauftivogtho.com/aM.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||jauftivogtho.com/yNz.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||jauftivogtho.com/PYl.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||jauftivogtho.com^* ||c.vindicosuite.com/creative/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||papi.mynativeplatform.com/pub2/dsppostimpressionpixel.jso$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||register.powerlinks.com/imp^* ||register.powerlinks.com/imptrack^* ||www.yoarcade.net/freeonlinegames.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||time.akamai.com^* ||k9anf8bc.webcam^* ||network.bazaarvoice.com/id.json$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||network.bazaarvoice.com/sid.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||newtabtv.com^* ||s3.amazonaws.com/html5player.gamezone.com/video-ad-unit.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css uptobox.com##.yp6_desktop_classic.yp6_area.my6_widget_bg.my6_wrap:remove() uptobox.com##.yp6_CUSTOM_UI_XHRyqe3XytmjPu9OMsWqyt.yp6_area.my6_widget_bg.my6_wrap:remove() uptobox.com###fpContentWidgetFooterWrapper:remove() uptobox.com###container_page > .bg_page > div:nth-of-type(1) > form > center > table > tbody > tr > td:nth-of-type(3):remove() uptobox.com###container_page > .bg_page > div:nth-of-type(1) > form > center > table > tbody > tr > td:nth-of-type(1):remove() uptobox.com###zvrfwnqd.mhdyxrvq:remove() uptobox.com###zvrfwnqd.vsrztido:remove() uptobox.com###zvrfwnqd.tarxpjfe:remove() uptobox.com##.mhdyxrvq-bg:remove() uptobox.com###xqbjtzhk.hufdezws:remove() uptobox.com###xqbjtzhk.ozgeyhtm:remove() uptobox.com###xqbjtzhk.gkzoahme:remove() uptobox.com##.hufdezws-bg:remove() uptobox.com###UTBdiv:remove() uptobox.com###fan-exit:remove() uptobox.com###fanback:remove() uptobox.com##.a-img-block:remove() uptobox.com##.ar6005726:remove() uptobox.com##.ad-square:remove() uptobox.com##.ad-leader:remove() !uptobox.com##div[class^="torobutt_blue_"]:remove() !uptobox.com##div[class^="torobutt_green_"]:remove() !uptobox.com##div[class^="torobutt_black_"]:remove() uptobox.com##div[class*="torobutt_"]:remove() !uptobox.com##div.adleave113797396:remove() uptobox.com##div[class^="adleave"]:remove() uptobox.com##div[id^="adleave"]:remove() uptobox.com##div[id*="torobutt_"]:remove() uptobox.com##div[title*="torobutt_"]:remove() uptobox.com##div[name*="torobutt_"]:remove() uptobox.com##form > div > div:nth-of-type(1):remove() !||uptobox.com/banner_160x600.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||uptobox.com/banner_300x250.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||uptobox.com/banner_*.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||uptobox.com/js/c.ad6media.fr_l.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||uptobox.com/pages/adblock.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||uptobox.com/zone2.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||uptobox.com/zone1.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||matomo.uptobox.com/matomo.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||matomo.uptobox.com^* ||ad.uptobox.com^* ||ads.uptobox.com^* !||ads2.uptobox.com/www/delivery/asyncjs.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads2.uptobox.com^* !||pwk.uptobox.com/piwik.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pwk.uptobox.com^* ||toro-tags.com/fr/uptobox/72890.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||travelwednesday.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||travelwednesday.com/tags/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||travelwednesday.com/load.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||travelwednesday.com/pds.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||travelwednesday.com^* ||echo.intergient.com^* ||www.simple2date.com/LX/DM-C/DM2.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||my.softarchive.la/search/showads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.3delite.hu/largead.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.fmzxzkgmpmrx.com/r.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.fmzxzkgmpmrx.com^* !||4dbl0ckd3t3ct0r.net/googlead.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||4dbl0ckd3t3ct0r.net/popunder2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||4dbl0ckd3t3ct0r.net^* !||glslciwwvtxn.com/C.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||glslciwwvtxn.com/RdSsvr.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||glslciwwvtxn.com/fTOb.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||glslciwwvtxn.com/mb.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||glslciwwvtxn.com^* !||www.glslciwwvtxn.com/t.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.glslciwwvtxn.com^* !||gotositenow.com/ctrack.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||gotositenow.com/lib/ajax/lp_timing.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gotositenow.com^* !||supercpa1.com/visit.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||supercpa1.com^* www.pinterest.com##div:nth-of-type(2) > div:nth-of-type(2) > div:nth-of-type(2) > div !||58011369.log.optimizely.com^* !||adcel.vrvm.com/adtag.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adcel.vrvm.com^* !||bzyrhqbdldds.com/G.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bzyrhqbdldds.com^* !||www.bzyrhqbdldds.com/nhfq.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.bzyrhqbdldds.com^* !||i.n.jwpltx.com/v1/adclient/ping.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||i.n.jwpltx.com/v1/adclient/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||jwpltx.com/v1/adclient/ping.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||jwpltx.com/v1/adclient/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||jwpltx.com/v1/clienta/ping.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||jwpltx.com/v1/jwplayer6/ping.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||prd.jwpltx.com/v1/g/ping.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||prd.jwpltx.com/v1/error/ping.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||prd.jwpltx.com/v1/jwplayer6/ping.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ping-meta-prd.jwpltx.com/v1/jwplayer6/ping.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.sportsmanias.com/js/googleTrackingUniversal.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.zvuespzsdgdq.com/l.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||zvuespzsdgdq.com/uZPXO.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||zvuespzsdgdq.com^* ||www.zvuespzsdgdq.com^* ||att.giveaways-news.com^* ||megadysk.pl/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||content.synapsys.us/l/n/igloo-pb.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||w1.synapsys.us/images/psa/$image ||download.driversupport.com^* ||espn.hb.omtrdc.net^* !||www1.xmas-xmas-wow.com/360/*/asynch/null/123/null/true/*/null/Tag.a1b$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www1.xmas-xmas-wow.com/Redirect.a2b$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www1.xmas-xmas-wow.com/fp.rb$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www1.xmas-xmas-wow.com^* !||www.vdlvaqsbaiok.com/b.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.vdlvaqsbaiok.com^* ||content.synapsys.us/embeds/double_decker/partner.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||content.synapsys.us/t/*/tracker-pb-min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||content.synapsys.us/l/prebid.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||content.synapsys.us/l/e.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||content.synapsys.us/l/s.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pr.realvu.net/flip/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pr.realvu.net^* !||adtrack2.pl/go.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adtrack2.pl^* ||get.nullitydies.bid^* !||blankrefer.com/cdn-cgi/nexp/*/cloudflare/rocket.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||blankrefer.com/cdn-cgi/pe/bag2$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||blankrefer.com^* ||cleb.creditplough.ru^* !||file-5.pila.pl/exe/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||file-5.pila.pl/exe/installer.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||file-5.pila.pl^* ||santsev.fallpoint.pw^* !||santsev.fallpoint.pw/find.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.cloudstoragechief.com^* !||affcpv.online/AdcashUS^* ||affcpv.online^* ||deletemer.online^* ||fisk.chickensfog.ru^* ||get.izenoncomcaskund.bid^* ||santsev.farmcommittee.pw^* !||star.pulseonclick.com/script/packcpm.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||star.pulseonclick.com^* ||van05manage04.site^* !||xml.pdn-3.com/click^* ||xml.pdn-3.com^* ||atomicblast.lol^* ||brakefluid.website^* ||safensecure.com-allsites3.xyz^* ||store1.up-00.com/*/1464031041511.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||store1.up-00.com/*/1464029891011.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||store1.up-00.com/*/1471570071861.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||up07.net/open19.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.downloadmx.net##.onp-sl-lang-en_US.onp-sl-horizontal.onp-sl-has-counters.onp-sl-group-index-1.onp-sl-single-group.onp-sl-first-group.onp-sl-social-buttons.onp-sl-group:remove() www.downloadmx.net##.onp-sl-inner-wrap:remove() www.downloadmx.net##.onp-sl-overlap-background:remove() www.downloadmx.net##.onp-sl-secrets-theme.onp-sl-transparence-mode.onp-sl-overlap-box:remove() ||shaktimenboosters.net^* !||analytics.cuvesk.com/analytic.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||analytics.cuvesk.com/rout/rout.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||analytics.cuvesk.com/write/write.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||analytics.cuvesk.com^* ||error.xxxvideospandora.xyz^* ||www.meeturcrush.xyz^* !||xml.explorads.com/click$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xml.explorads.com^* ||weqdsat.us^* ||130.211.212.60/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||relopo.com/iphone7giveaway/index.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||relopo.com^* ||motix.xyz^* !||somiopix.com/click.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||somiopix.com^* !||fdogfuqpgeub.com/ce.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fdogfuqpgeub.com^* ||performance.affiliaxe.com^* ||d1v6js7bjzmhoa.cloudfront.net^* windowsreport.com##div:nth-of-type(6) > p:remove() windowsreport.com##.single-content-section.text-center:nth-of-type(3) > div:remove() windowsreport.com##.code-block-2.code-block > .code-block-2.code-block > div:remove() !||areasure.info/tiefile$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||areasure.info^* ||softasm.com/wp-content/themes/softasm/img/softasm-bottom-download.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.tubeoffline.com###ADbox:remove() ||xcide.club^* ||supersmashflash2s.com^* ||vnyginzinvmq.com^* ||www.vnyginzinvmq.com/o.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||chjicha.club^* ||wegotmedia.co^* ||proteger-pc.site^* ||xfinity.fidelity-giveaways.com^* ||apitv.moviezarea.com^* ||subs.moviezarea.com/geoip$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||core.moviezarea.com/core/google-tag-manager.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||core.moviezarea.com/core/promotional.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||core.moviezarea.com/core/routing.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||core.moviezarea.com/core/tracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||core.moviezarea.com/params/ga-tracking-codes.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||core.moviezarea.com/promoCores/ZLP20/promoCore.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bill-hub.moviezarea.com^* !||cdn.logrocket.com/LogRocket.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.logrocket.com^* ||clientlog.portal.office.com^* !||rpulxcwmnuxi.com/H.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||rpulxcwmnuxi.com/uj.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.rpulxcwmnuxi.com/e.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nlc.adclickdirect.com^* !||node.adsoptimal.com/impression^* ||node.adsoptimal.com^* ||remote.vroptimal-3dx-assets.com/assets/adsoptimal-green-logo.v1.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rq.adtrackdirect.com^* !||www.ubosurveys.com/js/ab2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.ubosurveys.com/js/featherlight.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.ubosurveys.com/js/offerwall.4.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.ubosurveys.com/js/survey.14.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.ubosurveys.com^* ||www1.new-new-years.com^* !||www1.new-new-years.com/Redirect.a2b$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www1.new-new-years.com/fp.rb$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.fnjcriccyuna.com/hbcy.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.fnjcriccyuna.com^* ||soft98.onesignal.com/webPushIframe$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||teastreet.site^* !||assets.musictimes.com/common/js/stat/counter.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||assets.musictimes.com/common/js/stat/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||forum.flacmania.ru/platform/js/fdlogger/fdlogger.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||forum.flacmania.ru/platform/js/fdlogger/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||new17write.com/*/Tag.a1b$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||new17write.com^* !||partner.rozetka.com.ua/ret_pixels/cmatching.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||stat.musictimes.com/stat/counter.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stat.musictimes.com^* ||vogo-vogo.ru/register_ad_view$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||affbanner.comvtx.net^* !||als.baidu.com/dalog/logForW^* ||als.baidu.com/dalog/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||iclick.cm.admaster.com.cn^* ||tags.softarchive.la/*/showads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||v.admaster.com.cn/iclick/callback^* ||v.admaster.com.cn^* ||tieba.baidu.com/billboard/pushlog/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fex.bdstatic.com/hunter/alog/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||download-amigo.com^* ||207.154.193.68/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||207.154.200.63/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cpc.installred.ru^* ||sovtor.com/images/download.png$image ||sovtor.com/images/18.png$image ||sovtor.com/images/15.png$image free-music-free.890m.com##.header-bottom-second !||n240adserv.com/ads-sync.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||n240adserv.com/impression.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||n240adserv.com/js/show_ads_supp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||n240adserv.com^* ||cdn.waframedia8.com/wmedia/tags/xnotificationbar/xnotificationbar.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.waframedia9.com/wmedia/tags/xdirect/xdirect.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.clickmngr.com/watchnew.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||phonetrk.net^* !||poptracking.mobi/click.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||poptracking.mobi^* !||gphfgyrkpumn.com/fHxuAj.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gphfgyrkpumn.com^* !||advice-ads-cdn.vice.com/DE/viceIVW-CS.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||advice-ads-cdn.vice.com^* ||washingtonpost-d.openx.net^* ||kjmddlhlejeh.com^* !||www.kjmddlhlejeh.com/woyb.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.kjmddlhlejeh.com^* !||cloudfront.loggly.com/js/loggly.tracker-*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cloudfront.loggly.com^* ||adc.streamspread.com^* ||adrta.com^* ||amazon-affiliate-prod.perso.nile.works/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||epiv.cardlytics.com^* ||rumds.wpdigital.net/metrics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.yieldmanager.com/pixel^* !||cdn.adrta.com/aa.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.adrta.com/p.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.adrta.com^* ! The following rule was removed from the Bypass Paywalls Clean filter in version 3.6.3.3 for some reason. !||cdn.cxense.com/cx.js$script,domain=bizjournals.com,important !||cdn.cxense.com/cx.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.cxense.com/p1.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.cxense.com^* ||cjnoeafncyzb.com^* !||www.cjnoeafncyzb.com/xag.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.cjnoeafncyzb.com^* ||go.mpixeli.com^* ||mpixeli.com^* !||stats.variance.tv/piwik.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stats.variance.tv^* ||vjrpdagpjwyt.com^* ||d31qbv1cthcecs.cloudfront.net^* ||d5nxst8fruw4z.cloudfront.net^* ||redirecting.host^* !||xml.kds.media/click^* ||xml.kds.media^* ||a02a7df4841693c21710cbc00a324d41a.profile.dub2.cloudfront.net^* ||a22c123102b8e54c54b38e4c56da746bb.profile.lax-m.cloudfront.net^* ||a24739d71a1515e500fe91a91acbcde6c.profile.mad50.cloudfront.net^* ||a46bb38492d8a2622b0b5e9b845bc08fe.profile.hkg50.cloudfront.net^* ||a5213bea192d78784174ab195deb1661f.profile.yul62.cloudfront.net^* ||a5248034011f547edb6c03c4dfd490d26.profile.atl52.cloudfront.net^* ||a70f957d772af46ce68aabc2d4f229884.profile.nrt20.cloudfront.net^* ||a83446e90f0f348127da8cfee0690610c.profile.msp50.cloudfront.net^* ||a871d79cb97e1e0642632e1e8400b277a.profile.sea-m.cloudfront.net^* ||a8ecb228b6df3049589faa70f54c59332.profile.cdg50.cloudfront.net^* ||ab7661493e275fffb90352b34e89975fb.profile.lhr50.cloudfront.net^* ||ac338bed5a13100c8d21c1a1b59a765fb.profile.sfo-m.cloudfront.net^* ||ac548d416d0d7cd0a15c3a788505ef052.profile.atl52.cloudfront.net^* ||adf3ce8936fd5f0ff452f15b2dd43f9f8.profile.gru50.cloudfront.net^* ||api.dietlast.com/scripts/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||redirect.dietlast.com^* !||surgeprice.com/display/sG9mxGouGty3tMAod/dietlast.com/ariel.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||surgeprice.com^* ||www.lbfryfttoihl.com^* ||lbfryfttoihl.com^* ||www.qkpwdakgxynv.com^* ||qkpwdakgxynv.com^* !||a-nj.1rxntv.io/rtbasset/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||a-nj.1rxntv.io/rtbtrkd$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a-nj.1rxntv.io^* !||na.thenativepartner.com/rtb-macror$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||na.thenativepartner.com^* ||bestreviews.com^* !||send.bestreviews.com/js/trump.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||send.bestreviews.com^* ||serving-us-east.lyfemobile.net/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wnzxwgatxjuf.com^* ||www.wnzxwgatxjuf.com^* ||d240937yockcdo.cloudfront.net^* ||yastatic.net/pcode/adfox/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||i.blogads.com^* ||coed-d.openx.net^* !||www.computerworld.com/www/js/ads/jquery.lazyload-ad.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.computerworld.com/www/js/ads/gpt_includes.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.computerworld.com/www/js/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||994329-hb.adomik.com/ahba.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||994329-hb.adomik.com^* ||hb-endpoint-elb-307841411.adomik.com^* ||log.publisherdesk.com^* ||s.206ads.com^* ||digitaltrends-d.openx.net^* ||product.pcmag.com/CSE/Ping$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn2.lockerdome.com/_js/ajs.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.wendgames.com##div[id*="adsbygoogle"]:remove() www.wendgames.com##div[class*="adsbygoogle"]:remove() www.kuyhaa-android19.com##div[id*="tombolcrot"]:remove() www.kuyhaa-android19.com##div[class*="tombolcrot"]:remove() ||a.ria.ru/js/counter.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tags.publisherdesk.com/11746/hbwrapper.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||a.zdbb.net/core_id.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.zdbb.net^* ||scgyndrujhzf.com^* ||alexa.askfrank.net^* ||gaxmdcfkxygs.com^* ||www.gaxmdcfkxygs.com^* !||americascardroomcom.pokermanagement.com/Public/Redirect.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||americascardroomcom.pokermanagement.com^* ||record.secure.acraffiliates.com^* ||hntpbpeiuajc.com^* ||www.hntpbpeiuajc.com^* ||ymlbuooxppzt.com^* ||www.ymlbuooxppzt.com^* !||eue.collect-opnet.com/beacon.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||eue.collect-opnet.com^* ||userstats.audials.com^* ||registeraudials.com^* ||softwarecrackworks.com^* ||widgets.natify.io/tracking_code/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||widgets.natify.io/assets/tracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||telemetry.jivosite.com^* ||sarah.tnctrx.com^* !||d1culzimi74ed4.cloudfront.net/js/feedback/feedback.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d1culzimi74ed4.cloudfront.net/js/feedback/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||chalfoot.ml^* ||www.chalfoot.ml^* ||fullpremiums.com/adblock.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||geoloc18.whoaremyfriends.net/private/geoclock.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||geoloc18.whoaremyfriends.net:8080/private/geoloc/pointeur.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||geoloc18.whoaremyfriends.net^* ||geoloc*.whoaremyfriends.net^* !||srv.sayyac.net/sa.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||srv.sayyac.net^* ||akcdn.nativeadsfeed.com^* !||cpanel.nativeads.com/js/nativeads-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cpanel.nativeads.com/static/js/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cpanel.nativeads.com^* ||geazikjazoid.com^* ||koidt1wn.bid^* ||mttyfwtvyumc.com^* ||neayknle.net^* ||papi.mynativeplatform.com/pub2/report.json?name=ping$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||papi.mynativeplatform.com/pub2/error/log.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||papi.mynativeplatform.com/pub2/error/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static-analytics.nativeads.com^* ||tag.myadstack.net^* ||www.geazikjazoid.com^* ||www.mttyfwtvyumc.com^* ||www1.fashionizers.com^* ||www.headedsurvey.com^* ||www.publicleech.xyz/templates/plugmod/images/background_pm.gif$image www.publicleech.xyz###sd9d ||45.76.131.148/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wbqliddtojkf.com^* ||www.wbqliddtojkf.com^* ||www1.cold-cold-freezing.com^* !||mmptrack.com/click.track$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mmptrack.com^* ||www.odownloadx.com^* !||w7.myfileserver31.igg.biz^* !||jz.sharingthefiles31.igg.biz^* ||*.sharingthefiles31.igg.biz^* ||www.venturead.com/a/display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||counter9.freecounterstat.com/private/counter.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||counter9.freecounterstat.com^* ||dfujqyjifvoe.com^* ||www.dfujqyjifvoe.com^* ||s.arclk.net^* ||www.allinoneprofits.com^* ||2baksa.net/eempty.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vid.xcazin0.com^* ||win-legko.info^* ||www.2baksa.net/js/vivo.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||windows-check.com-----scanner.club^* ||qqvatwaqtzgp.com^* ||www.edgsscofljhc.com^* ||edgsscofljhc.com^* ||install.moviegoat.com^* ||4e9wpp17.stream^* !||xml.bikinisgroup.com/click$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xml.bikinisgroup.com^* ||ayabreya.xyz^* ||www.ayabreya.xyz^* ||cwxblalyyvbj.com^* ||www.cwxblalyyvbj.com^* ||alxsite.com^* ||serve.adworldmedia.com^* ||*.narod.ru/abnl/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css share-links.biz##.center.dark.w160.border1dark:remove() share-links.biz###i_out:remove() ||comcast.news-prizes.net^* ||ckryzlnafwyd.com^* ||www.ckryzlnafwyd.com^* ||www.zxqeycvsetkh.com^* ||zxqeycvsetkh.com^* ||torrent-finder.info/tmp/TorrentFinder_728x90_4.jpg$image ||ads.advertiseworld.com^* ||adserve.cpmba.se^* !||img.1rx.io/banners/ajtg.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||img.1rx.io/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mkyzqyfschwd.com^* ||www.mkyzqyfschwd.com^* ||mmofreegames.online/js/tracking_super_hot.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||post.advertiseworld.com^* ||computercheck.com-----update.site^* ||nklivofyjkbt.com^* ||www.nklivofyjkbt.com^* !||a.tribalfusion.com/p.media$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.tribalfusion.com^* !||cdnx.tribalfusion.com/media/*/creative.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdnx.tribalfusion.com/media/common/richmedia/html5/3.0/js/creative.3.0.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdnx.tribalfusion.com^* !w.datbaze.ru###banner34er45tg56:remove() w.datbaze.ru##div[id^="banner"]:remove() w.datbaze.ru##div[title^="banner"]:remove() ||cstatic.weborama.fr/js/adperf_publisher_api/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||livestatisc.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sync.teamrtb.net/x/adteam_sync.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sync3.adsniper.ru^* !||log.reformal.ru/st.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||log.reformal.ru^* ||trackeroc.ru/track.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||trackeroc.ru/misc/js/track_get.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||aimfar.solution.weborama.fr/fcgi-bin/external_tracking.fcgi$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||178.62.29.238/api/download/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||178.62.29.238/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adron-radnorraffee.tk^* ||w.pro.u0015890.plsk.regruhosting.ru/s/adv_banner.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||138.68.128.228/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||joinroot-page.ru^* ||trackeroc.ru/tor_.png$image ||genvipokiq.com^* ||i.dslr.net/css/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ivid-cdn.adhigh.net/adserver/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ivid-cdn.adhigh.net^* !||l.ooyala.com/analytics/iframe.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||l.ooyala.com/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||one-klick.ru/engine/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||one-klick.ru/rotation.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||one-klick.ru^* ||pokemgo.info^* ||privatelands.biz/tds/go.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||privatelands.biz/tds/got.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||player.ooyala.com/reporter.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||player.ooyala.com/sas/analytics$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xryvuxoy.top^* ||www.xryvuxoy.top^* !||s3.amazonaws.com/jh-df-28/dcvfr/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s3.amazonaws.com/jh-df-28/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||iu1xoe7o.com^* ||www.iu1xoe7o.com^* onhax.me###bottom-promo-abdload:remove() ||fpvfeyjrwlio.com^* ||www.fpvfeyjrwlio.com^* ||www.installadpro.com/indir.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.fullprogramlarindir.com##.single-alt.single-reklam:remove() ||qiqrguvdhcux.com^* ||www.qiqrguvdhcux.com^* ||chytrrvwvabg.com^* ||www.chytrrvwvabg.com^* !||limbotrack.com/track/click.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||limbotrack.com/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.tr553.com/InterYield/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.tr553.com/intent/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pickytime.com/00000bn/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pickytime.com^* ||www.urldelivery.com/watch.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||is3eho4w.download^* !||d32ffatx74qnju.cloudfront.net/scripts/js3caf.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d32ffatx74qnju.cloudfront.net^* ||uonj2o6i.loan^* ||play-g56.com^* !||go.lavastone.ga/apu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||go.lavastone.ga^* !||lavastone.ga/angular-cache.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lavastone.ga^* ||0112358.prxio.bid^* ||bamj630h.tech^* ||homepro.us^* !||homepro.us/PixelEventLogIframe.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||homepro.us/Services/PixelEventLog.ashx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vzmnvqiqgxqk.com^* ||www.vzmnvqiqgxqk.com^* !||banners.esm1.net/creative/runtime/6.0.0/edge.6.0.0.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||banners.esm1.net^* !||c1.rfihub.net/adChoicesJs/rfacNew.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c1.rfihub.net/adChoicesJs/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||clc.stackoverflow.com/impression.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css stackoverflow.com##div[class^="clc-cp-lb"]:remove() stackoverflow.com##div[class^="clc-cp-sb"]:remove() stackoverflow.com##div[class*="js-consent-banner"]:remove() stackoverflow.com##div[id="js-gdpr-consent-banner"]:remove() stackoverflow.com##div[id="noscript-warning"]:remove() ||cdn.sstatic.net/Js/modules/cookie-consent.en.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ping.smyte.com^* ||sexchatcam.site/cdn-cgi/nexp/dok3v=1613a3a185/cloudflare/rocket.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sexchatcam.site/cdn-cgi/pe/bag2$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sexchatcam.site/lib/ajax/lp_timing.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||software.muzychenko.net^* !||tracker.cdn-us-doubleverify.com/beacon.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tracker.cdn-us-doubleverify.com^* ||www.1-1ads.com/ads-sync.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.1-1ads.com/impression.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.1-1ads.com/js/show_ads_supp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||iagvkdeienla.com^* ||www.iagvkdeienla.com^* ||ulffbcunqnpv.com^* ||nm7xq628.click^* ||inceptionads.go2cloud.org^* ||computercheck.com-----update.pw^* ||yikkagezqsob.com^* ||www.yikkagezqsob.com^* ||dnjxoflvkvec.com^* ||www.dnjxoflvkvec.com^* !||w.graphiq.com/ad?_=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||w.graphiq.com/w/9YSRszOXNNr?data-uid=7d00c4a52b&data-campaign=39cb62b844&data-pub= ||w.graphiq.com^* !||cdn.advanseads.com/dnaFiles/js/slick-1.4.1/slick/slick.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.advanseads.com/dnaFiles/js/jquery-ui.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.advanseads.com^* ||mvnqwmnvnal.pw^* ||www.mvnqwmnvnal.pw^* ||jusidspar.com^* ||www.jusidspar.com^* ||fnro4yu0.loan^* ||www.fnro4yu0.loan^* ||earth-111.com^* ||www.earth-111.com^* ||www.4dbl0ck.info^* ||4dbl0ck.info^* !||www.zytpirwai.net/intermission/loadTargetUrl$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.zytpirwai.net/CEB21$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.zytpirwai.net/fkK$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.zytpirwai.net/scripts/jquery.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.zytpirwai.net/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.zytpirwai.net^* ||zytpirwai.net^* ||www.checkdomain.de/impressum/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||analytics.vendemore.com^* ||2ujo8ayw.racing^* ||www.2ujo8ayw.racing^* ||ch4ng3d.info^* ||www.ch4ng3d.info^* ||trk.suprclicks.com^* ||api.content-ad.net^* ||atpixelus.alephd.com/post_adtech$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.rawgit.com/zenorocha/clipboard.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||chqulqxfghdz.com^* ||www.chqulqxfghdz.com^* ||sfp.inetmakeover.net^* !||pixel.admedia.com/csync.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pixel.admedia.com^* ||trendi-configs.herokuapp.com^* ||www.srfizvugkheq.com^* ||srfizvugkheq.com^* ||uiyeiafffdex.com^* ||www.uiyeiafffdex.com^* ||xgzybmbwfmjd.com^* ||www.xgzybmbwfmjd.com^* ||ebook-dl.com/assets/images/83924550.png$image ||www.rgmgocplioed.com^* ||rgmgocplioed.com^* !||bar.love.mail.ru/jsonp/bar$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bar.love.mail.ru^* ||img.imgsmail.ru/cloud/js/WhatsUp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.mjanue.info^* ||mjanue.info^* ||xml.adjux.com^* ||config.playwire.com/*/websites/*/banner.json$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||shijiebeizuqiuwang.com^* ||www.shijiebeizuqiuwang.com^* !||static.user-red.com/engine/id.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.user-red.com^* ||sync.user-api.com^* ||synce.user-red.com^* ||taurus.cool/wp-content/plugins/popup-builder-platinum/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||taurus.cool/wp-content/plugins/quick-adsense-reloaded/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||thefoolproof.com/d/19327/popc-19327.com$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sync.user-clicks.com^* ||tds.exopay.ru^* ||redirectpopads.com^* !||ref.ppcmate.com/log^* ||ref.ppcmate.com^* ||serve.getpopunder.com^* ||n.ads1-adnow.com^* ||st-n.ads1-adnow.com^* ||st-n.ads3-adnow.com^* ||st-n.ads5-adnow.com^* !||static.terratraf.com/engine/id.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.terratraf.com^* ||go.lavastone.ml^* ||go.shetrack.com^* ||go.stirshakead.com^* ||ukxeudykhgdi.com^* ||www.ukxeudykhgdi.com^* ||img.softarchive.la/i/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.kkddlt2f.site^* ||kkddlt2f.site^* ||xml.admetix.com^* ||tm.sharethis.com/1/d/t.dhj$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||engine.smartadtags.com^* !||ww1097.smartadserver.com/config.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ww1097.smartadserver.com/track/compginc.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ww1097.smartadserver.com^* ||nfsqrijauncb.com^* ||www.nfsqrijauncb.com^* ||i.arianelab.com^* !||t.arianelab.com/v-1_0.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||t.arianelab.com^* ||ad.adnet.de^* !||384627-hb.adomik.com/ahba.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||384627-hb.adomik.com^* ||*-hb.adomik.com^* ||ads.themoneytizer.com^* !||tr.cloud-media.fr/t/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tr.cloud-media.fr^* ||www.wmwyq.xyz^* ||wmwyq.xyz^* ||get.torchbrowser.com^* ||www.torchbrowser.com^* ||torchbrowser.com^* !||www.1-1ads.com/ads^* ||www.1-1ads.com^* !||cks.mynativeplatform.com/pub2/web/cksync.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cks.mynativeplatform.com^* ||openload.co/cdn-cgi/pe/bag2^* ||papi2.mynativeplatform.com/pub2/dsppostimpressionpixel.json$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||papi2.mynativeplatform.com/pub2/error/log.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||papi2.mynativeplatform.com/pub2/impressionpixel.json$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||papi2.mynativeplatform.com/pub2/report.json$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ioatyggwaypq.com^* ||www.ioatyggwaypq.com^* www.skidrowgamesdownload.ml###scb-content:remove() ||newsforyou.thewhizmarket.co^* ||spartagames.net/wp-content/plugins/popup-by-supsystic/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||23.111.146.32/trend.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.lpiqwtsuduhh.com^* ||lpiqwtsuduhh.com^* ||linkconnector.com/uts_clickcounts.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.linkconnector.com/member/promotions/promopage.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.linkconnector.com/traffic_affiliate.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rwyupevy.top^* ||sophang8.com^* ||tienribwjswv.com^* ||www.tienribwjswv.com^* !||s3.amazonaws.com/fd-tt-11/sdfgd/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s3.amazonaws.com/fd-tt-11/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s2.tracemyip.org/tracker/lgUrl.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s2.tracemyip.org/tracker/logs.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s2.tracemyip.org/tracker/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||agent.extrawatch.com^* !||approvedvpsmatch.com/match/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||approvedvpsmatch.com^* ||fp.fraudmetrix.cn^* !||x0kua.voluumtrk3.com^* ||*.voluumtrk3.com^* !||7fcaw.voluumtrk2.com^* ||*.voluumtrk2.com^* !||foaa2.voluumtrk.com^* !||nefth.voluumtrk.com^* !||wphlj.voluumtrk.com^* !||7fcaw.voluumtrk.com^* !||r5oez.voluumtrk.com^* !||k6ej4.voluumtrk.com^* !||ol14x.voluumtrk.com^* !||tkw2k.voluumtrk.com^* !||b1d6z.voluumtrk.com^* !||py2so.voluumtrk.com^* !||yrclt.voluumtrk.com^* ||*.voluumtrk.com^* ||u1outl.com^* ||d0z4gwv7.webcam^* ||xpj137888.com^* ||linkconnector.com/js/uts_uid.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||linkconnector.com/tu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.linkconnector.com/ta.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.linkconnector.com/uts_lp.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||j880iceh.party^* ||affiliate.trk4.com^* !||ln.gamesrevenue.com/px1.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ln.gamesrevenue.com^* ||www.iece1vi.top^* ||diomedis.online^* ||mesterads.com^* ||onlinadverts.com^* ||test.martview.com/image_upload/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.nosteam.org.ro/expop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||accdn.lpsnmedia.net/api/account/*/configuration/le-campaigns/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||bitloader.info/link.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bitloader.info^* !||dl.fileclick.host/download.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dl.fileclick.host^* !||downloadn0w.bid/link.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||downloadn0w.bid^* !||filemob.info/link.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||filemob.info^* !||kingsfile.club/link.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||kingsfile.club^* ||www.mobinuke.com/smartb.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.mobinuke.com##.ad_global_header:remove() ||dl.indifile.download^* !||76.9.4.47/cgi-bin/traffic/process.fcgi$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||76.9.4.47/in/pop.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||76.9.4.47/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.mysagagame.com^* ||mysagagame.com^* ||refterdown.com^* ||theih1w.top^* ||toadgo.com^* ||transferhit.com^* !||lptag.liveperson.net/tag/tag.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lptag.liveperson.net^* ||abnouneuuxbozmt.net^* ||www.abnouneuuxbozmt.net^* ||ay.gy/static/js/advert.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||rec.getsmartlook.com/recorder.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rec.getsmartlook.com^* !||pings.reembed.com/impression^* ||pings.reembed.com^* ||www.pirateplaygames.com.br/b/stats^* ||txjdgm53.win^* !||static.fraudmetrix.cn/fm.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.fraudmetrix.cn^* ||statsy.net/a.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.baixargamestorrents.com###fanbox www.baixargamestorrents.com###fan-exit www.baixargamestorrents.com###fanback ||www.baixargamestorrents.com/wp-content/plugins/mini-popup/images/bg.png$image ||go.shareaholic.com^* ||dsms0mj1bbhn4.cloudfront.net/assets/pub/shareaholic.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.intercambiosvirtuales.org###seguidores !||www.adturtle.biz/LP_TA/index.cfm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adturtle.biz/LP_TA/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.pirateplaygames.com.br###popup ||6g3am6pr.website^* ||btnova.org/top/json_log$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.360.cn/so/zz.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||torrentdownload.usbypass.accountant/cdn-cgi/nexp/dok3v=1613a3a185/cloudflare/rocket.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mlmjxddzdazr.com^* ||www.mlmjxddzdazr.com^* ||zenvpn.net/static/img/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||zenvpn.net/static/js/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||servicer.marketgid.com^* ||serve.advertiseworld.com^* ||kge1ru01.science^* !||arpanet1957.com//plix/scaner.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||arpanet1957.com^* ||tred.committeeincrease.pw^* ||gret.daughterrun.pw^* ||get.unveneratedunco.bid^* ||prk.roverinvolv.bid^* ||g0download.cricket^* ||stats.webleads-tracker.com^* ||df73178a.top^* ||www.df73178a.top^* ||ww92.bestsoft4u.net^* ||lxpl6t0t.cricket^* ||rgmechanics.slrtechnologies12.netdna-cdn.com/wp-content/plugins/uji-popup/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.zkcdn.net/ados.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||searchlff.com/content/downloadmodal/chrome_oneclickajax.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||searchlff.com/oneclick/getmodalAjax^* ||searchlff.com^* ||www.gllkdkxygckb.com^* ||gllkdkxygckb.com^* ||www.kyzhecmvpiaw.com^* ||kyzhecmvpiaw.com^* ||www.utorrent.com/scripts/tracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||360switch.net/b.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||360switch.net^* ||heatre.info^* !||heatre.info/popunder.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||loginfaster.com^* ||a80zha8c.webcam^* ||anx.mindspark.com/tr.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||8hykthze.cricket^* ||www.8hykthze.cricket^* ||www.cbcx8t95.space^* ||cbcx8t95.space^* ||epqzviy9.bid^* ||www.epqzviy9.bid^* ||www.j880iceh.party^* ||jesico.xyz^* ||www.jesico.xyz^* ||www.k9anf8bc.webcam^* ||www.kd2244.com^* ||kd2244.com^* ||www.kge1ru01.science^* ||www.lasnoticiaslucha.info^* ||lasnoticiaslucha.info^* ||www.lxpl6t0t.cricket^* ||www.onderlea.info^* ||onderlea.info^* ||www.openclose.click^* ||openclose.click^* ||zlockerpqts67.xyz^* ||www.zlockerpqts67.xyz^* !||cdn.welcome.pussysaga.com/grevenue/js/exit.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.welcome.pussysaga.com^* ||546441065465205466045416051035046520.win^* ||menswatchcentral.com/images/uploading/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||menswatchcentral.com/shop/adplugin/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||smrt-view.com^* ||ssp-nj.webtradehub.com^* ||us-e-node13.rtbadtrading.com^* ||us-nj-e28.bidderrtb.com^* ||lhtcdng.com^* ||ssp-nj1.webtradehub.com^* ||inv-form.2refund-form.apple11.02itunesapp.co.uk^* ||www.apple11.02itunesapp.co.uk^* ||apple11.02itunesapp.co.uk^* ||04dn8g4f.space^* ||content.synapsys.us/embeds/realestate/disaster/partner.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css /^https?:\/\/www\.yahoo\.com\/px\.gif\?(&?adslots=|&?adurl=|&?ad_network_|&?expandable_ad_)/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||yahoo.com/lib/metro/g/myy/advertisement_$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||content.synapsys.us/l/n/igloo.php?adW=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||content.synapsys.us/t/tracker.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||content.synapsys.us/t/1436337860/tracker-pb-min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||content.synapsys.us/t/*tracker$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.krxd.net/partnerjs/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.sun-sentinel.com##div[id^="trb_ad_"] www.sun-sentinel.com##div[class^="trb_bottomAdBanner"] www.sun-sentinel.com##div[class^="trb_gptAd"] www.sun-sentinel.com##div[id^="trb_sntAd"] cheatengine.securedsearch.org##.content !cheatengine.securedsearch.org###bgpage:nth-of-type(2) cheatengine.securedsearch.org##div[id^="bgpage"] !||adexce.net/network/data.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adexce.net^* !||telemetry.gfe.nvidia.com/GFE/feedback$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||telemetry.gfe.nvidia.com^* ||adrunnr.com^* !||show-fanatic.com/dalton/daltonB/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||show-fanatic.com^* !||static.show-fanatic.com/js/fingerprint2.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.show-fanatic.com^* ||updatesoftware.topeasysofttoigetalwaysfree.website^* ||www.howtoupdate156322.bid^* !||lvodomi.info/visitors/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lvodomi.info^* !||therse.info/popunder.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||therse.info^* ||yawner.us^* ||www.yawner.us^* ||28d84zg.xyz^* ||www.28d84zg.xyz^* ||divertingly.pw^* ||www.divertingly.pw^* ||www.games-pc.ro/descpopup.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css fly.nosteam.ro###_bd fly.nosteam.ro###fade ||fly.nosteam.ro/1market.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||subyshare.com/js/countdown.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||subyshare.com/js/jquery.counterup.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cloudyfiles.com/js/countdown.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cloudyfiles.com/ree/rightClick/rightClick.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cloudyfiles.com/ree/rightClick/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nnbestmblotl.com^* ||www.nnbestmblotl.com^* ||mrkzgpbaapif.com^* ||www.mrkzgpbaapif.com^* ||deleret.com^* ||fs.taketheboxist.ru^* ||taketheboxist.ru^* ||legs.aftermathteam.pw^* ||get.uencedrefortifica.bid^* ||selbow.info^* ||www.selbow.info^* ||clicks.istripper.com^* ||istri.it^* ||andreds.info^* ||www.andreds.info^* ||www.vsgherxdcfon.com^* ||vsgherxdcfon.com^* !||shink.in/js/showads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css shink.in###disable ||screenaddict.thewhizproducts.com^* ||hlu9tseh.men^* ||www.hlu9tseh.men^* hackforumt.com##center:nth-of-type(1) > span > a[href="https://www.seo-protools.com"] > .bannerImageSpan hackforumt.com##center:nth-of-type(2) > span > a[href="https://www.seo-protools.com"] > .bannerImageSpan ||chromecleaner.pro^* !||7719de.get.abisbrowserus.info^* ||*.get.abisbrowserus.info^* !||1487985524.14hq5xs.3818127f.gabusbrowseros.info^* !||14hq5xs.3818127f.gabusbrowseros.info^* ||*.gabusbrowseros.info^* ||jouthad.com^* ||toadgo.net^* ||www.gfxshare.org/wp-content/plugins/wp-advertize-it/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.pirateddl.pw/pop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.piratetorrent.pw/pop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||downloadsmonster.onesignal.com/webPushIframe$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||downloadsmonster.onesignal.com^* !||fasttoss.com/d/p/www.cnet-download-theme.cf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fasttoss.com^* kickasstorrents.to##.tcc_mb:remove() ||www.gfxtraz.com/images/downloadnow.gif$image ||www.gfxtraz.com/uploads/99.usenet.gif$image www.freedownloadify.org##.header-ad:remove() ||instantwinner764.club^* ||404.safedog.cn/sitedog_stat_new.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||segments.company-target.com/log$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||segments.company-target.com^* !||b.company-target.com/ect.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||b.company-target.com^* !||api.company-target.com/api/v2/ip.json$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.company-target.com^* !blocks PowerDVD online activation ||cap.cyberlink.com^* bc.vc##iframe[src="http://bc.vc/pages/download.php"]:remove() bc.vc##.fly_fram:remove() ||10-download.com/uu/adframe.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||35hn7f37.faith^* ||debridnet.com/adframe.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||go.appupdate.center/global/index2.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||go.appupdate.center^* !||go.bcvc.mobi/go.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||go.bcvc.mobi^* ||shink.in/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||turkdown.com/antblock.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wabxsybclllz.com^* ||www.wabxsybclllz.com^* ||www.ditouyldfqgt.com^* ||ditouyldfqgt.com^* ||www.rmbilhzcytee.com^* ||rmbilhzcytee.com^* ||urlst.me/vendor/clipboard.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||j46gamesonden.com^* ||wbxkty3l.website^* ||ds.moviegoat.com^* ||kpc4jpbm.date^* ||adxite-ads.com^* extratorrent.cc##.axhEZzFfLibF9ut artmens.ru##.bannertop.entry-header ||trandsey.info^* !||trandsey.info/popunder.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.uncumlzowtkn.com^* ||uncumlzowtkn.com^* ||mellowads.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mellowads.com/img/minibrand.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mellowads.com/view/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mellowads.com/js/popunder^* ||mellowads.com/pop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mellowads.com/pop/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||moto-ekip.net/protected/runtime/upgrade/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||trimmer.droptrain.pw^* ||droptrain.pw^* ||ga.nsimg.net/icf-analytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gtrk.s3.amazonaws.com^* ||m2.nsimg.net/cache/js/bundle/naiad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s3.amazonaws.com/trk.cetrk.com^* ||trk.cetrk.com^* !||uu.cyberlink.com/analytics/uu.jsp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||uu.cyberlink.com/analytics/uu_js.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||uu.cyberlink.com/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.waframedia8.com/wmedia/tags/xpopup/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sportsaddict.thewhizproducts.com^* ||ubercpm.com/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ubercpm.com/javascripts/iframe.tracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||url.ht/vendor/clipboard.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.ofmuojegzbxo.com^* ||ofmuojegzbxo.com^* ||www.vuysooqimdbt.com^* ||vuysooqimdbt.com^* ||securepccure.com^* ||haggilder.com^* ||tvhero.thewhizmarketing.com^* ||my-pc-cleaner.org^* ||cdn.my-pc-cleaner.org^* ||track.bcvc.mobi^* ||randomtech.top^* ||www.randomtech.top^* ||hugotech.club^* ||xml.clickredirection.com^* ||mswiner2rr0x022317.club^* ||www.mswiner2rr0x022317.club^* !||onlineamazonies.com/register.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||onlineamazonies.com^* !||secure.1601rd17.xyz/performance/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||secure.1601rd17.xyz^* ||www.1601rd17.xyz^* ||1601rd17.xyz^* ||advancepctools.info^* ||afw.vietnamcarrier.club^* ||ap76rmx3.accountant^* ||c.f5mtrack.com^* ||cdn.advancepctools.info^* ||go.ppixelm.com^* ||ppixelm.com^* ||www.advancepctools.info^* ||mydisplay.ctfile.com/popview.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$subdocument ||massdl.com/templates/MassDL/images/banner.png$image ||s3.amazonaws.com/gumroad/files/8287182323579/5a04217a9fd74b7b96bc17be0700213a/original/gumroad.jpg$image !||cds.w6x3h2w2.hwcdn.net/ads/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cds.w6x3h2w2.hwcdn.net/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||0914.global.ssl.fastly.net/ad/img/x.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||0914.global.ssl.fastly.net/ad/script/x.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||0914.global.ssl.fastly.net/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||7fcaw.redirectvoluum.com^* ||7fcaw.trackvoluum.com^* ||buitxcrnucyi.com^* ||WWW.buitxcrnucyi.com^* ||d5i9o0tpq9sa1.cloudfront.net^* ||images.intellitxt.com^* ||kyveduvdkbro.com^* ||WWW.kyveduvdkbro.com^* ||losangeles_cbslocal.us.intellitxt.com^* !||uim.tifbs.net/js/4006.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||uim.tifbs.net^* ||services.babator.com/tags$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.decenthat.com^* !||helper-stats.wondershare.com/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||helper-stats.wondershare.com^* ||cbs.wondershare.es/jslibs/track.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||explanners.info^* ||pixel.keywee.co^* ||dc8xl0ndzn2cb.cloudfront.net/js/huffingtonpost/v0/keywee.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.shopperstab.com/tst/scripts/ntlptracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||t.mediasafe.online^* ||zftgljkhrdze.com^* ||www.zftgljkhrdze.com^* !||a.impactradius-go.com/display-ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.impactradius-go.com^* ||ads.sahandar.com^* !||cdn.onesignal.com/sdks/OneSignalSDK.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.onesignal.com^* !||downloadly.onesignal.com/webPushIframe$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||downloadly.onesignal.com^* !||static.nextads.ir/script/visit.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.nextads.ir^* ||free.gamingwonderland.com^* ||gamingwonderland.com^* ||www.gamingwonderland.com^* ||gamingwonderland.dl.myway.com^* ||www.spbflxvnheih.com^* ||spbflxvnheih.com^* ||contentpap.info^* !||snap.licdn.com/li.lms-analytics/insight.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||snap.licdn.com/li.lms-analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||snap.licdn.com^* ||sjs.bizographics.com/insight.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.ccefzhxgobjm.com^* ||ccefzhxgobjm.com^* !||beacon.gu-web.net/count/pv.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||beacon.gu-web.net^* ||support.microsoft.com-bulletin.info^* ||cs.rin.ru/counter/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||giyupoeynkfx.com^* ||www.giyupoeynkfx.com^* ||bqptlqmtroto.com^* ||www.bqptlqmtroto.com^* ||loxmetwdjrmh.com^* ||www.loxmetwdjrmh.com^* ||metal.armyshape.bid^* ||www.oubriojtpnps.com^* ||oubriojtpnps.com^* ||efukznkfmrck.com^* ||www.efukznkfmrck.com^* !||9789222.com/away.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||9789222.com^* ||www.9789222.com^* ||www.trandsey.info^* ||turn.robinrifle.bid^* ||get.nregulation.bid^* ||v2cigs.whoson.com^* ||netline-d.openx.net^* !||www.justduckthis.com/AF_TA/rel/index.cfm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.justduckthis.com/AF_TA/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.2013zone.com/fastdownload/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.jsdelivr.net/autocomplete.js/0/autocomplete.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.jsdelivr.net/algoliasearch/3/algoliasearch.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||persary.info^* ||www.persary.info^* ||lanotund.com^* ||www.lanotund.com^* idope.se###VPNAdvert !||secure-ds.serving-sys.com/BurstingRes/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||secure-ds.serving-sys.com^* ||c.tmstrack.com^* rustorka.com##.nnuZgpEKdbW rustorka.com##a[href^="http://c.tmstrack.com/"] rustorka.com##.bfcHRlgWlisIIgA rustorka.com##.js-rotator-container.admachina-banner rustorka.com##div[id^="M343858Composite"] ||www.rcnkflgtxspr.com^* ||rcnkflgtxspr.com^* krutor.org##a[href^="//bgrndi.com/c/sw.php"] krutor.org##vcav0rcydd !||bgrndi.com/c/sw.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bgrndi.com^* ||experiend.info^* ||www.experiend.info^* ||cdn.fandommetrics.com^* ||query.fandommetrics.com^* ||gedmodsxbebd.com^* ||www.gedmodsxbebd.com^* ||xakmsoaozjgm.com^* ||www.xakmsoaozjgm.com^* ||assivernst.info^* ||www.assivernst.info^* ||nottoke.com^* ||www.currentupdateconcepts.com^* ||currentupdateconcepts.com^* appleinsider.com##div[class="ad container"]:remove() appleinsider.com##div[id^="div-gpt-ad-"]:remove() appleinsider.com##div[style="text-align:center;border-radius:0;background-color:var(--ad-background-color);padding:1em 0;min-height:250px;"]:remove() appleinsider.com##iframe[name]:matches-attr(name=/^__\S+Locator$/):remove() appleinsider.com##iframe[src^="https://events.release.narrativ.com/api/"]:remove() appleinsider.com##template[id="river-ad-template"]:remove() appleinsider.com##script[id="prebid-mid-article-ad"]:remove() appleinsider.com##+js(remove-node-text, script, /rad\.insertAd\(/gm) appleinsider.com##+js(set-constant, rad.load, noopFunc, complete) appleinsider.com##+js(set-constant, rad.insertAd, noopFunc, complete) appleinsider.com##+js(remove-node-text, script, /__admiral_getConsentForGTM/gm) appleinsider.com##+js(aopr, n.__admiral_getConsentForGTM) appleinsider.com##+js(aopw, adLayer) ||www.infoworld.com/www/js/analytics/tracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.infoworld.com/www/js/analytics/brandAnalytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.infoworld.com/ss/player/overlay-iframe.html?ac=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,cssa.collective-media.net/adj/idge.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.infoworld.com/modules/DCP/custom/doubleclick_ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.infoworld.com/www.idge/js/thm_pre.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.infoworld.com/www.idge/js/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.infoworld.com/www/js/ads/gpt_includes.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.infoworld.com/www/js/ads/jquery.lazyload-ad.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.infoworld.com/www/js/ads/narf_prebid.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.infoworld.com/www/js/ads/prebid_gpt_launcher.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.infoworld.com/www/js/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.infoworld.com/wp-content/client-mu-plugins/idg-third-party/dist/scripts/apstag_library.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.infoworld.com##div[class^="advert__cont"]:remove() www.infoworld.com##div[data-ad-template]:remove() www.infoworld.com##div[id="catfish"]:remove() www.infoworld.com##div[id="gpt-skin"]:remove() www.infoworld.com##div[id="mobilewelcomead"]:remove() www.infoworld.com##div[id="skinAdTarget"]:remove() www.infoworld.com##div[id="superadunit"]:remove() www.infoworld.com##div[id="oc_ad_1"]:remove() www.infoworld.com##div[id="gpt-overlay"]:remove() www.infoworld.com##div[id^="amzn-assoc-ad-"]:remove() www.infoworld.com##iframe[name]:matches-attr(name=/^__\S+Locator$/):remove() www.infoworld.com##iframe[src^="//www.googletagmanager.com/"]:remove() www.infoworld.com##+js(set-constant, adLayer, []) www.infoworld.com##+js(aopr, adLayer) www.infoworld.com##+js(aopw, adLayer) www.infoworld.com##+js(set-constant, _comscore, []) www.infoworld.com##+js(aopr, _comscore) www.infoworld.com##+js(aopw, _comscore) www.infoworld.com##+js(set-constant, loadGPT, noopFunc) www.infoworld.com##+js(set-constant, window.canRunAds, trueFunc) www.infoworld.com##+js(set-constant, insiderSignedIn, true) www.infoworld.com##+js(set-constant, aaxEnabled, false) www.infoworld.com##+js(set-constant, selectedAds, []) www.infoworld.com##+js(set-constant, dataLayer, []) www.infoworld.com##+js(set-constant, cx, "") www.infoworld.com##+js(set-constant, gcse, {}) www.infoworld.com##+js(set-constant, calcAdHeight, noopFunc) www.infoworld.com##+js(set-constant, isEU, false) www.infoworld.com##+js(set-constant, isEuVisitor, false) www.infoworld.com##+js(set-constant, checkIfInEU, falseFunct) www.infoworld.com##+js(set-constant, checkCCPAOptOut, trueFunct) www.infoworld.com##+js(set-constant, checkConsent, trueFunct) www.infoworld.com##+js(set-constant, consentOk, true) www.infoworld.com##+js(set-constant, idgus, {}) www.infoworld.com##+js(set-constant, window.idgus, {}) www.infoworld.com##+js(aopr, idgus) www.infoworld.com##+js(aopw, idgus) www.infoworld.com##+js(set-constant, consentedCustomVendors, []) www.infoworld.com##+js(set-constant, consentedPurposes, []) www.infoworld.com##+js(set-constant, vendorGrants, {}) www.infoworld.com##+js(set-constant, videoPlayerBidding, false) www.infoworld.com##+js(set-constant, amazonAPSEnabled, false) www.infoworld.com##+js(set-constant, custAdTag, "") www.infoworld.com##+js(set-constant, PRIVACY_MANAGER_IDENT, 0) www.infoworld.com##+js(set-constant, STORE_ACCESS_ON_DEVICE, "") www.infoworld.com##+js(set-constant, SELECT_PERSONSALISED_CONTENT_ID, "") www.infoworld.com##+js(set-constant, SELECT_PERSONSALISED_ADS_ID, "") www.infoworld.com##+js(set-constant, SELECT_BASIC_ADS_ID, "") www.infoworld.com##+js(set-constant, CREATE_PERSONALISED_ADS_PROFILE_ID, "") www.infoworld.com##+js(set-constant, CREATE_PERSONALISED_CONTENT_PROFILE_ID, "") www.infoworld.com##+js(set-constant, MEASURE_ADS_PERFORMANCE_ID, "") www.infoworld.com##+js(set-constant, MEASURE_CONTENT_PERFORMANCE_ID, "") www.infoworld.com##+js(set-constant, APPLY_MARKET_RESEARCH_ID, "") www.infoworld.com##+js(set-constant, DEVELOP_AND_IMPROVE_PRODUCTS_ID, "") www.infoworld.com##+js(set-constant, SOCIAL_MEDIA_CONSENTS_PURPOSE_ID, "") www.infoworld.com##+js(set-constant, GOOGLE_AD_MANAGER_VENDOR_ID, "") www.infoworld.com##+js(set-constant, GOOGLE_ANALYTICS_VENDOR_ID, "") www.infoworld.com##+js(set-constant, TWITTER_VENDOR_ID, "") www.infoworld.com##+js(set-constant, FACEBOOK_VENDOR_ID, "") www.infoworld.com##+js(set-constant, LINKEDIN_VENDOR_ID, "") www.infoworld.com##+js(set-constant, BLUECONIC_VENDOR_ID, "") www.infoworld.com##+js(acs, /IDG\.GPT\.addDisplayedAd\(/) www.infoworld.com##+js(acs, /IDG\.GPT\.displayGoogleTagSlot\(/) www.infoworld.com##+js(acs, /lazyLoadAd\(/) www.infoworld.com##+js(trusted-set-constant, countryCode, "us") ! trusted-set is necessary for the following rule since the value must be a string not a boolean. www.infoworld.com##+js(trusted-set-constant, adBlockStatus, 'false') www.infoworld.com##+js(set-constant, window._sp_analytics, {}, complete) www.infoworld.com##+js(abort-on-property-read, window._sp_analytics) www.infoworld.com##+js(abort-on-property-write, window._sp_analytics) www.infoworld.com##+js(set-constant, window.__gpp_addFrame, noopFunc) www.infoworld.com##+js(set-constant, window.__gpp_stub, noopFunc) www.infoworld.com##+js(set-constant, window.__gpp_msghandler, noopFunc) www.infoworld.com##+js(trusted-replace-node-text, script, /"adBlockerEnabled":\s?true/gm, "adBlockerEnabled": false) www.infoworld.com##+js(trusted-replace-node-text, script, /"ccpaOptedOut":\s?"false"/gm, "ccpaOptedOut": "true") www.infoworld.com##+js(trusted-replace-node-text, script, /"adSuppression":\s?"false"/gm, "adSuppression": "true") www.infoworld.com##+js(trusted-replace-node-text, script, /window\.__gpp_addFrame\("__gppLocator"\)\);/gm, null;) ! The following rule applies to the inline script multiple times. www.infoworld.com##+js(trusted-replace-node-text, script, /"template":\s?"[a-zA-Z]+"\,"disabled":\s?false/gm, "template":"banner","disabled":true) ||lzawbiclvehu.com^* ||www.lzawbiclvehu.com^* ||api-cache.adsnative.com^* !||cdn.boomtrain.com/analyticstrain/heat-street/analyticstrain.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.boomtrain.com/analyticstrain/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.jaleco.com/js/ads_custom.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rffjopgiuhsx.com^* ||www.rffjopgiuhsx.com^* ||tvammzkprvuv.com^* ||www.tvammzkprvuv.com^* !||cdn1.img.sputniknews.com/min/js/libs/adriver.core.2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn4.img.sputniknews.com/min/js/libs/adfox.asyn.code.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn*.img.sputniknews.com/min/js/libs/adriver.core.2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn*.img.sputniknews.com/min/js/libs/adfox.asyn.code.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cm.optaim.com^* !||cms.tanx.com/t.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cms.tanx.com^* ||en.softonic.com/ad?zone=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||exocortex.github.io/marketing/clara-viewer-ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||f.ora.tv/j/adframe.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||news.grabien.com/ads/addition_right.inc.html !||news.grabien.com/ads/footer.inc.html !||news.grabien.com/ads/idealmedia.inc.html !||news.grabien.com/ads/newsmax_right.inc.html !||news.grabien.com/ads/story_header.inc.html !||news.grabien.com/ads/story_right.inc.html ||news.grabien.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||members.tripod.com/adm/interstitial/remotescam.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||members.tripod.com/adm/interstitial/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s3.amazonaws.com/blender-artists-assets/adverts/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.smi2.net/static/adpreview_v2/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ssp.deployads.com^* ||events.api.boomtrain.com/event/track?id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sync.sharethis.com/adnxs^* !||www.soft112.com/ads/delivery/asyncjs.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.soft112.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||thegamecreators.ladesk.com/scripts/track.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tags-cdn.deployads.com/a/dailymotion.com.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tags-cdn.deployads.com/im.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tags-cdn.deployads.com^* ||svcs.tripod.lycos.com/svcs/increment_page_counter.jsp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||target.smi2.net/rawstat/bodyadpreview/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cm.e.qq.com/cm.fcg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cm.e.qq.com^* ||cm.fastapi.net^* !||cm.qtmojo.com/pixel^* ||cm.qtmojo.com^* !||cm.vamaker.com/pixel^* ||cm.vamaker.com^* ||www.game-blog.to/wp-content/plugins/ajax-hits-counter/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||eventtracking.omarsys.com^* ||www.sunmaker.com/de/online-casino-und-sportwetten$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vars.hotjar.com^* !||sunmaker-frontapi.cherrytech.com/settings/countries?brand=sunmaker.desktop&locale=de$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||sunmaker-frontapi.cherrytech.com/settings/seo?brand=sunmaker.desktop&locale=de$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sunmaker-frontapi.cherrytech.com^* ||counter.pr-cy.ru^* ||soundpark.pw/js/banner.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tapatalkbidder-d.openx.net^* ||www.odpjcjreznno.com^* ||odpjcjreznno.com^* ||www.udemy.com/staticx/udemy/js/bower_components/zeroclipboard/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tljikqcijttf.com^* ||www.tljikqcijttf.com^* ||helpdesk.com-supporthelphelppc.pro^* !||todaytopnewsonline.com/popads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||todaytopnewsonline.com^* ||track.statstrackingtool.com^* ||www.ukffjaqtxhor.com^* ||ukffjaqtxhor.com^* spartagames.net###ppsPopupBgOverlay ||click.a19.xmlv3.razula.com^* !||search.semp.net/click$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||search.semp.net^* ||www.babybugmagazine.com^* ||babybugmagazine.com^* !||www28.geoads.com/cya.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www28.geoads.com/cyaf.ashx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www28.geoads.com^* ||stephanie.tnctrx.com^* ||lp.blpmovies.com^* ||ads.people-group.net^* ||sympatrial.info^* ||educes.info^* ||www.educes.info^* ||www.nahvyfyfpffm.com^* ||nahvyfyfpffm.com^* ||xml.zipzipsearch.com^* ||email.traversedlp.com^* ||emailretargeting.com^* ||lmjjenhdubpu.com^* ||www.lmjjenhdubpu.com^* !||mykaren.ru/protJS/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mykaren.ru^* ||purige.ru^* !||rutrk.org/iframe/adlabs-topic-2.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||rutrk.org/iframe/kadam-240x120-2.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rutrk.org/iframe/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||vogo-vogo.ru/rotator/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||vogo-vogo.ru/kadam.base.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vogo-vogo.ru^* ||ajax.rutracker.eu.org/handler_static/swf/game.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ajax.rutracker.eu.org/protJS/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||latest-441867.dnenitsa.info^* ||quizzitch.net^* ||adexten.com^* ||cdn.adperformance.netdna-cdn.com^* ||cdn.rutracker.eu.org/core.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xbfk51p7.review^* ||www.mmcltttqfkbh.com^* ||mmcltttqfkbh.com^* !||anizan.opole.pl/go.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||anizan.opole.pl^* ||1.bp.blogspot.com/-zp5YV6OrK7U/Uzz0HgO43YI/AAAAAAAABME/4R3n-7-2p-8/s1600/softwarephreaker.gif$image ||beeimg.com/images/a84037626542.png$image ||www.fjcvncxrmmru.com^* ||fjcvncxrmmru.com^* ||ubopxbdwtnlf.com^* ||www.ubopxbdwtnlf.com^* ||www.polygon.com/services/entry_stats$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.polygon.com##div[data-concert="article_sponsorship"]:remove() www.polygon.com##div[data-concert*="_leaderboard"]:remove() ||sbnationbidder-d.openx.net^* !||static.yieldmo.com/ym.m1.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static.yieldmo.com/ym.m2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static.yieldmo.com/ym.m3.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.yieldmo.com^* ||tags.api.umbel.com^* ||atrafficreseller.com/affiliates/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css onhax.me###top-promo-dload ||csyngxtkifrh.com^* ||www.csyngxtkifrh.com^* ||umnsvtykkptl.com^* ||www.umnsvtykkptl.com^* ||recipepair.com^* ||cdn.grmtas.com/js/prebid_v17_gourmetads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tgijoezvmvvl.com^* ||www.tgijoezvmvvl.com^* ||www1.recipepair.com^* ||jtbzb.voluumtrk.com^* ||m.servedby-buysellads.com^* !||h.wikia-beacon.com/__track/view^* ||h.wikia-beacon.com^* ||marketing.technologyadvice.com/acton/bn/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||marketing.technologyadvice.com/*/acton/bn/tracker/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||marketing2.technologyadvice.com/acton/bn/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||marketing2.technologyadvice.com/*/acton/bn/tracker/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||gauge.lrcontent.com/v1/shareTrackClient.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gauge.lrcontent.com^* ||hdwn.siomi.tech^* haxdown.com##.bannersinglefot:nth-of-type(1) > a[href^="http://hdwn.siomi.tech/"]:remove() haxdown.com##.bannersinglefot:nth-of-type(2) > a[href^="http://hdwn.siomi.tech/"]:remove() ||104.198.138.230/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||apple-center-notification.com^* ||served.tequilan.club^* ||www1.sportsreporttoday.com^* ||www1.thedeadbolt.com^* !||api.faranesh.com/v1/ads/iframe$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.faranesh.com/v1/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||app.medyanetads.com/dfp2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||app.medyanetads.com^* !||1ff98d3f0df77fc9fdedf4209cc4db4cc1844a69.cws.conviva.com^* !||885e2dd94adb263c2321d2d0f3778d18523bce4a.cws.conviva.com^* !||a6709203f34992a5095d2bc7ceaf2ec504f651a8.cws.conviva.com^* !||e12872de91aaca7a39095801bdf5f168d87912fa.cws.conviva.com^* !||fc8dbfdc5da519f576628f619306a357f31bd006.cws.conviva.com^* !||cws.conviva.com/cws_iframe.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cws.conviva.com^* ||kumekqeccmob.com^* ||www.kumekqeccmob.com^* ||my.vmware.com/group/vmware/dynaTraceMonitor$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||my.vmware.com/web/vmware/dynaTraceMonitor$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vgckzqudqhfr.com^* ||www.vgckzqudqhfr.com^* ||www.chip.com.tr/reklam/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.giveawayoftheday.com/log.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.play-old-pc-games.com/abd/adserver/adlogger_tracker.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.play-old-pc-games.com/abd/adserver/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.play-old-pc-games.com/?wordfence_logHuman=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s2128.t.eloqua.com/visitor/v200/svrGP^* !||s2128.t.eloqua.com/visitor/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||*.t.eloqua.com/visitor/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||now.eloqua.com/visitor/v200/svrGP.aspx^* !||now.eloqua.com/visitor/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||secure.p04.eloqua.com/visitor/v200/svrGP.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||secure.p04.eloqua.com/visitor/v200/svrGP$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.eloqua.com/visitor/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static.criteo.net/js/ld/publishertag.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static.criteo.net/js/ld/publishertag.prebid.*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static.criteo.net/js/ld/ld.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static.criteo.net/js/px.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static.criteo.net/design/dt/$3p,image ||static.criteo.net^* ||www.cash-duck.com/AF_TA/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||silrfbopbobw.com^* ||www.silrfbopbobw.com^* ||9icmzvn6.website^* ||unffpgtoorpz.com^* ||www.unffpgtoorpz.com^* ||yfzcjqpxunsn.com^* ||www.yfzcjqpxunsn.com^* ||www.linuxliteos.com/adblocks.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||papcontent.info^* ||www.papcontent.info^* !torrent-finder.info##tr:nth-of-type(1) > .sdagwert !torrent-finder.info##tr:nth-of-type(2) > .sdagwert torrent-finder.info##div[class*="sdagwert"] downloadbox.org###download ||click.definitimedia.com^* ||click.sabavision.com^* ||install.combo-search.com^* ||api.addnow.com/tracker/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dev.majorgeeks.com/b/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||majorgeeks-d.openx.net^* ||sendmepixel.com/pixel.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.majorgeeks.com/cookiebar/cookiebar-latest.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.majorgeeks.com/cookiebar/getcode.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.majorgeeks.com/cookiebar/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gateway.answerscloud.com/autodesk/production/trigger/foresee_surveydef.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gateway.answerscloud.com/autodesk/production/trigger/foresee_trigger.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pages.91b3b.netdna-cdn.com^* ||jwzegfmsgyba.com^* ||www.jwzegfmsgyba.com^* ||micosoft.com-web.support^* ||tjpzulhghqai.com^* ||www.tjpzulhghqai.com^* ||maxcpv.com/landing.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hutkuzwropgf.com^* ||www.hutkuzwropgf.com^* !||ilcorsaronero.info/argh.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ilcorsaronero.info^* ||uptostream.com/biscuit.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||011235813.ga^* ||011235813.gq^* ||clientmetrics-pa.googleapis.com^* ||ep7kpqn8.online^* ||aitrack.go2cloud.org^* ||ads.horyzon-media.com^* ||hotscc.xyz^* ||qwun46bs.review^* ||rudll43523.online^* ||see-ads-for-apparel-and-jewelry.com^* ||sheyiye6.com^* ||www.okvmsjyrremu.com^* ||okvmsjyrremu.com^* ||whostargetingme.tech^* ||trk.dryverlessads.com^* ||jump.dlad.co^* ||lcpqoewrzuxh.com^* ||www.lcpqoewrzuxh.com^* ||brelayskin.com^* ||iznhvszyizwd.com^* ||www.iznhvszyizwd.com^* !||sosbedbug.com/visit.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sosbedbug.com^* ||www.sosbedbug.com^* ||pwizshlkrpyh.com^* ||www.pwizshlkrpyh.com^* ||ivsqnmridfxn.com^* ||www.ivsqnmridfxn.com^* ||yoursinfo.info^* ||www.yoursinfo.info^* ||nbbvpxfxnamb.com^* ||www.nbbvpxfxnamb.com^* www.share-online.biz###ab_info ||go.verymuchad.com^* ||itempana.site^* !||xxlargepop.com/apu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xxlargepop.com^* ||ssl4anyone.com^* !melissa822.deviantart.com##.small.ad-container deviantart.com##.small.ad-container ||www.bhmqoolzgxnp.com^* ||bhmqoolzgxnp.com^* !||cdn.waframedia8.com/wafra/tags/xdirect/xdirect.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.waframedia8.com/wafra/tags/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||opterads.com^* ||s34me.com^* ||66cpwgln.space^* !||action.dstillery.com/orbserv/nsjs?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||action.dstillery.com^* !||action.media6degrees.com/orbserv/hbpix$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||action.media6degrees.com/orbserv/nsjs?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||action.media6degrees.com^* !||action.media6degrees.com.cdn.cloudflare.net/orbserv/nsjs?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||action.media6degrees.com.cdn.cloudflare.net^* ||ardrone.swoop.com/ct.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ardrone.swoop.com/js/spxw.js$3p,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.hulu.com/api/1.0/affiliates_info$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.hulu.com/javascripts/client-metrics-sdk-1.5.0-min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.hulu.com/javascripts/metrics_tracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.hulu.com/javascripts/metrics_tracker_context_manager.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.hulu.com/javascripts/metrics_tracker_cookie_util.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.hulu.com/javascripts/metrics_tracker$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.hulu.com/start/FlyMob$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||applicationg29.com^* ||mwtpludn.review^* ||catrk.com^* ||cdn.mouseflow.com/projects/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||geo.catrk.com/bo.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||geo.catrk.com^* ||tdsthere3.top^* ||1j7740kd.website^* ||link.pgssl.com/adv/ap/fastjszoom.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||narjesmedia.afftrack.com^* ||adsense.codev.wixapps.net^* ngdevelopers.altervista.org###abd0:remove() ||www.digitalprivacyalert.org^* ||digitalprivacyalert.org^* ||www.s8ads.com/tracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.s8ads.com/click/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.crackhex.ch/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||q.dreniq.com^* ||ixlsylapsdtr.com^* ||www.ixlsylapsdtr.com^* ||jfribvstvcqy.com^* ||www.jfribvstvcqy.com^* ||uploaded.yieldlove-ad-serving.net^* ||adtag.vooxe.com^* ||wix-worker.visitor-analytics.net^* ||usbypass.info^* ||usbypass.trade^* ||unhistoler.info^* ||ss2545.com^* ||gedungsucofindo.com^* ||gurrfwsscwda.com^* ||www.gurrfwsscwda.com^* ||www.wiorcewmylbe.com^* ||wiorcewmylbe.com^* ||hcggkyhzxzsv.com^* ||www.hcggkyhzxzsv.com^* ||www.odplbueosuzw.com^* ||odplbueosuzw.com^* ||ovfbwavekglf.com^* ||www.ovfbwavekglf.com^* ||kutlvuitevgw.com^* ||www.kutlvuitevgw.com^* !||a.bf-ad.net/makabo/js_ng/adplayer/css/adplayer.min.css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.bf-ad.net^* ||www.infobizyours.info^* ||infobizyours.info^* ||streesusa.info^* ||www.streesusa.info^* ||lengthro.top^* ||www.lengthro.top^* !uploadrocket.net##div[id*="adcopy-outer"]:remove() uploadrocket.net###aswift_0:remove() uploadrocket.net###banner_left_494:remove() uploadrocket.net###banner_left_894:remove() uploadrocket.net###banner_right_759:remove() uploadrocket.net###banner_right_794:remove() uploadrocket.net###bigbutton:remove() uploadrocket.net###glasstop:remove() uploadrocket.net##.dlbutton:remove() uploadrocket.net##.dlbutton_green:remove() uploadrocket.net##div[id*=".download"]:remove() uploadrocket.net##div[title*=".download"]:remove() uploadrocket.net##div[name*=".download"]:remove() !uploadrocket.net##.download:remove() !uploadrocket.net##.middle > .rrd > div:nth-of-type(3) > .download:remove() !uploadrocket.net##.middle > form > div:nth-of-type(2) > .download:remove() !uploadrocket.net##.middle > .rrd > form > div:nth-of-type(4) > a[href="http://uploadrocket.net/directdownload.html/6jifdkm32mlk"] !uploadrocket.net##.middle > .rrd > form > div:nth-of-type(4) > a[href="http://uploadrocket.net/directdownload.html/htykuqvxy64n"] !uploadrocket.net##.middle > .rrd > form > div:nth-of-type(4) > a[href="http://uploadrocket.net/directdownload.html/mj5dqzqhk2vo"] uploadrocket.net##div[id*="uploadrocket.net/directdownload.html/"]:remove() uploadrocket.net##div[title*="uploadrocket.net/directdownload.html/"]:remove() uploadrocket.net##div[name*="uploadrocket.net/directdownload.html/"]:remove() !uploadrocket.net##.middle > div:nth-of-type(3) > a[href^="http://fastern.net/uploadrock"] > div:remove() uploadrocket.net##div[id*="fastern.net/uploadrock"]:remove() uploadrocket.net##div[title*="fastern.net/uploadrock"]:remove() uploadrocket.net##div[name*="fastern.net/uploadrock"]:remove() uploadrocket.net##^script:has-text(adsbygoogle):remove() uploadrocket.net##+js(remove-node-text, script, /adsbygoogle/gm) ||uploadrocket.net/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||uploadrocket.net/advertising/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||908d7e82396.com^* ||www.908d7e82396.com^* ||www.39o9mcr2.party^* ||39o9mcr2.party^* ||cbo01.xyz^* ||www.cbo01.xyz^* ||www.grumbsun.info^* ||grumbsun.info^* ||www.ntndubuzxyfz.com^* ||ntndubuzxyfz.com^* ||dusgihujnthv.com^* ||www.dusgihujnthv.com^* ||ry0brv6w.science^* ||www.ry0brv6w.science^* ||dewsburg.info^* ||www.dewsburg.info^* ||workandpersonal.info^* ||www.workandpersonal.info^* ||35.184.98.90/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ns7.clickkydsp.com^* ||www.mysafesearch.net^* !||service.nikezion.com/serving/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||service.nikezion.com^* ||www.budgement.info^* ||budgement.info^* ||166cd0ac1454aef5c0.com^* ||go4up.com/assets/img/abuttoned.gif$image ||xhvhisywkvha.com^* ||www.xhvhisywkvha.com^* !||c5fd06.get.anysite4home.top^* ||*.get.anysite4home.top^* !||1490825373.135cdci.45f0596.toolerclean.net^* ||*.toolerclean.net^* ||ad2load.net^* ||motohem.com^* ||go4up.com/assets/img/dbuttoned.png$image ||go4up.com/download/forwarr/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s.aolcdn.com/ads/adsWrapper.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.aolcdn.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||4f941a91590f2c1f0.com^* ! The following rule will also block redirects such as ad.turn.com/r/cs?pid=67&redir= ||ad.turn.com^* ||98a365dee89e744b.com^* ||www.triction.info^* ||triction.info^* blogqpot.com##div[class*="popup_background"]:remove() blogqpot.com##div[class*="popup_wrapper"]:remove() !||adspaces.ero-advertising.com/banads/view.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adspaces.ero-advertising.com^* ||recruining.info^* ||www.recruining.info^* ||pix.impdesk.com/imp^* ||ad.atdmt.com^* moddisc.com##.b-rec ||amigodownload.com^* ||games-portal.ws/go/8.png$image ||www.pcfixertools.biz^* ||pcfixertools.biz^* ||moddisc.com/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css lenov.ru##.row > .rek-top ||secure.mobile-10.com^* ||boom.mobsoftffree.xyz^* lenov.ru##div[class="rek-but rek-blue clearfix"] lenov.ru##div[class="rek-but rek-red clearfix"] lenov.ru##div[class="rek-but clearfix"] lenov.ru###MarketGid9333 ||adserver.adreactor.com^* !||n-cdn.areyouahuman.com/kitten^* ||n-cdn.areyouahuman.com^* ||www.jokiloho.xyz^* ||jokiloho.xyz^* ||d3c3cq33003psk.cloudfront.net/opentag-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dnn506yrbagrg.cloudfront.net/pages/scripts/0017/9409.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mlvc4zzw.space^* ||www.mlvc4zzw.space^* ||services.joygame.com/Home/JsonpTopbarNew/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tag.onscroll.com^* ||tdsthere1.top^* ||www.tdsthere1.top^* ||titotito.xyz^* ||www.titotito.xyz^* ||www.torrent-oyun.com/popup.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.pushwoosh.com/webpush/pushwoosh-web-notifications.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||go.theregister.co.uk/k/abt_a$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pirateaccess.xyz/static/ads/ad-scroll.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pirateaccess.xyz/static/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||services.joygame.com/Content/topbar5.min.css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||utarget.pro/is_clickunder/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||utarget.ru/ranging/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||utarget.pro^* ||rotator.adbean.ru^* ||a35e6f8ef7a43f24c49.com^* ||tjkckpytpnje.com^* ||www.tjkckpytpnje.com^* ||wadogo.go2cloud.org^* ||vagttuyfeuij.com^* ||www.vagttuyfeuij.com^* ||ktrackdata.com^* ||histock.info^* ||www.histock.info^* !||affrh2023.com/adServe/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||affrh2023.com^* ||37c934e71083e0c031.com^* ||www.nextlnk7.com^* !||scripts.host.bannerflow.com/1.0.2/bf.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||scripts.host.bannerflow.com^* ||lskzcjgerhzn.com^* ||www.lskzcjgerhzn.com^* ||cd8iw9mh.cricket^* ||tracking.groupon.com^* ||www.yxlibrsxbycm.com^* ||yxlibrsxbycm.com^* ||cdbxuzzlgfhh.com^* ||www.cdbxuzzlgfhh.com^* ||qzcpotzdkfyn.com^* ||www.qzcpotzdkfyn.com^* ||egkkeahdzjqy.com^* ||www.egkkeahdzjqy.com^* ||1wzfew7a.site^* ||www.xkwnadxakuqc.com^* ||xkwnadxakuqc.com^* !||postback.advconversion.com/ads-postBack-conversiontrack/conversion/postback.do$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||postback.advconversion.com^* !||interyield.td573.com/InterYield/clickbinder.do$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||interyield.td573.com/InterYield/exit.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||interyield.td573.com/InterYield/feedprocessing-min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||interyield.td573.com/InterYield/rd.do$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||interyield.td573.com/intent/get^* ||interyield.td573.com^* ||file.com-i.site/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||match.prod.bidr.io/cookie-sync/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||match.prod.bidr.io^* ||mybrandfeedback.com^* !||partners.tremorhub.com/sync^* !||partners.tremorhub.com/syncnoad^* ||partners.tremorhub.com^* !||vast-f9-us-va.adhigh.net/v/e.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||vast-f9-us-va.adhigh.net/v/vast^* ||vast-f9-us-va.adhigh.net^* ||adserver.optimatic.com^* !||vast.ssp.optimatic.com/vast/getVast.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vast.ssp.optimatic.com^* !||cdn.optimatic.com/opti-vast-client/opti-vast-client-1.1.6.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.optimatic.com/optivpaid/optiads-3.0.0.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.optimatic.com/optivpaid/optivpaid.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.optimatic.com/optivpaid/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||wfpscripts.webspectator.com/ortc-heartbeat1sec-min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||wfpscripts.webspectator.com/ws-4.4.50.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wfpscripts.webspectator.com^* ||static.bitlanders.com/images/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pushnews.pushengage.com/iframe.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pushnews.pushengage.com/cookie.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pushnews.pushengage.com^* !||clientcdn.pushengage.com/core/4882.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||clientcdn.pushengage.com^* ||www.popularscience.tv/tag_PST20T2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.bitlanders.com/getad^* ||www.bitlanders.com/lp.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.bitlanders.com/pages/getRandomWebTVBanner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.bitlanders.com/search/tag/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.bitlanders.com/js/likesystem.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||4ec397b849223140d.com^* !||vast.optimatic.com/vast/getVast.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vast.optimatic.com^* !||media1.break.com/campaigns/global_lib/superpixel.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||media1.break.com/campaigns/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||video.greatfashionideas.com/tag_GFI20.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||video.mmajunkie.com/tag_MMA20T2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wl.q1media.com/vast/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adltclck.com^* !||adltclck.com/clickout/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||affiliate.thedatingnetwork.com/tracking/click/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||affiliate.thedatingnetwork.com^* ||app.getsitecontrol.com/api/v1/stat^* ||b52.ekonion.club^* !||count-server.sharethis.com/increment_clicks$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||count-server.sharethis.com/v2.0/get_counts$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||count-server.sharethis.com^* ||download.ir/wp-content/plugins/parsi-text-ads-pro/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||easysex.com/dating/sexencounters/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||easysex.com^* ||logo.samandehi.ir/logo.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static.easysex.com/tour/easysex.com/sexencounters/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.easysex.com^* ||t.easysex.com^* ||wt.easysex.com^* ||www.easysex.com/ext_api/detect_location.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cashshield.cashrun.com^* ||ea38c0b6bbb44.win^* ||engine.4dsply.com/Tag.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||engine.4dsply.com/Redirect.eng$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||engine.4dsply.com/fp.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||engine.4dsply.com/Pixel/IFrame?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.engine.4dsply.com/Scripts/infinity.js.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.engine.4dsply.com/Scripts/MediaScripts/PopUnder.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ijtozat.ru^* www.torrentfree.net##.well:nth-of-type(1) ||www.ipcounter.de/count_js.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||d14qd3he45186l.cloudfront.net/ads-search32.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d14qd3he45186l.cloudfront.net/ads-search$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.skidrowcrack.com/adsense.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.skidrowcrack.com/adblockchecker.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ziffdavis-d.openx.net^* ||www.tqdarrhactqc.com^* ||tqdarrhactqc.com^* ||sub2.bubblesmedia.ru/sb/clk/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adturtle.biz/LP_TA/index.cfm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||upshiftyourbrain.com/away.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||alfafile.net/img/buttons/datadownloader.png$image ||rapidgator.net/images/fdmanager.png$image ||ed451bb0796e6b9a.com^* ||myboerse.bz/popups.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||myboerse.bz/annedpromo.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||toplist.raidrush.ws/images/rr_vote_15.jpg$image ||myboerse.bz/images/freedownload.png$image ||www.ahwjxktemuyz.com^* ||ahwjxktemuyz.com^* ||pydpcqjenhjx.com^* ||www.pydpcqjenhjx.com^* ||src-click-download.xyz^* ||go.webgeofwd.com^* !||adfoc.us/serve/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !@@||adfoc.us/serve/sitelinks/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !@@||adfoc.us/serve/click/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adfoc.us/js/interstitial.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adfoc.us/assets/javascripts/interstitial.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adfoc.us/js/advertise.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adfoc.us/js/fullpage/script.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||easylist.club/adconfig.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||easylist.club/popunder2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||easylist.club/popunder4.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||easylist.club/adcde.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||easylist.club/adlabs.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||easylist.club/popunder5.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||easylist.club^* ||store.lavasoft.com/clickgate/btn/visitor.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.lavasoft.com/js/popup_tracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||radar.cedexis.com^* heatst.com###loading-posts-1 > .scroll-ad-initialized.lazy-scroll-ad-wrapper.robots-nocontent.nocontent.box1-ad.ad.summary.story-grid.story.col-sm-6:remove() ||news.idealmedia.com/newdata/adpreview$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||beacon.deepintent.com^* ||www.sailznsgbygz.com^* ||sailznsgbygz.com^* ||delidatax.net/dmp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.delidataxsegment.com/piwik.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||target.mirtesen.ru/init/push/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||target.mirtesen.ru^* !||target.smi2.ru/init/push/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||target.smi2.ru^* !||i1-j5-20-32-1-21018-1731263122-s.init.cedexis-radar.net^* !||i2-dvckmfqxkqfxotkhnpapkwrccwmvlq.init.cedexis-radar.net^* ||*.init.cedexis-radar.net^* !||uat-net.technoratimedia.com/psa/psa.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||uat-net.technoratimedia.com/psa/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.grmtas.com/js/prebid_v19_gourmetads_ga.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||totalnewstoday.com/viral/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||totalnewstoday.com^* !||www.foodfanatic.net/viral/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.foodfanatic.net^* ||www1.foodfanatic.net^* ||www1.totalnewstoday.com^* ||mhaafkoekzax.com^* ||www.mhaafkoekzax.com^* ||resources.infolinks.com/static/an/usersyncup-an.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.adip.ly^* ||imgg-cdn.adskeeper.co.uk^* extratorrent.cc##div[id^="M188445Composite"] ||swtwtbiwbjvq.com^* ||www.swtwtbiwbjvq.com^* ||dcznhkojghrl.com^* ||www.dcznhkojghrl.com^* ||690179b5160e450.com^* ||jpncpftyxliq.com^* ||www.jpncpftyxliq.com^* ||dlyads.adk2x.com^* ||precheck-in.adsjudo.com^* ||push2.poptm.com^* ||hashe.in/vendor/clipboard.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||quizsblasts.club^* ||www.quizsblasts.club^* ||roy-karpachio.club^* ||www.roy-karpachio.club^* ||www.onclickprediction.com/a/display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||scriptall.ga/popOut.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.improvemybrowser.com^* ||2ea10745ffe5ed.com^* ||count.qiqipower.com^* ||tech-camp.net/the-latest/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www1.tech-camp.net^* ||www.zhabyesrdnvn.com^* ||zhabyesrdnvn.com^* ||j.qiqiww.com/vlog_vm2.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||jxfcdn328.86666608.com/51ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||m2f328.pishan168.com/suc/51ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tj.51ads.com^* ||vip.jixing8.com/js/51ads.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vhpqxkhvjgwx.com^* ||www.vhpqxkhvjgwx.com^* ||3bc800d44c197.com^* ||content.synapsys.us/embeds/realestate/crime_rand1/partner.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.cmbestsrv.com/vpaid/units/13_5_2/creatives/creative_js.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.cmbestsrv.com/vpaid/units/13_5_2/creatives/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||match.basebanner.com/match^* ||match.basebanner.com^* ||whkwbllcctfm.com^* ||www.whkwbllcctfm.com^* !||91626.net^* ||gjol8ib0.website^* ||www.mxsuikhqaggf.com^* ||mxsuikhqaggf.com^* ||b901690b3b8f.com^* ||yzlwuuzzehjh.com^* ||www.yzlwuuzzehjh.com^* !||wejs.zzhengre.com/d.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wejs.zzhengre.com^* ||www.lqpkjasgqjve.com^* ||lqpkjasgqjve.com^* ||urpscavikbyv.com^* ||www.urpscavikbyv.com^* ||vbjvbjertwov.com^* ||www.vbjvbjertwov.com^* ||d1mob6w0cdx3a7.cloudfront.net^* ||gunnellars.info^* ||www.gunnellars.info^* ||aclsqdpgeaik.com^* ||www.aclsqdpgeaik.com^* ||387bbf4ef4464485f.com^* ||olthlikechgq.com^* ||www.olthlikechgq.com^* ||mfadsrvr.com^* ||advertise.pecreation.com^* ||zdlogs.sphereup.com^* ||taynguyentintuc.com^* ||www.taynguyentintuc.com^* !||frd2g.voluumtrk.com^* ||bebufuspldzh.com^* ||www.bebufuspldzh.com^* ||cds.*.hwcdn.net/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.blbrd.co^* ||7dae6370827c9731.com^* ||charmstroy.info^* ||www.charmstroy.info^* !||vq68390.com/ctrd/click/newjump2.do$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||vq68390.com/ctrd/click/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vq68390.com^* ||www.td583.com/InterYield/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.td583.com/intent/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||impress.vcita.com^* ||www.ubxtoqsqusyx.com^* ||ubxtoqsqusyx.com^* ||d3usbv5mft9tt9.cloudfront.net/output_ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.cmbestsrv.com/vpaid/units/13_5_2/infra/cmTagEXPANDABLE.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.cmbestsrv.com/vpaid/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vicofhozbuaf.com^* ||www.vicofhozbuaf.com^* ||d3ncat0syb6rim.cloudfront.net/070f07ae-be4a-fc72-a159-435fa5d7bd0e/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||baiaclwdpztd.com^* ||www.baiaclwdpztd.com^* ||tag.getdrip.com^* ||d2q52i8yx3j68p.cloudfront.net^* ||tango-deg.com^* ||www.mexashare.com/js/blockadblock-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.mexashare.com/css_newTheme/adblock.css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.mexashare.com###k749 ||affiliate.gearbest.com^* ||analytics.logsss.com^* !||bloximages.chicago2.vip.townnews.com/meridianstar.com/content/tncms/ads/impressions.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||bloximages.chicago2.vip.townnews.com/meridianstar.com/content/tncms/ads/settings.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||bloximages.chicago2.vip.townnews.com/meridianstar.com/content/tncms/ads/traffic.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bloximages.chicago2.vip.townnews.com/meridianstar.com/content/tncms/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||bloximages.chicago2.vip.townnews.com/meridianstar.com/shared-content/art/tncms/templates/libraries/flex/components/ads_blox/resources/scripts/tnt.ads.init.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||bloximages.chicago2.vip.townnews.com/meridianstar.com/shared-content/art/tncms/templates/libraries/flex/components/ads_blox/resources/scripts/tnt.ads.load.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bloximages.chicago2.vip.townnews.com/meridianstar.com/shared-content/art/tncms/templates/libraries/flex/components/ads_blox/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c.dx.com/LeftAdBanner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c.dx.com/openx/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn-aua.adverserve.net^* ||classifieds.neighborsink.com/premiumads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||flipdigital.ru/0d3hx/counter.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mormont.gamer-network.net/api/measurement/v2/register_pageview^* !||s.logsss.com/_ubc.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.logsss.com^* ||www.candsleads.com/ranyhop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.meridianstar.com/content/tncms/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.meridianstar.com/shared-content/art/stats/common/tracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.meridianstar.com/shared-content/art/stats/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.meridianstar.com/shared-content/art/tncms-ad-manager/admanager.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.meridianstar.com/shared-content/art/tncms-ad-manager/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.meridianstar.com/shared-content/art/tncms/tracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.pureadexchange.com/a/display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||z9n5o.voluumtrk.com^* ||0912701309f8ce.com^* ||cdn0.vox-cdn.com/javascripts/verge_unison_advertising.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||phonograph2.voxmedia.com/pickup.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||phonograph2.voxmedia.com/third.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||phonograph2.voxmedia.com^* ||cr.cracksurl.com/static/image/ad_top_bg2.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css cr.cracksurl.com###_bd cr.cracksurl.com###fade ||cr.cracksurl.com/1market.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||p208865.intrev.co/absd.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||depositfiles.com/stats.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ivkasohqerzl.com^* ||www.ivkasohqerzl.com^* ||inmrjokdxmkh.com^* ||www.inmrjokdxmkh.com^* ||xuhktijdskah.com^* ||www.xuhktijdskah.com^* ||7fcaw.voluumtrk3.com^* ||0c47f8422d3f.com^* ||2728fb936f0.com^* ||xcukrfpchsxn.com^* ||www.xcukrfpchsxn.com^* ||www.jmbhyqijqhxk.com^* ||jmbhyqijqhxk.com^* ||ujqafhcsrhyz.com^* ||www.ujqafhcsrhyz.com^* ||www.txwzdalmamma.com^* ||txwzdalmamma.com^* ||afa9bdfa63bf7.com^* ||www.afa9bdfa63bf7.com^* ||www.iwmonrwpeeku.com^* ||iwmonrwpeeku.com^* ||01dff0e56385455f459.com^* ||promo.zergwire.com^* ||83f5fd33ae472e7d1a.com^* ||qrksjrjppkam.com^* ||www.qrksjrjppkam.com^* ||www.mmknsfgqxxsg.com^* ||mmknsfgqxxsg.com^* ||d1czd1q73kbu32.cloudfront.net^* ||ldkyzudgbksh.com^* ||www.ldkyzudgbksh.com^* ||mictxtwtjigs.com^* ||www.mictxtwtjigs.com^* www.tubeoffline.com##.otherSites.borderCurve.divContent2 !||www.tubeoffline.com/Contact-Pop/js/contact-pop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.tubeoffline.com/Contact-Pop/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.spoutable.com/units/coad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||unztsvrjofqp.com^* ||www.unztsvrjofqp.com^* ||ihriduffgkel.com^* ||www.ihriduffgkel.com^* ||leversions.info^* ||www.leversions.info^* ||secure.16rd0117.xyz^* ||www.16rd0117.xyz^* ||16rd0117.xyz^* ||b4ed1ab4d5e79a2d1.com^* www.imagerzone.com###pe27 > td > center > a[href^="probanners.php"] ||kknvwhcmqoet.com^* ||www.kknvwhcmqoet.com^* ||aqryyhyzjveh.com^* ||www.aqryyhyzjveh.com^* ||secure.accessify.com/track.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||z.cdn.turner.com/xslo/aspen/config/theo/cnn/aspenanalytics.json$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||z.cdn.turner.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s10-cmobads.com^* ||static.s10-cmobads.com^* ||5cf3af8aba4293a8.com^* riffhold.com##div#adReporter:remove() riffhold.com##div#_bd.sm_content:remove() ||riffhold.com/1market.php$subdocument ||s3.amazonaws.com/anchorfree/creative/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||uvffdmlqwmha.com^* ||www.uvffdmlqwmha.com^* ||yqutkbvrgvar.com^* ||www.yqutkbvrgvar.com^* ||js.adscale.de^* ||pl13974103.puserving.com^* !||pl8646460.puserving.com/c8/57/64/c85764d2ad91690b1b332b6fdbd8ce7d.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pl8646460.puserving.com^* !||pl108258.puserving.com/2d/0b/5c/2d0b5c963e5a84eb3571562ec47be60b.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pl108258.puserving.com^* 4downfiles.org###w3c5 ||cdn.ouo.io/js/full-page-script.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||138.68.64.116/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||46.101.208.237/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ixvercoaveab.trizok.ru^* ||pezil.ru/downloads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||djtflbt20bdde.cloudfront.net^* ||www.xiwhhcyzhtem.com^* ||xiwhhcyzhtem.com^* ||ncspvnslmmbv.com^* ||www.ncspvnslmmbv.com^* !||replase.ml/popOut.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.replase.ml^* ||replase.ml^* ||nicebigcupily.pw^* ||oreporu.info^* ||www.oreporu.info^* ||adserver.exoticads.com^* ||cdn.exoticads.com^* ||www.xxxcity.org/pvert3.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.pvrtx.net/serve/capdo.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.pvrtx.net^* !||pvrtx.net/serve/prepend.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pvrtx.net/serve/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.owndrives.com/bannerhostdzire.png$image ||4sysops.com/abc.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fbuilda.club^* ||www.fbuilda.club^* ||trendy-impressed.club^* ||www.trendy-impressed.club^* ||wqzorzjhvzqf.com^* ||www.wqzorzjhvzqf.com^* !4sysops.com###div-test-1 !4sysops.com###div-test-0 4sysops.com##div[id^="div-test-"] todoinmega.com###ZozFloatingMsg ||www.sympatrial.info^* ||are.clevernt.com/docallbackinfo.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||clevernt.com/scripts/a95e8bef4931f97bc2bd7ccda246f5b2.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||whgsyczcofwf.com^* ||www.whgsyczcofwf.com^* ||tracker.marinsm.com^* ||62833941f691069.com^* ||bridge.lga1.admarketplace.net^* ||11702--284840886.ame.ampxchange.com^* ||lttsvesujmry.com^* ||www.lttsvesujmry.com^* ||xml.pdn-1.com^* ||beershavartb.com^* ||www.beershavartb.com^* ||fromdoctopdf.dl.myway.com/mirrorCookies.jhtml$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||1nqrf.redirectvoluum.com^* ||c.a.gndfe.com^* ||track.eovnx.com^* ||ezemyudhkzvx.com^* ||www.ezemyudhkzvx.com^* ||ruzttiecdedv.com^* ||www.ruzttiecdedv.com^* ||qwqqliynxufj.com^* ||www.qwqqliynxufj.com^* ||zprlpkabqlth.com^* ||www.zprlpkabqlth.com^* !||cdn.admission.net/rimfire/admission/search/v2.0$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.admission.net^* ||oonenbygymsl.com^* ||www.oonenbygymsl.com^* ||qklhtphiphni.com^* ||www.qklhtphiphni.com^* ||www.tlnoffpocjud.com^* ||tlnoffpocjud.com^* ||mkpdquuxcnhl.com^* ||www.mkpdquuxcnhl.com^* ||tighting.info^* ||www.tighting.info^* ||ac2510b178ade.com^* rustorka.com##.post_body > table:nth-of-type(2) ||ti.tradetracker.net^* ||www.rumiview.com/js/tracker.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||x.vindicosuite.com/imp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||code.visitor-track.com/VisitorTrack.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||code.visitor-track.com/vt.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||code.visitor-track.com^* ||ad.adtr02.com^* ||ads.e-webtrack.net^* !||da.admission.net/admission/displayad.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||da.admission.net^* ||ow.worldofplayers.de/adframe.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ow.worldofplayers.de/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||presentation-sjc2.turn.com/server/ads2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ssl.connextra.com/services/ActiveAd/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||thehill-d.openx.net^* ||d.runadtag.com^* !||pl3618.puserving.com^* ||p*.puserving.com^* ||bkmtspywevsk.com^* ||www.bkmtspywevsk.com^* ||www.letmepopyou.com^* ||letmepopyou.com^* !||prg.undertone.com/aj$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||prg.undertone.com^* ||static.tradetracker.net/int/international/jump.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sync.multiview.com/sync/pid/200$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||universal.iperceptions.com/core/IpEngine_v74.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||universal.iperceptions.com/iFrame.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||universal.iperceptions.com/wrapper.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||universal.iperceptions.com^* ||hbzzkwsuaooc.com^* ||www.hbzzkwsuaooc.com^* ||bestbestworld.com^* ||www.bestbestworld.com^* ||adfpkxvaqeyj.com^* ||www.adfpkxvaqeyj.com^* ||8a333bc2b4d6.com^* ||ads.kwanzoo.com^* ||www.lzrfxzvfbkay.com^* ||lzrfxzvfbkay.com^* ||rmdzbqggjskv.com^* ||www.rmdzbqggjskv.com^* ||www.msiegurhgfyl.com^* ||msiegurhgfyl.com^* ||vlrzhoueyoxw.com^* ||www.vlrzhoueyoxw.com^* ||mbajaazbqdzc.com^* ||www.mbajaazbqdzc.com^* ||1e0c9bbbe44.com^* ||www.lightboxcdn.com/static/identity.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ffhwzaenzoue.com^* ||www.ffhwzaenzoue.com^* ||dsh1ct2zrfakt.cloudfront.net^* ||saturalist.com^* ||www.saturalist.com^* ||www.iweacndqhiht.com^* ||iweacndqhiht.com^* ||iwqugvxozbkd.com^* ||www.iwqugvxozbkd.com^* ||nbmffortfyyg.com^* ||www.nbmffortfyyg.com^* ||uploadocean.com/footer.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||candarmer.info^* ||www.candarmer.info^* ||planniver.com^* ||www.planniver.com^* ||pl12645009.puserving.com^* ||www.bgpxrwjrbsjb.com^* ||bgpxrwjrbsjb.com^* ||octagonize.com^* ||www.octagonize.com^* ||www.bzfguipyjops.com^* ||bzfguipyjops.com^* ||odtcspsrhbko.com^* ||www.odtcspsrhbko.com^* ||pvptwhhkfmog.com^* ||www.pvptwhhkfmog.com^* ||amhpbhyxfgvd.com^* ||www.amhpbhyxfgvd.com^* ||www.nxcxithvcoeh.com^* ||nxcxithvcoeh.com^* ||hklyzmspvqjh.com^* ||www.hklyzmspvqjh.com^* ||czechose.com^* ||www.czechose.com^* ||mmaigzevcfws.com^* ||www.mmaigzevcfws.com^* ||xicuxxferbnn.com^* ||www.xicuxxferbnn.com^* ||noisely.info^* ||www.noisely.info^* ||pguxoochezkc.com^* ||www.pguxoochezkc.com^* !||n162adserv.com/ads-sync.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||n162adserv.com/ads-sync.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||runt-of-the-web.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||epernepojkle.com^* ||www.epernepojkle.com^* ||hxkanryhktub.com^* ||www.hxkanryhktub.com^* ||ptvjsyfayezb.com^* ||www.ptvjsyfayezb.com^* ||qwrkigqtgygc.com^* ||www.qwrkigqtgygc.com^* !||uo99t.voluumtrk.com^* ||vcwdjbbughuy.com^* ||www.vcwdjbbughuy.com^* ||paradition.com^* ||www.paradition.com^* ||roughted.com^* ||www.roughted.com^* ||d2nz8k4xyoudsx.cloudfront.net^* ||rtxunghyiwiq.com^* ||www.rtxunghyiwiq.com^* ||dhomixidnkas.com^* ||www.dhomixidnkas.com^* ||evlvaulglzpu.com^* ||www.evlvaulglzpu.com^* ||monkey-broker-d.openx.net^* ||a1716.casalemedia.com/pcreative$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d3pkae9owd2lcf.cloudfront.net^* ||uqoboyvqsqpy.com^* ||www.uqoboyvqsqpy.com^* !||ww1.rt7lite.com/search/tsc.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ww1.rt7lite.com^* ||o.aolcdn.com/os_merge/*/aol/beacon.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||o.aolcdn.com/os_merge/*/aol/omniture.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||zj2.zeroredirect11.com^* !||zj2.quebec-bin.com/zcvisitor/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||zj2.quebec-bin.com^* ||target.smi2.net/init/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ebyakgowemds.com^* ||www.ebyakgowemds.com^* ||drqjihcfdrqj.com^* ||www.drqjihcfdrqj.com^* ||speedometer.site^* ||privately.men^* !||ppdxyz.info/script-2/license.ppdxyz.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ppdxyz.info^* !||vid.me/api/metric/image?event_name=PageView$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vid.me/api/metric/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ykacbmxeapwi.com^* ||www.ykacbmxeapwi.com^* ||yifymovie.re/js/analytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bijfzvbtwhvf.com^* ||www.bijfzvbtwhvf.com^* ||d160mt023h8h3d.cloudfront.net^* ||reachested.info^* ||www.reachested.info^* ||install.weather-genie.com^* ||eaidabmuxbqy.com^* ||www.eaidabmuxbqy.com^* ||ikealcmavhpk.com^* ||www.ikealcmavhpk.com^* ||www.v2profit.com/14588.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.v2profit.com/idevaffiliate.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||money.v2profit.com^* ||transtrack.pro^* !||cdn.bidadx.com/adxchange/px.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.bidadx.com/bid/adx.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.bidadx.com/bid/async.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.bidadx.com^* ||wpsyjttctdnt.com^* ||www.wpsyjttctdnt.com^* ||fmovies.se/adx/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.2mdnsys.com^* ||3b7c0f01022f61d5.com^* !||nullndn.pro/azpcfogdwa/1jMkQqzSk2rplt7/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nullndn.pro^* ||kniverto.com^* ||www.kniverto.com^* ||zpkebyxabtsh.com^* ||www.zpkebyxabtsh.com^* ||ads.spotible.com^* ||dsnjsdrbqwdu.com^* ||www.dsnjsdrbqwdu.com^* ||eniaypwywduf.com^* ||www.eniaypwywduf.com^* ||algkebjdgafa.com^* ||www.algkebjdgafa.com^* ||io.narrative.io^* ||c.bebi.com^* !||script.bidadx.com/tag/impress_v2$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||script.bidadx.com^* !||st.bebi.com/bebi_v3.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||st.bebi.com^* ||track.bidadx.com^* ||trck.bebi.com^* !||cfa.2mdnsys.com/s.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cfa.2mdnsys.com/async^* ||cfa.2mdnsys.com^* !||surf.rollmob.exchange/error$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||surf.rollmob.exchange/aefaced1/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||surf.rollmob.exchange/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||com-suddenlink.netmng.com^* ||com-centurylink.netmng.com^* !||vidtech.cbsinteractive.com/plugins/site_catalyst/3_7_0/SiteCatalyst.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||vidtech.cbsinteractive.com/plugins/site_catalyst/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||vidtech.cbsinteractive.com/uvpjs/2.3.0/lib/tracking/comscore/streamsense.5.1.1.160316.min.js !||vidtech.cbsinteractive.com/uvpjs/2.3.0/lib/tracking/adobe/VideoHeartbeat-2.0.1.min.js !||vidtech.cbsinteractive.com/uvpjs/2.3.0/lib/tracking/adobe/AppMeasurement-1.6.2.min.js !||vidtech.cbsinteractive.com/uvpjs/*/lib/tracking/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !prevents videos from playing ||ov2ochu.bid^* !||aka.spotxcdn.com/integration/ados/v1/ados/beta.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||aka.spotxcdn.com/integration/ados/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||js.spotx.tv/ados/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rtbcc.fyber.com/vpaid/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||sy.eu.angsrvr.com/sync^* ||sy.eu.angsrvr.com^* ||www.elzmazpsbnwn.com^* ||elzmazpsbnwn.com^* ||deqrdwsjlpjz.com^* ||www.deqrdwsjlpjz.com^* erpman1.tripod.com###tb_container erpman1.tripod.com###FooterAd ||track.trackclickers.com^* ||technicalissuesarehere.us^* ||www.technicalissuesarehere.us^* ||microify.com/puopen.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.akoeurmzrqjg.com^* ||akoeurmzrqjg.com^* ||takening.com^* ||www.takening.com^* ||www.bowlingle.com^* ||bowlingle.com^* ||d2od2b2huvmzuj.cloudfront.net^* ||oaxwtgfhsxod.com^* ||www.oaxwtgfhsxod.com^* ||www.odomcrqlxulb.com^* ||odomcrqlxulb.com^* ||dezaula.com^* ||www.dezaula.com^* ||xqzkpmrgcpsw.com^* ||www.xqzkpmrgcpsw.com^* ||cjxdbmxtnqmy.com^* ||www.cjxdbmxtnqmy.com^* ||www.whinjxmkugky.com^* ||whinjxmkugky.com^* ||www.szvzzuffxatb.com^* ||szvzzuffxatb.com^* ||www.rertazmgduxp.com^* ||rertazmgduxp.com^* ||yqrsfisvrilz.com^* ||www.yqrsfisvrilz.com^* ||kvzvtiswjroe.com^* ||www.kvzvtiswjroe.com^* ||www.yaoslgiweccw.com^* ||yaoslgiweccw.com^* !||adon.tech/fatalerror/windows/error.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adon.tech^* ||wxonmzkkldhu.com^* ||www.wxonmzkkldhu.com^* ||176.9.25.53/!_bb.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||176.9.25.53/!_bn.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||176.9.25.53/-ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||176.9.25.53/@_srvtgt.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||176.9.25.53/@_uv.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a1002.ooguy.com/!_bb.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a1002.ooguy.com/!_bn.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a1002.ooguy.com/!_bt.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a1002.ooguy.com/!_btm.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a1002.ooguy.com/!_lb.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a1002.ooguy.com/!_top.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a1002.ooguy.com/-ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a1002.ooguy.com/@_bt.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a1002.ooguy.com/@_ff_bt.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a1002.ooguy.com/@_kgn.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a1002.ooguy.com/@_srvtgt.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a1002.ooguy.com/@_tc.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a1002.ooguy.com/@_uv.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gfx.wiretarget.com/a_b.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gfx.wiretarget.com/a_bb.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gqorytmpkjdq.com^* ||www.gqorytmpkjdq.com^* ||skaledigital.com/js/app.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.gadgetcrunch.net/trending/rdir.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www1.gadgetcrunch.net^* ||oulxdvvpmfcd.com^* ||www.oulxdvvpmfcd.com^* ||rebrand.ly^* ||wzadmmddcmml.com^* ||www.wzadmmddcmml.com^* ||www.theofferstube.com/lps/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ofajzowbwzzi.com^* ||www.ofajzowbwzzi.com^* ||seminings.info^* ||www.seminings.info^* ||lp.privatesearches.info^* ||www3.smartadserver.com^* ||hqxtsqwpvort.com^* ||www.hqxtsqwpvort.com^* ||steamdownloadfree.com^* ||www.steamdownloadfree.com^* ||cdndownloadjspr.com^* ||*.global.ssl.fastly.net/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||48a298f68e0.com^* ||www.qyvpgddwqynp.com^* ||qyvpgddwqynp.com^* !||usermatch.krxd.net/um/v2?partner=amzn$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||usermatch.krxd.net^* ||nawdwtocxqru.com^* ||www.nawdwtocxqru.com^* ||tiny.cc/popads2p$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xnuuzwthzaol.com^* ||www.xnuuzwthzaol.com^* ||www.croxdfrdjfnt.com^* ||croxdfrdjfnt.com^* ||qoxsriddwmqx.com^* ||www.qoxsriddwmqx.com^* ||www.ckqkwhampiyb.com^* ||ckqkwhampiyb.com^* ||www.lotterywinner.co/js/top_offer_pixels.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.lotterywinner.co/video/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.anoufpjmkled.com^* ||anoufpjmkled.com^* ||tracking.softwareprojects.com^* ||www.howjkpaynzwf.com^* ||howjkpaynzwf.com^* ||qveuxmbhbhmg.com^* ||www.qveuxmbhbhmg.com^* ||www.qadtkdlqlemf.com^* ||qadtkdlqlemf.com^* ||somethodox.info^* ||www.somethodox.info^* ||d10zqflh5ol9cq.cloudfront.net^* ||6a0e2d19ac28.com^* !||eu.static.mega.co.nz/3/js/vendor/megaLogger_$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||zergnet-d.openx.net^* ||d2yjxa7gi6wm99.cloudfront.net^* ||qjmearsroiyn.com^* ||www.qjmearsroiyn.com^* ||ndtlcaudedxz.com^* ||www.ndtlcaudedxz.com^* ||ovrdkhamiljt.com^* ||www.ovrdkhamiljt.com^* ||bkgesylgvrgf.com^* ||www.bkgesylgvrgf.com^* ||www.fox5ny.com/html/js/endplay/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||amclicks.com/clk.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||amclicks.com/go.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||amclicks.com^* !||primerewardz.com/go/to/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||primerewardz.com/js/pop_window.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||primerewardz.com^* ||oppcgcqytazs.com^* ||www.oppcgcqytazs.com^* ||e.cliqstudios.com/cdnr/90/acton/bn/tracker/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||2aa06b8b0760e0f85.com^* ||oipsyfnmrwir.com^* ||www.oipsyfnmrwir.com^* ||www.gtcpsbvtwaqw.com^* ||gtcpsbvtwaqw.com^* ||www.irbkobqlrbtt.com^* ||irbkobqlrbtt.com^* ||www.nbzionsmbgrt.com^* ||nbzionsmbgrt.com^* ||hdwlzheftpin.com^* ||www.hdwlzheftpin.com^* ||5041536105134541251.win^* !||frhdhhee4.life/nlp/index.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||frhdhhee4.life^* ||www.frhdhhee4.life^* ||kidrss7.net^* ||www.kidrss7.net^* ||jertwakjcaym.com^* ||www.jertwakjcaym.com^* ||whuvrlmzyvzy.com^* ||www.whuvrlmzyvzy.com^* ||uwpmwpjlxblb.com^* ||www.uwpmwpjlxblb.com^* ||domfhty6.com^* ||www.domfhty6.com^* ||ebspiewapcta.com^* ||www.ebspiewapcta.com^* ||www.minds.com/fs/v1/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||utarget.ru/pdf.pdf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rtb.districtm.io^* !||a-nj.1rx.io/rtbdeliver/js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a-nj.1rx.io/rtbdeliver/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||magwfymjhils.com^* ||www.magwfymjhils.com^* !||biutr333.me/click.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||biutr333.me^* ||www.cpkbdmkguggh.com^* ||cpkbdmkguggh.com^* ||www.ktrmzzrlkbet.com^* ||ktrmzzrlkbet.com^* multicrackk.blogspot.com###fanback:remove() ||www.clkntrk.com/bowser/bowser.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cldoffers.com^* ||www.cldoffers.com^* ||1ouai.voluumtrk.com^* ||tmmpbkwnzilv.com^* ||www.tmmpbkwnzilv.com^* ||www.pkklpazhqqda.com^* ||pkklpazhqqda.com^* ||kmnowg.com^* ||www.kmnowg.com^* ||windcdna.com/api/banner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css rutracker.net##.bn-topic.td2:remove() ||signoredom.com^* ||www.signoredom.com^* ||os4m-d.openx.net^* !||hotcompress.com/px.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||hotcompress.com/sk-logabpstatus.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hotcompress.com^* ||www.hotcompress.com^* ||skenzo_landing_desktop.ampfeed.com^* ||ixsxgaegvplo.com^* ||www.ixsxgaegvplo.com^* !||s3.amazonaws.com/protect-your-privacy.net/banner-assets/user-data.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s3.amazonaws.com/protect-your-privacy.net/banner-assets/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bingethinker.com^* ||www.bingethinker.com^* ||bqytfutmwulr.com^* ||www.bqytfutmwulr.com^* ||dmtw0i4zln92b.cloudfront.net^* !||replase.tk/out.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||replase.tk^* ||www.replase.tk^* ||janrlobmiroi.com^* ||www.janrlobmiroi.com^* ||globalfastads.afftrack.com^* ||jump.globalfastads.afftrack.com^* ||hwfcdqnvovij.com^* ||www.hwfcdqnvovij.com^* ||magnaews.com^* ||www.magnaews.com^* ||c.a.qwepw.com^* ||61f98b9ca3d0d4f.com^* ||tesp.trade^* ||www.tesp.trade^* ||education-online.ga^* ||omegads.trade^* ||www.omegads.trade^* ||arawegnvvufy.com^* ||www.arawegnvvufy.com^* ||dvsrlrnpyxwv.com^* ||www.dvsrlrnpyxwv.com^* ||mtlieuvyoikf.com^* ||www.mtlieuvyoikf.com^* ||rrrdddbtofnf.com^* ||www.rrrdddbtofnf.com^* ||www.pnuymnyhbbuf.com^* ||pnuymnyhbbuf.com^* ||ucptqdmerltn.com^* ||www.ucptqdmerltn.com^* ||gcboyhlfqxhc.com^* ||www.gcboyhlfqxhc.com^* ||www.creofive.com^* ||creofive.com^* ||xtreme.rip/xad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xtreme.rip/templates/GreeN_FashioN/tracker/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||urle.co/vendor/clipboard.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||svnhdfqvhjzn.com^* ||www.svnhdfqvhjzn.com^* ||3.bp.blogspot.com/-02Yy1cNkAGo/Vw5qflbrytI/AAAAAAAAN9U/xf9abDX3H60xlWTUr-b_OfK1XbfdoV4YACLcB/s1600/01281.png$image bestandroidappsdownload.com##a[href="/da/aHR0cDovL2ludmFyYnJhc3MudHh0eW91cmV4LmhvcC5jbGlja2JhbmsubmV0Lz90aWQ9YkFhRA%3D%3D"] !||bestandroidappsdownload.com/img/da/lolst_l_8840.jpg$image !||bestandroidappsdownload.com/img/da/lolst_r_92841.jpg$image !||bestandroidappsdownload.com/img/da/penb_l_71984.jpg$image !||bestandroidappsdownload.com/img/da/lolst_l_37917.jpg$image !||bestandroidappsdownload.com/img/da/srv6_h_97236.png$image !||bestandroidappsdownload.com/img/da/ezbat_l_48253.gif$image !||bestandroidappsdownload.com/img/da/pnfx_l_8486.jpg$image ||bestandroidappsdownload.com/img/da/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ayozhcgcsyun.com^* ||www.ayozhcgcsyun.com^* !||idkng.com/ping.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||idkng.com^* ||www.idkng.com^* planetapk.net##div[id$="__admvnlb_modal_container"] ||tizermine.net/tizers2.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bd011f7675ba92.com^* ||cdn.ouo.io/images/download-ad.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||speednetwork14.adk2x.com^* ||ainder.club^* ||www.ainder.club^* ||media.lowermybills.com/ping^* ||media.lowermybills.com/xl/PROD/*/creatives/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pixmon.lowermybills.com/pixmon/cdn-monitoring-pixel.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pixmon.lowermybills.com^* ||www.lowermybills.com/lending/trackingPixelForIframe.jsp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css helperhere.team-forum.net###login_popup ||www.sadeempc.com/BTNS/3.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.bluecava.com^* ||dmp.theadex.com^* ||tcyeyccspxod.com^* ||www.tcyeyccspxod.com^* ||www.pcper.com/files/fixed/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tinyium.com/js/display.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.tinyium.com/static/js/amvn.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css tinyium.com##div#_bd.sm_content ||tinyium.com/1market.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tinyium.com/fp.rev3.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tinyium.com/puopen.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tinyium.com/show.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lwasxldakmhx.com^* ||www.lwasxldakmhx.com^* ||www.yattprdmuybn.com^* ||yattprdmuybn.com^* ||66e2f3129d997.com^* ||cmrxvyjyaerf.com^* ||www.cmrxvyjyaerf.com^* ||syrnujjldljl.com^* ||www.syrnujjldljl.com^* ||gothrgh.pro^* ||www.gothrgh.pro^* ||n.popclck.com^* !www.skidrowreloaded.com##+js(aeld, contextmenu) www.skidrowreloaded.com##+js(aeld, /mousedown/i) www.skidrowreloaded.com##+js(aeld, /click/i) www.skidrowreloaded.com##+js(aeld, /securitypolicyviolation/i) www.skidrowreloaded.com##+js(aopr, document.oncontextmenu) skidrowgamesreloaded.com##div[class="goog-te-spinner-pos"]:remove() skidrowgamesreloaded.com###jsisdisabled:remove() ||skidrowgamesreloaded.com/wp-content/plugins/contentprotector/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||skidrowgamereloaded.com/FFL/EFL.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !skidrowcodex.co##a[href^="https://ku.yuppdownload.com/"]:remove() !skidrowcodex.co##+js(no-window-open-if, !/skidrowcodex\.co/i) ||skidrowcodex.co^* skidrowcodexreloaded.com##+js(aopr, protected_links) skidrowcodexreloaded.com##+js(aopw, protected_links) skidrowcodexreloaded.com##div[class="footer-sticky"]:has(div.footer-sticky-inner > div.close.icon-cancel):remove() ||skidrowcodexreloaded.com/wp-content/cache/busting/google-tracking/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||skidrowcodexreloaded.com/wp-content/cache/busting/1/gtm-3d096e6b13e57c310bc8525f1405c032.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||skidrowcodexreloaded.com/wp-content/cache/busting/1/gtm-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d1gyluhoxet66h.cloudfront.net^* ||ofbqjpaamioq.com^* ||www.ofbqjpaamioq.com^* ||get35.com/m/id.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||brygxppyaugt.com^* ||www.brygxppyaugt.com^* ||dzs55b7slwyx.cloudfront.net^* ||www.paid-surveys-at-home.com/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dotcomconsultancy.advertserve.com^* ||ads.adacado.com^* ||gametesterguide.net/banner1.gif$image ||turbotds.info^* ||www.turbotds.info^* ||veritasradionetwork.com/idevaffiliate/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||downloaderweb424.cf^* ||www.downloaderweb424.cf^* ||amusement.rubrailway.bid^* ||pigs.chesseye.bid^* ||live.quartertitle.bid^* ||down.openfiles.us^* ||get.hiviteposttu.bid^* ||boost.powderattraction.bid^* tutoganga.blogspot.com###JasperRoberts tutoganga.blogspot.com###fan-exit tutoganga.blogspot.com###fanback ||iupqelechcmj.com^* ||www.iupqelechcmj.com^* ||tjunky.info^* ||www.tjunky.info^* ||www.paypalobjects.com/gajs/analytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||voluumtrk.trade^* ||www.voluumtrk.trade^* ||jjxsdkphpcwu.com^* ||www.jjxsdkphpcwu.com^* ||fembsflungod.com^* ||www.fembsflungod.com^* ||www.udrwyjpwjfeg.com^* ||udrwyjpwjfeg.com^* ||b.wal.co/beacon.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ezknqsblzmsl.com^* ||www.ezknqsblzmsl.com^* ||oubibahphzsz.com^* ||www.oubibahphzsz.com^* ||rlqvyqgjkxgx.com^* ||www.rlqvyqgjkxgx.com^* ||vacnuuitxqot.com^* ||www.vacnuuitxqot.com^* ||img.allpcb.com/eevblog/eevblog-pcb.gif$image ||www.roots.tokofitri.co.id/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.dhsztvyjwcmk.com^* ||dhsztvyjwcmk.com^* ||xrqkzdbnybod.com^* ||www.xrqkzdbnybod.com^* ||qfmcpclzunze.com^* ||www.qfmcpclzunze.com^* ||zvttlvbclihk.com^* ||www.zvttlvbclihk.com^* ||paclitor.com^* ||www.paclitor.com^* !||selfsrver.com/apu2.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.selfsrver.com^* ||selfsrver.com^* ||8426e18d2eb0d5b94.com^* ||www.djxvususwvso.com^* ||djxvususwvso.com^* ||ttdaxwrryiou.com^* ||www.ttdaxwrryiou.com^* !||coinad.com/ads/show/show.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||coinad.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mellowads.com/sync/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nwdufyamroaf.com^* ||www.nwdufyamroaf.com^* ||dbojgaxhxalh.com^* ||www.dbojgaxhxalh.com^* ||jevijshpvnwm.com^* ||www.jevijshpvnwm.com^* ||www.oxanehlscsry.com^* ||oxanehlscsry.com^* ||www.qekmxaimxkok.com^* ||qekmxaimxkok.com^* !||api.traversedlp.com/retargeting/v1/include.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.traversedlp.com/retargeting/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||p.cpaoa.org^* !||p202.marketool.net/tracking202/redirect/dl.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||p202.marketool.net/tracking202/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tourfeature.com^* ||www.wisegeek.com/cross-cookies.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vafmypxwomid.com^* ||www.vafmypxwomid.com^* !||games.njoyapps.com/wim/lp/lp13/index_49.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||games.njoyapps.com^* ||www.nextlnk11.com^* ||p220480.mycdn.co/script/rhpop_*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||uploads.to/cdn-cgi/l/chk_jschl^* ||maziynjxjdoe.com^* ||www.maziynjxjdoe.com^* ||re19fla.com^* ||www.re19fla.com^* ||www.qmvhcb9d.bid^* ||qmvhcb9d.bid^* ||www.cqbabfsyfqse.com^* ||cqbabfsyfqse.com^* ||ztmwkxvvyoao.com^* ||www.ztmwkxvvyoao.com^* ||senditcloud.com^* ||www.senditcloud.com^* ||orddiltnmmlu.com^* ||www.orddiltnmmlu.com^* !||borbaos.me/click.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||borbaos.me^* ||www.freefilesdownloader.com^* ||btxoeiisonxh.com^* ||www.btxoeiisonxh.com^* !||bayevqwe.top/ts-red/index2.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bayevqwe.top^* ||www.bayevqwe.top^* !||lc0pyfn.com/watch^* ||www.lc0pyfn.com^* ||lc0pyfn.com^* ||2aahvjeq.website^* ||nuscutsdqqcc.com^* ||www.nuscutsdqqcc.com^* ||572840863ba33c70.com^* ||ad.ad-arata.com^* ||www1.cap-cap-pop.com^* ||pdm8kxw7.website^* ||foy4a.trackvoluum.com^* ||yctszp.com^* ||cwofongvtbsi.com^* ||www.cwofongvtbsi.com^* ||infinityid.condenastdigital.com^* !||infinityid.condenastdigital.com/infinityid$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.mediavoice.com/nativeads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static.bam-x.com/tags/allure.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.bam-x.com/tags/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdnstaticsf.com/js/tk.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||counter.pushauction.com^* ||www.fgzaxilcgxum.com^* ||fgzaxilcgxum.com^* ||d3t9nyds4ufoqz.cloudfront.net^* ||8df73.expebtu.com^* ||tracking.kdata.fr^* ||babblecase.com/puopen.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||babblecase.com/js/display.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||krsdoqvsmgld.com^* ||www.krsdoqvsmgld.com^* ||jdtufqcyumvb.com^* ||www.jdtufqcyumvb.com^* ||c.spnccrzone.com^* !||traffic.fstsrv.com/jsp/redirect/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||traffic.fstsrv.com^* ||www.consumerproductsusa.com^* ||consumerproductsusa.com^* ||www.givmuvbacwui.com^* ||givmuvbacwui.com^* ||www.snfqpqyecdrb.com^* ||snfqpqyecdrb.com^* ||www.sjtevvoviqhe.com^* ||sjtevvoviqhe.com^* ||57839265732864317381624789267.site^* ||ckqpusmxvilv.com^* ||www.ckqpusmxvilv.com^* ||dubijsirwtwq.com^* ||www.dubijsirwtwq.com^* !||a.clickcertain.com/px/circulate/iframe/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.clickcertain.com^* ||0mzot44w.site^* ||xgames-04.com^* ||www.xgames-04.com^* ||lbstatic-a.akamaihd.net/push.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||utfffrxmzuvy.com^* ||www.utfffrxmzuvy.com^* ||lqlycogmpxhd.com^* ||www.lqlycogmpxhd.com^* ||www.onclickmax.com/a/display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||htrprrrtrwrc.com^* ||www.htrprrrtrwrc.com^* ||btkcdqrzmqca.com^* ||www.btkcdqrzmqca.com^* ||zkzpfpoazfgq.com^* ||www.zkzpfpoazfgq.com^* !||a1239.casalemedia.com/pcreative^* ||*.casalemedia.com/pcreative^* ||www.dcmatjqifoim.com^* ||dcmatjqifoim.com^* ||storage.googleapis.com/gadasource/adserver.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css yourdailydish.com###sidebar-wrapper yourdailydish.com###ydd-desktop-inpost-bottom !yourdailydish.com##.mobile-opt.mvp_ad_widget !yourdailydish.com###content-area > .mvp_ad_widget:nth-of-type(2) !yourdailydish.com##.mvp_ad_widget:nth-of-type(5) yourdailydish.com##div[id*="mvp_ad_widget"] yourdailydish.com##div[class*="mvp_ad_widget"] yourdailydish.com##div[title*="mvp_ad_widget"] ||vvgttgprssiy.com^* ||www.vvgttgprssiy.com^* ||atterlocus.com^* ||www.atterlocus.com^* !||udc-neb.kampyle.com/*/track/__cool.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||udc-neb.kampyle.com/*/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||network.bazaarvoice.com/t.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||screencaptue-cdn.kampyle.com^* ||screencapture.kampyle.com^* ||okbiafbcvoqo.com^* ||www.okbiafbcvoqo.com^* !||wifewine.com/wp-content/plugins/autotrack-master/autotrack.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wifewine.com/wp-content/plugins/autotrack-master/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||magpie-static.ugc.bazaarvoice.com/magpie-api/1.4/bvAnalyticsAPITracker.min.js.gz$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||wiki.multimedia.cx/analytics/piwik.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wiki.multimedia.cx/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !www.usnews.com###rect_SS1.displayAd-none.js-ad-slide.ad-slide !www.usnews.com###rect_SS3.displayAd-none.js-ad-slide.ad-slide www.usnews.com##div[id*="displayAd-none.js-ad-slide.ad-slide"] www.usnews.com##div[class*="displayAd-none.js-ad-slide.ad-slide"] www.usnews.com##div[title*="displayAd-none.js-ad-slide.ad-slide"] www.usnews.com##.slick-active.slick-current.slick-slide.slide-with-ad !www.aarp.org##.iparsys.everywhere-header.parsys > .section:nth-of-type(1) > .advertisement.parbase www.aarp.org##div[id*="advertisement.parbase"] www.aarp.org##div[class*="advertisement.parbase"] www.aarp.org##div[title*="advertisement.parbase"] ||microsoftstoers.com-google.us^* ||bvzjhnqrypiv.com^* ||www.bvzjhnqrypiv.com^* ||mukxblrkoaaa.com^* ||www.mukxblrkoaaa.com^* ||seriend.com^* ||www.seriend.com^* ||d17ialcoirdn28.cloudfront.net^* ||huynrscfbulr.com^* ||www.huynrscfbulr.com^* ||afdyfxfrwbfy.com^* ||www.afdyfxfrwbfy.com^* ||ilrxikdjozlk.com^* ||www.ilrxikdjozlk.com^* ||gkblyvnioxpd.com^* ||www.gkblyvnioxpd.com^* ||lwocvazxfnuj.com^* ||www.lwocvazxfnuj.com^* ||affiliate.vpn.express/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !blocks espn video clips !||tredir.espn.com/capmon/GetDE$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||784954998258700689.win^* ||ggbfbseakyqv.com^* ||www.ggbfbseakyqv.com^* ||pjzabhzetdmt.com^* ||www.pjzabhzetdmt.com^* ||www.obqtccxcfjmd.com^* ||obqtccxcfjmd.com^* ||www.payrfnvfofeq.com^* ||payrfnvfofeq.com^* ||t.mdn2015x4.com^* ||lqhnrsfkgcfe.com^* ||www.lqhnrsfkgcfe.com^* ||iagsqudxpcfr.com^* ||www.iagsqudxpcfr.com^* ||hljiofrtqenc.com^* ||www.hljiofrtqenc.com^* ||mlaxgqosoawc.com^* ||www.mlaxgqosoawc.com^* ||pompetegain.com^* ||www.pompetegain.com^* ||d19uh5b0umbjrr.cloudfront.net^* !||ns.zdbb.net/nsgpt.jsonp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ns.zdbb.net^* !||walker.zdbb.net/check^* ||walker.zdbb.net^* !||zdbb.netshelter.net/set^* ||zdbb.netshelter.net^* ||vkqfzlpowalv.com^* ||www.vkqfzlpowalv.com^* ||yaizwjvnxctz.com^* ||www.yaizwjvnxctz.com^* ||adplexmedia.adk2x.com^* ||qrcsppwzjryh.com^* ||www.qrcsppwzjryh.com^* ||www.zfwzdrzcasov.com^* ||zfwzdrzcasov.com^* ||nzxriltfmrpl.com^* ||www.nzxriltfmrpl.com^* ||www.kvadaiwjwxdp.com^* ||kvadaiwjwxdp.com^* ||vltvhssjbliy.com^* ||www.vltvhssjbliy.com^* ||sfmziexfvvru.com^* ||www.sfmziexfvvru.com^* ||lhekiqlzatfv.com^* ||www.lhekiqlzatfv.com^* ||ekgmjxjyfzzd.com^* ||www.ekgmjxjyfzzd.com^* ||zezowfisdfyn.com^* ||www.zezowfisdfyn.com^* ||gpltrrdffobf.com^* ||www.gpltrrdffobf.com^* ||fvrbloxygbrv.com^* ||www.fvrbloxygbrv.com^* ||bogkmogzrvzf.com^* ||www.bogkmogzrvzf.com^* ||free.mmo-gamenow.com^* ||go4up.com/assets/img/abutoned.gif$image ||sngjaetjozyr.com^* ||www.sngjaetjozyr.com^* ||gkeahnmvduys.com^* ||www.gkeahnmvduys.com^* ||d2au4l2o128joe.cloudfront.net^* ||seness.info^* ||www.seness.info^* ||dspimp.websking.com/vimp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.websking.com/static/js/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tpueomljcrvy.com^* ||www.tpueomljcrvy.com^* ||kqgfcumsbtyy.com^* ||www.kqgfcumsbtyy.com^* ||jovepjufhmmw.com^* ||www.jovepjufhmmw.com^* ||www.birdieulx.com^* ||birdieulx.com^* ||d3fqhkmofpujs3.cloudfront.net^* ||google-cm.p.veruta.com/adserver/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||charlestownwyllie.oaklawnnonantum.com/guid$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||charlestownwyllie.oaklawnnonantum.com^* ||hahiraescoheag.cayucosprenter.com/counterploy.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||partner.zenmate.com/go.cgi$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.lcuprkufusba.com^* ||lcuprkufusba.com^* ||sfzcbcrwxhic.com^* ||www.sfzcbcrwxhic.com^* ||ldyiuvdoahxz.com^* ||www.ldyiuvdoahxz.com^* ||www.xbyvexekkrnt.com^* ||xbyvexekkrnt.com^* ||wehtkuhlwsxy.com^* ||www.wehtkuhlwsxy.com^* ||advertiser.wbtrk.net^* ||uwnklfxurped.com^* ||www.uwnklfxurped.com^* ||www.clkmg.com/mal129/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||private.stats4u.xyz^* ||wdmmedia.info^* ||www.wdmmedia.info^* ||zawvukyxyfmi.com^* ||www.zawvukyxyfmi.com^* !||multimedia.getresponse.com/getresponse-Sx3V0/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||multimedia.getresponse.com^* ||ga.getresponse.com^* !||ga.getresponse.com/js/piwik.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ga.getresponse.com/script/ga.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bgfgaduyvocz.com^* ||www.bgfgaduyvocz.com^* ||servicer.adskeeper.co.uk^* ||www.rvty.net/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adserver.xpanama.net^* ||345646765678655785453332211225345.review^* ||dere879.me^* ||www.dere879.me^* ||www.dionbeno.me^* ||dionbeno.me^* ||vyrwkkiuzgtu.com^* ||www.vyrwkkiuzgtu.com^* ||cledghtdrjtb.com^* ||www.cledghtdrjtb.com^* ||ukolwxqopahb.com^* ||www.ukolwxqopahb.com^* ||www.mediapassionate.club^* ||mediapassionate.club^* ||verifying-network.com^* ||www.verifying-network.com^* ||www.cloudcdn376127.com^* ||cloudcdn376127.com^* ||bvn-inv.com^* ||www.bvn-inv.com^* !||coxnet.hb.omtrdc.net/settings/coxnet.xml$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||coxnet.hb.omtrdc.net^* ||jizvehd.misosoup.io^* ||snigel-d.openx.net^* !||bidfluence.azureedge.net/forge.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bidfluence.azureedge.net^* ||r.rxthdr.com^* ||str-assets.imgix.net/creative_workflow/creative_thumbnails/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fjuouqwxgbir.com^* ||www.fjuouqwxgbir.com^* ||kjnkmidieyrb.com^* ||www.kjnkmidieyrb.com^* ||eupwogkcjczz.com^* ||www.eupwogkcjczz.com^* ||vhuveukirbuz.com^* ||www.vhuveukirbuz.com^* ||www.yfrsukbbfzyf.com^* ||yfrsukbbfzyf.com^* ||ads.studiohwd.com^* ||www.repefwairfkx.com^* ||repefwairfkx.com^* www.itv.com##.permalink__advert-leaderboard www.itv.com##.column.permalink__advert ||vepcsswlpolz.com^* ||www.vepcsswlpolz.com^* ||712653651726438762364523546823.site^* ||bosshugss1.me^* ||www.bosshugss1.me^* ||meeaowsxneps.com^* ||www.meeaowsxneps.com^* ||www.vegmvagvesye.com^* ||vegmvagvesye.com^* ||shink.in/js/show_ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.xlavzhffzwgb.com^* ||xlavzhffzwgb.com^* !||latest-447626.efrable.info^* !||latest-390337.efrable.info^* ||latest-*.efrable.info^* ||linclik.com/vendor/clipboard.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pingoli.info^* ||www.pingoli.info^* ||clhkbfqzwpst.com^* ||www.clhkbfqzwpst.com^* !||creative.speednetwork1.com/speednetwork1/tags/xbanner/xbanner.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||creative.speednetwork1.com^* ||kutabi.info^* ||www.kutabi.info^* ||t.mdn2015x3.com^* ||ahyuzjgukqyd.com^* ||www.ahyuzjgukqyd.com^* ||gameaddict.info^* ||www.gameaddict.info^* ||cqbphspgvhuk.com^* ||www.cqbphspgvhuk.com^* ||lxghhxdcmumk.com^* ||www.lxghhxdcmumk.com^* ||ads.databrainz.com^* ||mp3.direct/static/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||content.adfox.ru^* ||d1i2v9a8xom2hy.cloudfront.net^* ||rryodgeerrvn.com^* ||www.rryodgeerrvn.com^* ||s1.xclusivejams.xyz/2017/04/Download.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.xclusivejams.xyz##.mark-links.box.post-single-content > .topad ||d3ncat0syb6rim.cloudfront.net/*/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.roblox.com/user-sponsorship/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css musicpleer.audio###supp-ad1:remove() mp3.direct###supp-ad1:remove() ||ad.mp3web.net^* ||ad.tainhacmp3.vn^* ||img.adsoca.com^* ||www.federming.com^* ||federming.com^* ||www.liquidatorstore.com^* ||zoosi.club^* ||www.zoosi.club^* ||cdn.zoosi.club^* ||www.yhqojrhfgfsh.com^* ||yhqojrhfgfsh.com^* ||xpjizpoxzosn.com^* ||www.xpjizpoxzosn.com^* ||d2nzjxafm0iowq.cloudfront.net^* ||chequent.info^* ||www.chequent.info^* ||hsoyrqqsludd.com^* ||www.hsoyrqqsludd.com^* ||j6hek.voluumtrk.com^* ||pfjwtzlfaivp.com^* ||www.pfjwtzlfaivp.com^* ||anleqthwxxns.com^* ||www.anleqthwxxns.com^* ||ad.mediabong.net^* !||um2.eqads.com/um/rc$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||um2.eqads.com^* ||www.rd.com/wp-content/plugins/rd-parsely-multisite/js/dynamic-tracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||sync.adotmob.com/cookie/rubicon$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sync.adotmob.com^* ||onjqfyuxprnq.com^* ||www.onjqfyuxprnq.com^* ||player.mediabong.net/t/pr_reporting.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.voltrk.trade^* ||voltrk.trade^* ||jqkxaejcijfz.com^* ||www.jqkxaejcijfz.com^* ||player.mediabong.com/imp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||player.mediabong.net/campaign/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||in.treasuredata.com/js/v3/event/production/ad_requested^* !||s.aolcdn.com/os/aol/beacon.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||o.aolcdn.com/os/aol/beacon.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.aolcdn.com/os/aol/beacon.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||analytics.posttv.com/trending-videos-overall.json$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||analytics.posttv.com^* ||theblaze2-d.openx.net^* !||usasync01.admantx.com/admantx/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||usasync01.admantx.com^* ||jtumenosmrte.com^* ||www.jtumenosmrte.com^* ||v12group.com^* ||www.v12group.com^* !||d3135glefggiep.cloudfront.net/anvtp.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d3135glefggiep.cloudfront.net^* ||bpbwwasthwtp.com^* ||www.bpbwwasthwtp.com^* ||kcchjeoufbqu.com^* ||www.kcchjeoufbqu.com^* ||lcyncwbacrgz.com^* ||www.lcyncwbacrgz.com^* ||www.axaggthnkquj.com^* ||axaggthnkquj.com^* ||awogbtinorwx.com^* ||www.awogbtinorwx.com^* ||xbzmworkoyrx.com^* ||www.xbzmworkoyrx.com^* !||wt.alcmpn.com/wt/108/webtag.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wt.alcmpn.com^* ||wtjmnbjktbci.com^* ||www.wtjmnbjktbci.com^* ||eydiuqpdtfew.com^* ||www.eydiuqpdtfew.com^* ||kbzrszspknla.com^* ||www.kbzrszspknla.com^* !||tsyndicate.com/iframe2/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tsyndicate.com^* !||ping.luckyorange.net/visitor/ping/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ping.luckyorange.net^* ||deviantartads.com/dt/da-ad-cfg.jsonp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.da-ads.com/da_promoted.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.exosrv.com^* !||j0.pc20160301.com/scripts/noui/eventlogger.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||j0.pc20160301.com^* !||j1.pc20160301.com/scripts/noui/StatProvider.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||j1.pc20160301.com^* ||pc20160522.com^* !||pc20161117.com/services/AdsRedirect.ashx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pc20161117.com^* ||static-ec.xhcdn.com/id142/images/tpl2/adVideo.png$image ||sossxjmotqqs.com^* ||www.sossxjmotqqs.com^* ||sijlnueeertd.com^* ||www.sijlnueeertd.com^* ||exclusivegame2017.com^* ||www.coyhvotxgrnq.com^* ||coyhvotxgrnq.com^* ||hvdddlsdexic.com^* ||www.hvdddlsdexic.com^* ||ggtujtuyvcci.com^* ||www.ggtujtuyvcci.com^* ||inewoioxxdbm.com^* ||www.inewoioxxdbm.com^* ||cpmjpcefbwqr.com^* ||www.cpmjpcefbwqr.com^* ||fwfgbhjhnlkv.com^* ||www.fwfgbhjhnlkv.com^* ||aqeukceruxzd.com^* ||www.aqeukceruxzd.com^* !||tags.mdotlabs.com/tracking.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tags.mdotlabs.com^* ||stats.solidopinion.com^* !||ece-logger.nandomedia.com:8083/analysis-logger/Logger^* ||ece-logger.nandomedia.com^* !||media.fresnobee.com/mistats/finalizestats.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||media.fresnobee.com/mistats/products/escenic.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||media.fresnobee.com/mistats/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||zkezpfdfnthb.com^* ||www.zkezpfdfnthb.com^* ||d1n7ypf85zfej7.cloudfront.net^* ||arrassley.info^* ||www.arrassley.info^* ||i.imgur.com/19tMli6.png$image ||i.imgur.com/Jrm8UlC.png$image ||i.imgur.com/5heWlqp.gif$image ||ads.cxadserving.com^* ||adserverc.cliipa.com^* !||brx.sync.yume.com/tracker/dynamic_ytrack_sync$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||brx.sync.yume.com/tracker/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||c.us1.dyntrk.com/adx/brtb/us.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c.us1.dyntrk.com^* !||destyy.com/bundles/advertisement/img/tracking.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||destyy.com/bundles/advertisement/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||destyy.com/bundles/smeweb/img/advertisement-tracking-502733.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||destyy.com/bundles/smeweb/img/tracking-502733.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||destyy.com/bundles/smeweb/img/advertisement-tracking-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||destyy.com/bundles/smeweb/img/tracking-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sp.airnbreak.com/sas/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sp.pcnetwizard.com/sas/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d2dq2ahtl5zl1z.cloudfront.net/analytics.js/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||digitalfirst-d.openx.net^* www.gamemodding.net##.description > .banner:remove() ||www.gamemodding.net/templates/gamemodding/images/site/download4.png$image ||www.rckxwyowygef.com^* ||rckxwyowygef.com^* ||abyvhqmfnvih.com^* ||www.abyvhqmfnvih.com^* ||x.fidelity-media.com/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||clickiocdn.com/npm_show/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api-v2.soundcloud.com/audio-ad$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||aspenphp.com/sas/ads/utils/php/roborps.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||aspenphp.com/sas/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||br-scout-test-creatives.s3.amazonaws.com/1x1.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||br-scout-test-creatives.s3.amazonaws.com^* !||marketing4790.blob.core.windows.net/marketingassets/TV/msg_1/caxton_getyourcard_msg1_300x600_1.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||marketing4790.blob.core.windows.net^* !||adlmerge.com/md/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adlmerge.com^* !||stats.qmerce.com/interaction-stats/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stats.qmerce.com^* !||mormont.gamer-network.net/api/reporting/v1/content_recommendation^* !||pr.integritystat.com/3b52837d-abca-d518-5421-0d252d85ffc1/ads/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pr.integritystat.com/3b52837d-abca-d518-5421-0d252d85ffc1/m.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pr.integritystat.com^* !||clkmein.com/bundles/advertisement/img/tracking.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||clkmein.com/bundles/advertisement/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||clkmein.com/bundles/smeweb/img/advertisement-tracking-1.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||clkmein.com/bundles/smeweb/img/advertisement-tracking-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||clkmein.com/bundles/smeweb/img/tracking-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||clkmein.com/bundles/smeweb/img/tracking-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||clkmein.com/shortest-url/end-adsession^* !||destyy.com/shortest-url/end-adsession^* ||sitebooster.com/sb/wix/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||t.myvisualiq.net^* ||static.prototypes.ru/boxdigital/attachad.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mp3pn.biz/i/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sync.adkernel.com^* ||x.fidelity-media.com/match.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||x.fidelity-media.com/pixel.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||88.214.193.98/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pixel.theagency.com^* ||p.rx22dc.com^* ||bbp-vnh.com^* ||www.bbp-vnh.com^* ||qfrhhvbfofbt.com^* ||www.qfrhhvbfofbt.com^* ||shvdvzydgryx.com^* ||www.shvdvzydgryx.com^* ||tlpwwloqryzu.com^* ||www.tlpwwloqryzu.com^* ||zrbhyvkpgeyn.com^* ||www.zrbhyvkpgeyn.com^* !||mesoftwares.com/setup/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mesoftwares.com^* ||www.mesoftwares.com^* ||www.sadeempc.com/wp-content/uploads/2017/06/download_green_secure_direct.png$image ||www.sadeempc.com/wp-content/uploads/2017/06/download_button_red.jpg$image ||dopefile.pk/images/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||i2.wp.com/i.imgur.com/dxFo5Hn.jpg$image ||i0.wp.com/i.imgur.com/uCxDTTp.jpg$image ||i2.wp.com/www.nomanatif.net/wp-content/uploads/2016/04/dlinkmidscn1.png$image ||i1.wp.com/i.imgur.com/O9R5Ahq.gif$image ||cdn.adf.ly/images/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hjeoncuvklqh.com^* ||www.hjeoncuvklqh.com^* ||ouo.io/images/download-ad.png$image ||ec2-34-202-192-87.compute-1.amazonaws.com^* ||statement.shakerat.bid^* ||8237485155704e6f5f7f-c23e1a3b611d7b799b8d28895e4ed316.r34.cf1.rackcdn.com^* ||stream.seedfoot.bid^* ||bbzwbxchqgph.com^* ||www.bbzwbxchqgph.com^* ||ally.demdex.net^* ||metrics.ally.com^* ||smetrics.ally.com^* !||d346whrrklhco7.cloudfront.net/onespot-sa-tracker-2-7-2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d346whrrklhco7.cloudfront.net^* !||fallsm.ndg.io/asynctracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||fallsm.ndg.io/collect/px.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fallsm.ndg.io^* ||iihwyqhxajtn.com^* ||www.iihwyqhxajtn.com^* ||www.bdggxjonzbmq.com^* ||bdggxjonzbmq.com^* ||kesllcmdcsbd.com^* ||www.kesllcmdcsbd.com^* !||bidder.aerserv.com/bidder-ws/rubicon/user_sync$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bidder.aerserv.com^* ||ads.issigpen.com^* !||lbnyj.bidder.owneriq.net/bidder/bs/notify^* ||lbnyj.bidder.owneriq.net^* ||rtb.nativeads.com^* !||www9.smartadserver.com/diff/2294/6345037/show35.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www9.smartadserver.com^* ||ced-ns.sascdn.com/diff/templates/js/banner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ec-ns.sascdn.com/diff/rtb/handler/st.min.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pcnetwizard.com/sas/player/vast2vast/linear2/linear.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tags.mathtag.com^* ||www.etbmvqjnfxtk.com^* ||etbmvqjnfxtk.com^* ||swf.mixpo.com/js/vpaidwrap.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.issigpen.com/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||imprnymp.basebanner.com^* !||w.theagency.com/cr/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||w.theagency.com/crjs/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||w.theagency.com/nurl/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||w.theagency.com^* ||adsearch.adkontekst.pl^* !||eu6.heatmap.it/log/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.heatmap.it/log/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.opressity.com^* ||opressity.com^* ||fobjoccwkrkv.com^* ||www.fobjoccwkrkv.com^* ||ychbtidylyna.com^* ||www.ychbtidylyna.com^* softhound.com###softh-489080531 > div softhound.com###softh-1445239308 > a[href="javascript:void(0);"] > .fad-btn ||drunkpplshoulddie.leakforums.net^* !||coolio.stream/wab.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||coolio.stream^* ||morata.loan^* ||usocial.pro/logs/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||votetoda.com/js.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dbcdqp72lzmvj.cloudfront.net^* ||atominik.com/js/display.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cpxjivpayggg.com^* !ouo.io##div:nth-of-type(1) > .torobutt_green_30025002:remove() !ouo.io##div:nth-of-type(1) > .torobutt_grey_30025002:remove() !ouo.io##div:nth-of-type(1) > .torobutt_orange_30025002:remove() !ouo.io##div:nth-of-type(2) > .torobutt_green_30025002:remove() !ouo.io##div:nth-of-type(2) > .torobutt_grey_30025002:remove() !ouo.io##div:nth-of-type(2) > .torobutt_orange_30025002:remove() ouo.io##div[id*="torobutt_"]:remove() ouo.io##div[title*="torobutt_"]:remove() ouo.io##div[name*="torobutt_"]:remove() ouo.io##div[class*="torobutt_"]:remove() ||www.iproblet.com^* ||iproblet.com^* documentslide.com###ads_footer:remove() ||itstillworks.com/scripts/google_ad_request.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rczagufykvpw.com^* ||www.rczagufykvpw.com^* ||qcogokgclksa.com^* ||www.qcogokgclksa.com^* ||www.dingit.tv/js/dingit-player/client-log.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.dingit.tv/js/dingit-player/js/test/adsPlayer.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.hearthstonehighlights.org/o/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.leaguehighlight.com/o/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.sc2spotlight.com/o/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.hotsspotlight.com/o/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dv7t7qyvgyrt5.cloudfront.net^* ||instagramcharts.com^* ||www.instagramcharts.com^* ||fjxlbkwhtpil.com^* ||www.fjxlbkwhtpil.com^* ||fvrvxmksxhut.com^* ||www.fvrvxmksxhut.com^* ||ad.adsrvr.org^* ||www.cccpmo.com/ads-async.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.multilinkhost.com/js/show_ads_epmads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.imzngbreiiiv.com^* ||imzngbreiiiv.com^* ||tech-camp.net^* ||www.tech-camp.net^* ||sportsreporttoday.com^* ||www.sportsreporttoday.com^* ||ykaonbmjjmyi.com^* ||www.ykaonbmjjmyi.com^* ||lwjzsigenxsl.com^* ||www.lwjzsigenxsl.com^* ||d3cl7ldsgbm5qu.cloudfront.net^* ||www.angeinge.com^* ||angeinge.com^* ||www.traktrafficflow.com^* ||kujkgfzzyeol.com^* ||www.kujkgfzzyeol.com^* ||www.credit.com/trackClick^* ||bnnsgqjofzar.com^* ||www.bnnsgqjofzar.com^* ||oxp.mxptint.net^* ||cslxhmchzgbx.com^* ||www.cslxhmchzgbx.com^* ||fmcwqmwdaubb.com^* ||www.fmcwqmwdaubb.com^* ||ykqpbuqpfjsh.com^* ||www.ykqpbuqpfjsh.com^* ||nbhubocsduzn.com^* ||www.nbhubocsduzn.com^* ||www.wizejdnlqwcb.com^* ||wizejdnlqwcb.com^* ||fwzlsugrflhh.com^* ||www.fwzlsugrflhh.com^* ||jpflmmxdflmm.com^* ||www.jpflmmxdflmm.com^* ||daxnfpzmnfdr.com^* ||www.daxnfpzmnfdr.com^* ||fddbdlolkxgc.com^* ||www.fddbdlolkxgc.com^* ||zowhxkwzjpta.com^* ||www.zowhxkwzjpta.com^* ||wluzajogsxoy.com^* ||www.wluzajogsxoy.com^* ||nvqsjdvgqnyk.com^* ||www.nvqsjdvgqnyk.com^* ||hubvotrpjios.com^* ||www.hubvotrpjios.com^* ||cgjyesqhxzzm.com^* ||www.cgjyesqhxzzm.com^* !||stats.filesupload.org/piwik.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stats.filesupload.org^* !||stats.weefy.me/piwik.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stats.weefy.me^* !||dmx.sync.yume.com/tracker/dynamic_ytrack_sync^* ||dmx.sync.yume.com/tracker/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||c.eu1.dyntrk.com/adx/dmx/us.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c.eu1.dyntrk.com^* ||uplod.ws/hg/js/clipboard.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css uplod.ws##div[class="dl-plus col-md-12 text-center"]:remove() uplod.ws##div[class="boxa text-center hidden-xs"]:remove() ||www.apparede.com^* ||apparede.com^* ||dzcx04lyk9hjp.cloudfront.net^* ||fnkyyrgraizy.com^* ||www.fnkyyrgraizy.com^* ||www.nulledcore.com/searchad.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.nulledcore.com/soloads.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ghostbusters.xyz^* ||bbcnews.xyz^* ||am15.net/ssp/banner^* !||boom.babyboomboomads.com/b/jsi.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||boom.babyboomboomads.com/gfra.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||boom.babyboomboomads.com^* ||d1fc8wv8zag5ca.cloudfront.net^* ||d2htte4u3je0k9.cloudfront.net^* ||d81mfvml8p5ml.cloudfront.net^* !||cm.targeterra.info/advmaker^* ||cm.targeterra.info^* ||www.youtube-to-video.net/online/the160.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.youtube-to-video.net/online/the300.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||youtube-to-video.net/online/the300.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||youtube-to-video.net/online/the468.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adsire.com/images/blank.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adsire.com/javascripts/iframe.tracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adsire.com/javascripts/javascripts.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adsire.com/javascripts/jquery.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adsire.com^* ||adnetsreview.com/wp-content/uploads/*/popads-banner-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vrewpywootyu.com^* ||www.vrewpywootyu.com^* ||underers.info^* ||www.underers.info^* ||engagecdn.filefactory.com^* ||rustorka.com/torrent.png$image !||p30download.com/agahi/plan/a1i.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$subdocument !||p30download.com/agahi/plan/ci.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$subdocument ||p30download.com/agahi/plan/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||uoarbhxfyygn.com^* ||www.uoarbhxfyygn.com^* ||top-fwz1.mail.ru/js/code.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.ferrolad.com/cpvlab/base.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.ferrolad.com/cpvlab/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.israbox.life/uploads/download.png$image ||www.shocksolution.com^* ||shocksolution.com^* ||xn--e1aaowadjh.org^* support.microsoft.com###skylight-entry-chrome ||nesn-d.openx.net^* !||cdn.dlyads.com/dlyads/tags/xpopup/xpopup.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.dlyads.com^* !||adsby.effective-ads.com/publishers/1055/analytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adsby.effective-ads.com^* ||booksplan.com/images/ads1.php$object ||effective-ads.com/display/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||effective-ads.com/upload/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tracking.minitool.com^* ||mydownload664.cf^* ||www.mydownload664.cf^* !||codereddefense.com/partners/idevaffiliate.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.codereddefense.com^* ||codereddefense.com^* !||www.nefloridacounts.org/redir.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.nefloridacounts.org^* ||nefloridacounts.org^* ||qingshu.co^* ||www.qingshu.co^* ||v.hr41.cn/ifr.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static-wix-blog.wix.com/blog/wp-content/uploads/2016/11/blog_banner_general1.png$image www.damasgate.com##a[href^="http://clk.readserver.net/clk"] ||clk.readserver.net^* ||www.adpenguin.biz/LP_TA/index.cfm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||imp.readserver.net^* ||www.521daixiao.com/dot.gif$image ||www.521daixiao.com/xuanfu/2017/youxiajiao/swf/9.swf$object www.baiduyun.co###__albb_rich_flash_div___albb_r_b_36453 ||www.521daixiao.com/xuanfu/2/xiaoluo/3332132.swf$object www.baiduyun.co###__albb_right_couplet www.baiduyun.co###__albb_left_couplet www.baiduyun.co###xcy_fmt_ads80 ||shalleda.com^* ||www.shalleda.com^* www.sportingnews.com##.ad-placement.ad-unit-module ||bulk-won.cf^* ||www.bulk-won.cf^* ||ec2-34-226-165-166.compute-1.amazonaws.com^* ||ec2-34-253-187-85.eu-west-1.compute.amazonaws.com^* ||storage.googleapis.com/unique-tracker-5713/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||docs-goo.org/findic.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||docs-goo.org^* ||www.docs-goo.org^* ||schetu.net^* ||www.schetu.net^* ||dt.spamanalyst.com^* !||www.iyfhjdi.com/px.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.iyfhjdi.com^* ||iyfhjdi.com^* ||d1qtf1avwa1wvl.cloudfront.net^* ||leeding.info^* ||www.leeding.info^* ||goo.gl/97fV6b$image ||appellena.info^* ||www.appellena.info^* ||dl.dropboxusercontent.com/apitl/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.cracksoftsite.com##font > center > a[href*="http://leeding.info/prokinf"] www.cracksoftsite.com##.entry > center > a[href*="http://leeding.info/prokinf"] ||www.installadpro.com/buton/indir.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.installadpro.com/buton/indiralt.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.hip2k.com##a[href^="http://bulk-won.cf/"] freesoftware707.blogspot.com##center:nth-of-type(2) > a[href^="http://bulk-won.cf/"] freesoftware707.blogspot.com##center:nth-of-type(1) > a[href^="http://bulk-won.cf/"] ||cdn.sailfish.media/un/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.urldelivery.com/watchnew$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.mirrorcreator.com##.trtbl:remove() ||www.mirrorcreator.com/images/Free_Down.gif$image ||www.mirrorcreator.com/out_df.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||totalcmd.net/images/japanese-used-cars-700.jpg$image ||analytics.adstatstrack.com^* ||gannett-d.openx.net^* ||o0.b0b1o.bid^* ||www.banhallmana.info^* ||banhallmana.info^* ||www.univers-down.com^* ||accountsolution.gcion.com/redirect/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||automoc.net/js/aab.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||automoc.net^* !||pix.impdesk.com/csync/bidswitch$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pix.impdesk.com^* !||t.neodatagroup.com/npc.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||t.neodatagroup.com^* ||www.afvcugqaulh.co^* ||afvcugqaulh.co^* ||www.west-world-online.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||promotion.mabangerp.com/r/i.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||promotion.mabangerp.com^* ||scenedownloads.bypassed.team/images/partner/raidrush.jpg$image !technewswith.me##.td-g-rec-id-header.td-g-rec > .adsbygoogle:remove() technewswith.me##.adsbygoogle:remove() ||www.instamp3.me/js/analytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||musicpleer.audio/static/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||musicpleer.audio/static/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pages.e.discover.com/Script/pageTracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tag.retargeter.com/rt/2770/rt.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tag.retargeter.com^* !||pixel.ltvtracker.com/pixel.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pixel.ltvtracker.com^* ||airplay.ch/hlog.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hung.ch/clog.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.netant.az^* ||mp3.mid.az/static/uploads/santral_right.png$image www.siamzone.com##.adsbygoogle:remove() ||live-red-t.com^* !bestofdriver.com###besto-787345063:remove() !bestofdriver.com###besto-1027969549:remove() !bestofdriver.com###besto-1139755095:remove() bestofdriver.com##div[id^="besto-"]:remove() ||cdn1.revdepo.com/static/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.lwvdeqfhswg.com^* ||lwvdeqfhswg.com^* ||www.gcujnsgvdq.com^* ||gcujnsgvdq.com^* ||cdn-adperformance.netdna-ssl.com^* ||www.onclickpulse.com/script/chrome.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.onclickpulse.com/script/pub.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cbtb.clickbank.net^* ||d3cesrg5igdcgt.cloudfront.net^* ||logger.virgul.com^* ||aff-a.advertica-cdn.com^* ||js.agkn.com/prod/v0/tag.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ng.virgul.com/adview$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ng.virgul.com/pageview$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ng.virgul.com/tck/imp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ng.virgul.com/tck/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ng2.virgul.com/adview$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ng2.virgul.com/ic/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ylx-a-img.advertica-cdn.com/aff/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ylx-a-img.advertica-cdn.com^* ||ruhotred3.fingta.com^* ||827fa7c868b4b.com^* ||ruhotred2.fingta.com^* ||nex.hhhhho.com^* !||gebadu.com/apu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gebadu.com^* scribol.com###left > .sidebar-ad-wrapper.ad-wrapper:nth-of-type(1):remove() scribol.com###left > .sticky-ad.sidebar-ad-wrapper.ad-wrapper:remove() scribol.com###secondary > .sidebar-ad-wrapper.ad-wrapper:nth-of-type(1):remove() scribol.com###secondary > .sticky-ad.sidebar-ad-wrapper.ad-wrapper:remove() scribol.com##.ad-wrapper.bottom-ad-wrapper:remove() !scribol.com##.ad-wrapper.inner-ad-wrapper:nth-of-type(3):remove() scribol.com##.ad-wrapper.top-ad-wrapper:remove() scribol.com##.cntnt-06.sidebar-ad-wrapper.ad-wrapper:remove() scribol.com##.tablet-up.ad-wrapper.inner-ad-wrapper:remove() scribol.com##div[id^="ad-wrapper.inner-ad-wrapper"]:remove() ||toro-tags.com/_tags/jstags.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||trafflict.com^* !www.andropalace.org##div:nth-of-type(4) > .adsbygoogle:remove() www.andropalace.org##div[id*="adsbygoogle"]:remove() ||c2s.startappnetwork.com/c2s/1.3/htmlads$subdocument ||ad.leadbolt.net^* ||www.adnetworkperformance.com/ad/display.php$subdocument ||www.zybztgtsxq.bid^* ||zybztgtsxq.bid^* ||malgyhuytbnjb.bid^* ||www.malgyhuytbnjb.bid^* www.extremetech.com###bannerad:remove() !www.extremetech.com###google_ads_iframe_\/4585\/zd\.extech\/computingsection_BTF_0__container__:remove() !www.extremetech.com###google_ads_iframe_\/4585\/zd\.extech\/computingsection_ATF_1__container__:remove() ! The following rule will prevent the video player from initializing and being displayed. !www.extremetech.com##div[id^="google_ads_iframe"]:remove() www.extremetech.com##div[class*="AdChoiceContainer"]:remove() www.extremetech.com##div[id="top-1"]:remove() www.extremetech.com##iframe[width="1"][height="1"]:remove() www.extremetech.com##ins[class="zmgad-full-width"]:remove() www.extremetech.com##+js(set-constant, _comscore, []) www.extremetech.com##+js(abort-on-property-read, _comscore) www.extremetech.com##+js(abort-on-property-write, _comscore) www.extremetech.com##+js(acs, /_comscore\.push\(/) ||www.extremetech.com/wgac/js/analytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.extremetech.com/sbs/beacon.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.mrkzgulf.com/do.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.limbik.com/static/trackScript.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.hmdmvaxmmwoso.bid^* ||hmdmvaxmmwoso.bid^* mic.com##.new-user-modal--showing.new-user-modal:remove() ||www.ptsdnvgn.bid^* ||ptsdnvgn.bid^* ||www.gouytrujxuhkzk.bid^* ||gouytrujxuhkzk.bid^* ||www.bwuxrzvr.bid^* ||bwuxrzvr.bid^* ||www.kmyelzmlkl.bid^* ||kmyelzmlkl.bid^* ||www.pyscgael.bid^* ||pyscgael.bid^* ||foxarmedia.com/display/index.php$subdocument ||cheatre.info^* ||www.cheatre.info^* ||d1852uckuj7o1j.cloudfront.net^* ||b0b1o.bid^* ||www.tcxsonyfzb.bid^* ||tcxsonyfzb.bid^* ||www.qgjllgijf.bid^* ||qgjllgijf.bid^* ||www.dsibzjqbtkjqd.bid^* ||dsibzjqbtkjqd.bid^* ||clknsee.com^* ||clkntrk.com^* ||redirect2719.ws^* ||www.redirect2719.ws^* ||d1uy7uzra011au.cloudfront.net^* ||pitally.info^* ||www.pitally.info^* ||m.ad6media.fr^* ||howevert.info^* ||pjh2gam94j.s.ad6media.fr^* !||js.srcsmrtgs.com/js/ad.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||js.srcsmrtgs.com^* ||help.microsoft.error-3221.com^* ||kxphhdia.bid^* ||www.kxphhdia.bid^* ||ubiqqzmldivih.bid^* ||www.ubiqqzmldivih.bid^* !||p14930.intrev.co/absd.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||p14930.intrev.co^* ||d1xfq2052q7thw.cloudfront.net^* ||usher.ttvnw.net/api/channel/hls/archsagehd.m3u8$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||i1.wp.com/skidrowgamesreloaded.com/pNpDARhtxbpXgH5cwObT/13E8A6E6AmBHf7p4u36brL3.png$image ||cashinme.com^* !||fullspeeddownload.com/imp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fullspeeddownload.com^* ||xml.adexchangelive.com^* !||emp.bbci.co.uk/plugins/dfpAdsHTML/3.20.0/js/dfpAds.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||emp.bbci.co.uk/plugins/dfpAdsHTML/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||nav.files.bbci.co.uk/nav-analytics/0.1.0-69/js/istats-1.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nav.files.bbci.co.uk/nav-analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.sendit.cloud/clipboard.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adsgames.tk/ad/View.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adsgames.tk/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adsgames.tk/adcla/JqueryETracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adsgames.tk^* ||grtduutw.bid^* ||www.grtduutw.bid^* ||ads.remixes.link^* ||afterdawn.searchmgr.com^* !||afterdawn.searchmgr.com/newfcy/newfcy/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||js.deliverybundlessign.com/dl.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||js.deliverybundlessign.com^* ||srch.bar^* ||static.searchmgr.com/js/fingerprint2.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stuff.afterdawn.com/cookieconsent/build/cookieconsent.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.bundletowersapplication.com^* ||demkc32bq01ah.cloudfront.net^* ||vinterrals.info^* ||www.vinterrals.info^* ||d36mpcpuzc4ztk.cloudfront.net/js/visitor.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.pcbooster.online/ccl/securerc/c14/ccl-setup.exe$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.pcbooster.online^* ||lp.pcbooster.online^* !www.dummies.com###google_ads_iframe_73172:remove() www.dummies.com##div[class^="google_ads_iframe_"]:remove() www.dummies.com##div[id^="google_ads_iframe_"]:remove() en.freedownloadmanager.org##.aa-728.ab1:remove() download.freedownloadmanager.org##.aa-728.ab1:remove() ||filetarget.net/!_lb.php$subdocument ||filetarget.net/!_bt.php$subdocument ||filetarget.net/!_top.php$subdocument ||filetarget.net/!_sk.php$subdocument ||filetarget.net/!_bs.php$subdocument ||filetarget.net/!_btm.php$subdocument ||usnhsilyntf.bid^* ||www.usnhsilyntf.bid^* ||d2ul07mfd59d8q.cloudfront.net^* ||musclerku.com^* ||www.musclerku.com^* !||statsweb.proxad.net/piwik.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||statsweb.proxad.net^* ||cdn.jheberg.net/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||analytics.gamesessions.com^* ||8092686a39ac5.com^* ||functionalclam.com^$3p ||get.archivequickfiles.win^* ||fasttds.bid^* ||goodclickads.com^* !||1502793614855.11x166o.a544008d.blackschickens.top:8080/static2/about.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||1502793614855.11x166o.a544008d.blackschickens.top^* !||news.ycombinator.com^* ||slack.com/checkcookie$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||steried.com^* ||www.steried.com^* ||toepisterk.com^* ||www.toepisterk.com^* ||bjkookfanmxx.bid^* ||www.bjkookfanmxx.bid^* ||carcarom.com^* ||www.carcarom.com^* ||afmglob.com^* ||www.afmglob.com^* ||get.fastdownloadarchive.review^* ||powertds.trade^* ||serionew.info^* ||www.serionew.info^* ||felafk.com^* ||www.felafk.com^* www.owndrives.com##a[href^="http://felafk.com/r/"]:remove() ||boostads.site^* ||www.boostads.site^* ||cdn.pumplex.com/wp-includes/js/analytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.shhopyourway.com^* ||shhopyourway.com^* ||tnbtghpbdvz.bid^* ||www.tnbtghpbdvz.bid^* ||analytics.perfdrive.com^* ||anon-stats.eff.org^* ||u.heatmap.it/log.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||img.tan5858.com^* ||img1.tan5858.com^* ||maccms.tan5858.com^* !||www.5353lang2.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.5353lang2.com^* !||cdnssl.clicktale.net/www/ChangeMonitor-latest.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdnssl.clicktale.net/www/WR-latest.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdnssl.clicktale.net^* !||ing-district.clicktale.net/ctn_v2/auth/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ing-district.clicktale.net^* !||ac.realvu.net/flip/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ac.realvu.net/realvu_boost.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ac.realvu.net^* ||openload.co/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.warpmymind.com/data/hbanner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.impresionesweb.com/r/banner_iw.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.1clickdownloader.com/download/product_download.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.1clickdownloader.com^* ||yeshimc.com^* ||www.yeshimc.com^* ||noi.thwwxn.com^* ||zoomtorrent.com/rd22/dop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||azqmmfhmfnpsvb.bid^* ||www.azqmmfhmfnpsvb.bid^* ||c.adskeeper.co.uk^* ||cdn.adskeeper.co.uk^* urly.mobi##.adsbygoogle:remove() ||truefilen32.com^* !||urly.mobi/js/countdown.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.rutor.info###ifrm_cd_208 ||sears.intelliresponse.com^* ||ads2.newmedia.az^* ||www.lapbekessbozpx.bid^* ||lapbekessbozpx.bid^* ||www.eqqhiwfjcfx.bid^* ||eqqhiwfjcfx.bid^* ||fastmap33.com^* ||www.fastmap33.com^* ||c.mgid.com^* ||cdn.mgid.com/advert/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cm.mgid.com/i.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cm.mgid.com^* ||imgg-cdn.mgid.com^* ||imgg.mgid.com^* ||jsc.mgid.com^* !||mg.mgid.com/mghtml/framehtml/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mg.mgid.com^* ||mgid.com/mg6140.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||rtbproxy.mgid.com/38380.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||rtbproxy.mgid.com/38383.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rtbproxy.mgid.com^* ||servicer.mgid.com^* openload.co##div[id^="MarketGidComposite"] bdupload.info##.ddlbut openload.co##div[id="adbdetect"] openload.co##div[id="M162831ScriptRootC153358"] ||www.steepto.com/ghits/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css openload.co##div[class="mcimg"] ||imgg-cdn.steepto.com^* ||www.theadgateway.com/a/display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.bjgaxcstxlvm.bid^* ||bjgaxcstxlvm.bid^* ||www.hjyxnjfbrj.bid^* ||hjyxnjfbrj.bid^* ||analytics.sitewit.com^* ||pejqoq4cafo3bg9yqqqtk5e6s6.com^* ||bullseye.backbeatmedia.com/bullseye/adserver/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||microfiles.pythonanywhere.com^* ||www.pcvdrjvku.bid^* ||pcvdrjvku.bid^* ||www.grunge.com/wp-content/themes/unified/js/grunge-ads.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||business-insider-d.openx.net^* ||www.gobljmgamwfjrc.bid^* ||gobljmgamwfjrc.bid^* ||blendf.com^* ||www.blendf.com^* ||www.emegbthex.bid^* ||emegbthex.bid^* !||moradu.com/apu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||moradu.com^* ||www.moradu.com^* ||m59ymediared.com^* ||www.m59ymediared.com^* ||cdn.stickyadstv.com^* ||ping-dot-acp-magento.appspot.com^* !||gj.mmstat.com/g.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gj.mmstat.com^* !||gm.mmstat.com/ae.pc_click.statweb_ae_click$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||gm.mmstat.com/tbspm.1.1$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gm.mmstat.com^* ||g.alicdn.com/secdev/adblk/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||aligtr057.mmstat.com/check.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn-gae-default.instantsearchplus.com/pop_merchandising$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn-gae-default.instantsearchplus.com^* ||dcjg1gv1px1h.cloudfront.net^* ||www.discountedoffers.co^* ||discountedoffers.co^* ||xml.adtriage.com^* ||buckilyg.info^* ||www.buckilyg.info^* ||d3u5zn5k9864p0.cloudfront.net^* ||vinfrase.info^* ||www.vinfrase.info^* ||www.search-fort.com^* ||search-fort.com^* ||diamongs.com^* ||www.diamongs.com^* ||www.onsujkfgc.bid^* ||onsujkfgc.bid^* ||coin-hive.com^* ||www.coin-hive.com^* !||dx.bigsea.weborama.com/collect$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dx.bigsea.weborama.com^* ||inadequal.com^* ||www.inadequal.com^* ||d1jikhx1ssl81z.cloudfront.net^* !||cdn.adplex.media/adplexmedia/tags/xnotificationbar/xnotificationbar.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.adplex.media^* ||fnrdrrdo.top^* ||www.cpm20.com^* ||www.poorybdbh.bid^* ||poorybdbh.bid^* ||hf-la-23.s3.amazonaws.com^* ||www.icjurmxhqpdpbt.bid^* ||icjurmxhqpdpbt.bid^* ur.ly##iframe[src="about:blank"] ||ur.ly/images/step/btn4.png$image ||www.ydujmccmydwu.bid^* ||ydujmccmydwu.bid^* ||ur.ly/images/step/btn2.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||speednetwork14.adk2.co/speednetwork14/tags/xcatfish/xcatfish.js?ap=1301 !||speednetwork14.adk2.co/speednetwork14/tags/xbanner/xbanner.js?ap=1300 ||speednetwork14.adk2.co^* ||www.qfmkufzloxy.bid^* ||qfmkufzloxy.bid^* ||1859927.com^* !||www.iwanttodeliver.com/popupjson/xvideos/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.iwanttodeliver.com/popupjson/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mrjbpetu.info^* ||www.mrjbpetu.info^* ||litersun.info^* ||www.litersun.info^* ||ioredi.com^* ||www.ioredi.com^* ||destruction.quinceroll.bid^* ||ssears.com^* ||www.sers.com^* ||c.parkingcrew.net/scripts/sale_form.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||m-misc.appspot.com/js/blogger-infinite-scrolling.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.privacy-search.club^* ||privacy-search.club^* ||www.search-privacy.website^* ||search-privacy.website^* !||www.hugedomains.com/Metrics/stat.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.hugedomains.com/Metrics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||1061-20996.link.iwanttodeliver.com/popupclick/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.link.iwanttodeliver.com/popupclick/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tqeobp89axcn.com^* ||www.tqeobp89axcn.com^* ||cpro.baidustatic.com/cpro/ui/f.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cpro.baidustatic.com/cpro/ui/c.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hitfile.net/fd2/js/paypop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hitfile.net/platform/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||hitfile.net/platform/js/fdlogger/fdlogger.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !blocks download button !||kickay.com/script2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||kickay.com/tm.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||kickay.com^* ||www.kickay.com^* !||secaux.win/tm.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||secaux.win^* ||www.secaux.win^* ||static.bshare.cn/js/libs/fingerprint2.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||connect.ok.ru/dk?st.cmd=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||connect.ok.ru^* !||dzc-v6exp3-ds.metric.ipv6test.net^* !||p5-gztwpszjkwsmk-aguecvpxmv2iji6j-287640-i1-v6exp3-ds.metric.ipv6test.com^* !||p5-gztwpszjkwsmk-aguecvpxmv2iji6j-287640-i2-v6exp3-ds.metric.ipv6test.net^* ||*-ds.metric.ipv6test.com^* ||*-ds.metric.ipv6test.net^* ||www.kuhbcpckauwt.bid^* ||kuhbcpckauwt.bid^* |www.nitroflare.com/img/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css gfxpeers.net###noty_center_layout_container ||www.qteoslcm.bid^* ||qteoslcm.bid^* ||p30download.com/agahi/files/loading.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css uplod.cc##.btn-dl-plus.btn-info.btn:remove() ||hh-btr.com^* !||cdn-z1.perfectgirls.net/thumbs/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn-z2.perfectgirls.net/thumbs/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn-z3.perfectgirls.net/thumbs/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn-z4.perfectgirls.net/thumbs/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn-z1.perfectgirls.net^* ||cdn-z2.perfectgirls.net^* ||cdn-z3.perfectgirls.net^* ||cdn-z4.perfectgirls.net^* ||www.perfectgirls.net^* ||uplod.cc/hg/js/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||uplod.cc/hg/js/clipboard.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||uplod.cc/js/countdown.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||uplod.cc/js/share.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||voredi.com/apu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||voredi.com^* ||www.voredi.com^* ||www.gtopala.com/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||165.227.109.227/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.goowurzdotcom.bid^* ||goowurzdotcom.bid^* !||natecollard.com/click.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.natecollard.com^* ||natecollard.com^* ||oload.info/logpopup/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||oload.info/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.nwhitgovb.bid^* ||nwhitgovb.bid^* ||ncht-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css.flyzoo.co/signalr/ping$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rtm-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css.flyzoo.co/signalr/ping$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.ndg.io/pulsepoint.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cnhv.co^* !||coinhive.com/lib/coinhive.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||coinhive.com/lib/cryptonight.wasm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||coinhive.com/media/miner.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||coinhive.com^* ||sp.os-data.com^* ||sync.os-data.com^* ||goodolddownloads.com/log.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.swykcpfxkqvg.bid^* ||swykcpfxkqvg.bid^* ||www.wclnrjxefu.bid^* ||wclnrjxefu.bid^* ||goodolddownloads.com/js/dolladollabillz.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.carbonads.com/carbon.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.carbonads.com^* ||www.kyieflmhiekvrr.bid^* ||kyieflmhiekvrr.bid^* rustorka.com##div[id^="MIXADV"] !rustorka.com###MIXADV_2713.MIXADVERT_NET rustorka.com###sidebar1-wrap ||dmp.adx.com.ru^* ||d14ua74v38c23g.cloudfront.net/1x1.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d1gwdqauyvegc9.cloudfront.net/1x1.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||imgur-d.openx.net/w/1.0/jstag$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||imgur-d.openx.net^* ||forexbulletproof.com/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.forex-megadroid.com/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.maxback.org/track.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.rolclub.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pulsar-cloudflare.ns1.com/1x1.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.imgur.com/min/advertising.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ap.adriver.ru/sync.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ap.adriver.ru^* ||www.alfacashier.com/sites/default/files/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.searchingmagnified.com/px.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.searchingmagnified.com/sk-logabpstatus.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.searchingmagnified.com^* ||searchingmagnified.com^* ||winmanager.today^* ||aprtn.com^* ||aprtx.com^* ||b.ns1p.net^* !||cs.ns1p.net/p.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cs.ns1p.net^* ||s.ns1p.net^* ||delivery.switch.whatculture.com/adserver/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||138.197.69.206/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.pnmxoeztls.bid^* ||pnmxoeztls.bid^* !||adport.pl/wystawca/ads.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adport.pl/wystawca/txt/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adport.pl^* ||go.salesmedia.pl/aff_$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.salesmedia.pl/offers/*/Display/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.salesmedia.pl^* ||s.po.st/static/v3/js/external/copyPaste.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||talk.webchat.reg.ru/js/observer.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||talk.webchat.reg.ru/observer.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.download-provider.org^* ||znsv.baidu.com/customer_search/api/ping$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||prebid.districtm.ca/lib.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||prebid.districtm.ca^* ||t.cwkuki.com^* ||install.incognitosearches.com^* ||www.mmqsbtpmdrib.bid^* ||mmqsbtpmdrib.bid^* !||www.fckk.me/track.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.fckk.me^* ||unid.go.com/v3/hit$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||forum.flacmania.ru/platform/js/live/galog.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||girls.flightbranch.bid^* ||www.oowivxijrgbrzc.bid^* ||oowivxijrgbrzc.bid^* !||p220869.inclk.com/adServe/adClick^* ||p220869.inclk.com^* !||videosphinx.net/s.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||videosphinx.net^* crack8.net##.affiliate_download_imagebutton_container:nth-of-type(1) ||i0.wp.com/cdn.get-pic.space/images/banners/download-24.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c.pfgbc.com^* ||www.everifymatch.com^* ||www.jbmotion.online^* ||addictedtomovies.co^* ||filecloud.io/banner_ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css filecloud.io##.text-center.alert-danger.alert !||adpic.bigerdata.com^* ||barbys.ru/code/show.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css rutor.is###b_tz_208.b_tz_on_top rutor.is###ifrm_cd_208 ||traxilis.com^* ||btds.artplay.info^* ||searchprotector.net^* !||adexchange.guru/advertising/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adexchange.guru^* ||upgradenow24.thebroadroundforupgrading.club^* ||www.bigbroadroundforupgrades.bid^* ||bigbroadroundforupgrades.bid^* ||159.203.89.118/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||win-win-2017.com^* ||www.rtzhwgpmp.bid^* ||rtzhwgpmp.bid^* ||www.guangrtb.com^* ||www.freetutorials.us/wp-content/plugins/super-socializer/images/transparent_bg.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.freetutorials.us##.all-services:remove() www.freetutorials.us###the_champ_sharing_more_providers:remove() www.freetutorials.us###heateor_ss_browser_popup_bg:remove() ||bromson.com^* ||fullprogramlarindir.com/wp-content/uploads/2017/09/green.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||download2files.club^* ||www.hit2k.com/wp-content/uploads/2016/10/uiYpPRF.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||uexperiod.info^* ||i1.wp.com/a2zcity.net/wp-content/uploads/2017/09/a2zcity-download-2.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||i0.wp.com/a2zcity.net/wp-content/uploads/2017/09/a2zcity-download-1.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||soft4update.softwareround4upgrades.stream^* ||softwareround4upgrades.stream^* ||www.theroundupdates.date^* ||theroundupdates.date^* ||go.awanpc.me/js/display.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !onhax.me##div[class="caption lelabp"]:remove() !onhax.me##div[class="description lelabp"]:remove() !onhax.me##div[class="dload_actor lelabp"]:remove() !onhax.me##div[class="mif-download logo lelabp"]:remove() !onhax.me##div[class*="lelabp"]:remove() onhax.me##div[class$="lelabp"]:remove() onhax.me##div[id="bottom-promo-abdload"]:remove() ||www.download-genius.com^* ||www.downturk.net/images/dl.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||stat.ihostingcoupon.com/files/dot.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stat.ihostingcoupon.com^* !||stat.topgamespark.com/click.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||stat.topgamespark.com/go.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stat.topgamespark.com^* ||www.lorhamnvukws.bid^* ||lorhamnvukws.bid^* ||www.classicfashionshoes.com^* ||club28.net/uploads/yfdbtn2.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.beetle-clicks.biz^* !||www.niceduckies.com/AF_TA/rel/index.cfm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.niceduckies.com/AF_TA/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.niceduckies.com^* ||estatalogy.info^* ||www.adexchangecloud.com/jump/next.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||platform.bidgear.com/ads.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||platform.bidgear.com/ga.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.bidgears.com/a/g/agency.mp1st.com.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||track.foryouheathy.com^* !||auction.catawiki.com/ab/s.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||auction.catawiki.com/users/alternative_tld_for_ip_address$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||auction.catawiki.com/watch-auction?utm_campaign=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.uczxsaxdlpedxl.bid^* ||uczxsaxdlpedxl.bid^* ||arp.superappbox.com^* !||nfemo.com/click-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nfemo.com^* ||biz.alibaba.com/order/ajax/AjaxOrderStatistic.do$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dsp.dskrt.net^* !||misdoers.com/img/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||misdoers.com^* !||onlyf.net/images/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||onlyf.net^* !||onlyf.ws/sml/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||onlyf.ws^* ||www.ipcounter.de/countnew.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||1load.sx/popup.js.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vipgdc.us^* ||assets-jpcust.jwpsrv.com/watermarks/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !ww1.cartooncrazy.net##.ad_box:nth-of-type(3):remove() ww1.cartooncrazy.net##div[id^=".ad_box:nth-of-type"]:remove() !||satgitsin.co/doubleexport/expogo/geturls.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||satgitsin.co/doubleexport/expogo/index.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||satgitsin.co^* ||www.adnetworkperformance.com/script/preurl.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.onclicktop.com/jump/next.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||greeninst.com^* ||xml.fastracker.co^* ||p238993.inclk.com^* !||9xmovie.co/download/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||9xmovie.co^* ||dsp.mgid.com/voluum/imp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css bdupload.info##div[id="fb-root"]:remove() ||pepgamez.com^* !||d3dkhq0wwdwodv.cloudfront.net/hybrid/index.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d3dkhq0wwdwodv.cloudfront.net^* ||testupgrade.freefrombugs2updates.club^* ||traktrafficflow.com^* ||www.yourreliablupgrades.bid^* ||d1p7elpjrt6qav.cloudfront.net^* ||testablisha.info^* ||messardu.com^* ||vebadu.com^* ||newser.peoplefindthis.com^* ||k26fe9xhuzm.com^* ||prv.bettersearchtools.com^* thepiratebay.org###sky-banner:remove() thepiratebay.org###sky-center:remove() !||thepiratebay.org/static/si0Eim0u/exo_na/sky1.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||thepiratebay.org/static/si0Eim0u/exo_na/bottom.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||thepiratebay.org/static/si0Eim0u/exo_na/center.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||thepiratebay.org/static/si0Eim0u/exo_na/sky2.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||thepiratebay.org/static/si0Eim0u/exo_na/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adv.sspicy.ru/load?adslot_id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adv.sspicy.ru/web?adslot_id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adv.sspicy.ru^* ||bbcdn.go.cz.bbelements.com/bb/creative-lib-latest.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.jsdelivr.net/wp/wp-slimstat/tags/4.7.2.2/wp-slimstat.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.jsdelivr.net/wp/wp-slimstat/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||uploadocean.com/LivIconsEvo/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||uploadocean.com/images/dlforandroid.png$image ||ooster.ru/.s/src/crt_adb.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||front.exebid.ru/collect?sync_redirect=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s30.ucoz.net/bnr/wrappers/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s30.ucoz.net/bnr/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s30.ucoz.net/ucoz/img/uads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||sync.rtb.mts.ru/collect?id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sync.rtb.mts.ru^* ||bbcdn-tag.ibillboard.com^* ||cdn.adtags.pro^* !||d1lp05q4sghme9.cloudfront.net/tpbsite/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d1lp05q4sghme9.cloudfront.net^* ||katie.runtnc.net^* ||matching.adtags.pro^* ||stats.adtags.pro^* !||traffic.adxprtz.com/ads/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||traffic.adxprtz.com/tpb/na/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||traffic.adxprtz.com^* ||www.scdn.co/build/js/sp-analytics-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.scdn.co/build/js/tracking-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sync.bumlam.com^* !||fqtag.com/pixel.cgi$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fqtag.com^* ||sync.morgdm.ru^* ||i.imgur.com/F8eXiyW.png$image !||septimus-kyr.com/native/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||septimus-kyr.com^* !||56qkn5tuuio8g788.barrowsauer.bid^* !||3qpxx985sp91gim7.barrowsauer.bid^* ||*.barrowsauer.bid^* ||buckridge.link^* ||bashirian.biz^* ||quitzon.net^* ||adservone.com^* !||g.loutingjygib.win/dlhkqi/246/smartrt/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||g.loutingjygib.win^* ||rtradsterra1.com^* ||v3rjvtt.com^* ||higheurest.com^* ||protectsearch.website^* ||allnrcs.gakax.xyz^* ||87um2.originalcertainengine.com^* ||xml.admeridian.com^* !||cdn.engine.addroplet.com/Scripts/infinity.js.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.engine.addroplet.com^* ||images.neobux.com/imagens/banner9/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mediafire-d.openx.net^* ||bdupload.info/js/share.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d2ghscazvn398x.cloudfront.net^* !||img.leadzutw.com/ads/lz_loader.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||img.leadzutw.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||limaten.info/popunder.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||limaten.info^* !||tags.smilewanted.com/formats/corner-video/multiup.eu$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tags.smilewanted.com^* !||bestfwdservice.com/rg-clkrdr.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bestfwdservice.com^* www.ddlvalley.me###hstp_21459_interstitial:remove() www.ddlvalley.me###hstp-bg21459-overlay:remove() ||sender.clevernt.com/transporter/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adscpm.site^* ||track.adscpm.site^* ||searchdimension.com^* ||www.searchdimension.com^* ||www.ddlvalley.me/wp-content/plugins/google-analytics-dashboard-for-wp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bus.clevernt.com^* ||clevernt.com/scripts/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||anx.mywebsearch.com^* ||anytimeastrology.dl.myway.com^* ||anytimeastrology.dl.tb.ask.com^* ||aditmedia.go2affise.com^* ||galkdconvet.com^* ||install.online-live-streaming.com^* ||install.live-streaming.online^* ||install.video-browse.com^* !||lp.extension-clicks.com/extension_ab.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lp.extension-clicks.com^* ||mmtrkyv.com^* www.masterkreatif.com###fbox-display:remove() www.masterkreatif.com###fbox-close:remove() www.masterkreatif.com###fbox-background:remove() ||measingly.info^* ||www.measingly.info^* ||urwapc.com/wp-content/uploads/2017/08/start.gif$image ||urwapc.com/wp-content/uploads/2017/08/OvnWlY.png$image ||i.plug.it/iplug/js/lib/iol/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||start.att.net/images/track/track.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||start.att.net/images/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.qbyzytmymz.bid^* ||qbyzytmymz.bid^* ||www.cvwipkjyu.bid^* ||www.bnfjallm.bid^* ||cvwipkjyu.bid^* ||bnfjallm.bid^* ||activity.windows.com^* ||register.cdpcs.microsoft.com^* ||bn2.notify.windows.com^* ||www.vgomgphs.bid^* ||vgomgphs.bid^* ||www.qnjxxbvgfgz.bid^* ||qnjxxbvgfgz.bid^* ||ads2.adverline.com^* scribol.com##.cntnt-02.ad-wrapper.inner-ad-wrapper:remove() ||reg.sorensonmedia.com^* !||cdn1-25944061.algovid.tv/Child-Sponsorship_Wide-Ad_$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.algovid.tv/Child-Sponsorship_Wide-Ad_$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||evaff.com/jsonp.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||evaff.com^* !||tmozs.com/jsonp.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tmozs.com^* ||bridge.sfo1.admarketplace.net^* ||victoriabrides.go2affise.com^* ||www.breaitbart.com^* ||www.clickvalidator.net^* !||victoriabrides.com/land/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||victoriabrides.com^* ||track.blessbiz.online^* ||hatevery.info^* ||www.hatevery.info^* ||security-alert.6zz5w4.top^* ||www.hitcpm.com^* !||www.hitcpm.com/watch$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sp.escapicon.net/sas/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pmb1.tj.ali213.net/Pics/2017/bbs_tl2118_980c90.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pmb1.tj.ali213.net/Pics/2017/bbs_tl1112_980c90.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css omgcheckitout.com###ouibounce-modal:remove() !||verification.mytbar.com/router/fit/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||verification.mytbar.com^* ||sport.blpmovies.com^* !||d8b981ea2ecd.bitsngo.net/js/lp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d8b981ea2ecd.bitsngo.net^* ||ah.groundsec.com^* ||delivery-us-central-1.openx.net^* ||wikia-d.openx.net^* ||adbroker.mp.dse.microsoft.com^* ||ah.ridersec.com^* !||beacon.wikia-services.com/__track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||beacon.wikia-services.com^* !||crrepo.com/extban/92161620/creatives/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||crrepo.com/extban/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||csm2waycm-atl.netmng.com^* ||www.predictivadnetwork.com/a/display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c0.froala.com^* !||hcount.galilcloud.wixapps.net/pages/counter/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hcount.galilcloud.wixapps.net^* ||inffuse-fbpopup.appspot.com/js/analyt.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||resources.blogblog.com/img/blank.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||blogger.l.google.com/img/blank.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||img1.blogblog.com/img/blank.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.kmefggxf.bid^* ||kmefggxf.bid^* !rutor.info###b_tz_208.b_tz_on_top:remove() rutor.info##div[id="b_tz_208.b_tz_on_top"]:remove() nnm-club.name##div[id="M345134Composite618677"]:remove() nnm-club.name##div[class^="mg_addad"]:remove() !||counter.lentainform.com/setmuidn/images/mui.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||counter.lentainform.com^* ||c.adsco.re^* ||www.welzgxwtvto.bid^* ||welzgxwtvto.bid^* ||ed2k.2x4u.de/mfc/$image ||cdn.comss.net/action/yab.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||greenfelder.link/iframeC/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||greenfelder.link/js/lib.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||greenfelder.link^* ||ads.revjet.com^* !||lendingtree.sp1.convertro.com/view/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lendingtree.sp1.convertro.com^* ||t.ztsrv.com^* !||pixel.quantserve.com/pixel/p-c2NIkAiST3oJA.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pixel.quantserve.com^* !||www.hardwarecanucks.com/tw_adserve/tw_adserve.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.hardwarecanucks.com/tw_adserve/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vcfs6ip5h6.bid^* ||nowcheck.greatforcontentsthismonth.review^* ||d3ahgapsispy4o.cloudfront.net^* ||js.cyclebodysigns.com^* ||js.bestquickcontentfiles.com^* ||www.thatsolidstreaming.win^* ||www.adsystems.live/advertising/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lie2anyone.com^* ||npdaqy6x1j.me^* ||new-game-apk.com/wp-content/uploads/2017/07/000022B_SLUT_18_ALL_EN_121_L.gif$image ||new-game-apk.com/wp-content/uploads/2017/07/ads-ngp.jpg$image ||lightboxapi2.azurewebsites.net/event/pageview/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ibt-d.openx.net^* ||ads.financialcontent.com^* ||cdn.raidforums.com/i/RF_fF8n.gif$image ||seccosquared-d.openx.net^* definition.org###sidebar-wrapper:remove() definition.org##.mobile-opt.mvp_ad_widget:remove() !||definition.org/ads/config/config.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||definition.org/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||games.blpmovies.com^* !||a20af6699b08d299866c-214c194cdc974334d325e7dcb0a8a955.r57.cf5.rackcdn.com/install/img/start.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a20af6699b08d299866c-214c194cdc974334d325e7dcb0a8a955.r57.cf5.rackcdn.com^* ||d3rhktq8uy839j.cloudfront.net^* !||reportantu.info/popunder.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||reportantu.info^* ||widgets.pinterest.com/v1/urls/count.json$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||opertures.com^* www.clevelandjewishnews.com###tncms-region-ads-fixed-big-ad-top-asset:remove() !||2youtds.biz/r/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||2youtds.biz^* !||infoforeme.com/r/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||infoforeme.com^* !||check-weather.biz/pix.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||check-weather.biz^* ||get.1quick-download-files.win^* ||1quick-download-files.win^* !||trust.zone/api_ip_info.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||trust.zone^* ||www.tns-counter.ru^* ||yadi.sk/tns.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||collector.githubapp.com/github/page_view^* ||collector.githubapp.com^* ||www.dx.com/ru/affiliate/identify-script$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||aliru1.ru/0d3hx/counter.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||i.mixadvert.com^* !||m.mixadvert.com/show/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||m.mixadvert.com^* ||data.adtags.pro^* !||rum.logsss.com/rum.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rum.logsss.com^* ||utarget.ru/ranging/*/click/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||css.gbtcdn.com/imagecache/GB3/mincss/promotion/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||css.gbtcdn.com/imagecache/GB3/minjs/affl.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||css.gbtcdn.com/imagecache/GB3/minjs/logsss_common.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||css.gbtcdn.com/imagecache/GB3/minjs/promotion/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rustorka.com/gdrhdfh.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mrantifun.net/adsx.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.hashing.win/scripts/min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.hashing.win^* ||www.bulkmegacapital.com^* ||bulkmegacapital.com^* ||upgradeget.yourgreatcontent-2site.bid^* ||www.amazing-latestsysforupdatestodaytoday.date^* ||amazing-latestsysforupdatestodaytoday.date^* ||account.service.manage-intl-aspxidd.ga^* ||nowtestpc.stabilitycontentload.review^* www.techarp.com##.widget_jetpack_display_posts_widget.widget:remove() !www.techarp.com##.clearfix.momizat-ads.widget:nth-of-type(5):remove() www.techarp.com##div[id^="clearfix.momizat-ads.widget"]:remove() ||r4nwdude.com^* ||www.r4nwdude.com^* ||www.yourstabilitycentercontent.win^* ||yourstabilitycentercontent.win^* ||d7t0ajd8uy1xk.cloudfront.net^* ||cdn01.x-plarium.com/browser/old/content/pp.landings/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fbcdn.net/security/hsts-pixel.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||srv.imonomy.com/UserMatching/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||srv.imonomy.com^* !||tracker.x-plarium.com/tracker/canvas.ashx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tracker.x-plarium.com^* ||d9hhrg4mnvzow.cloudfront.net/www.searchtuner.com$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||deloton.com^* ||dxvzdwfoicozxik.net^* !||go.pushnative.com/ntfc.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||go.pushnative.com^* ||t.unbounce.com^* ||www.jzrputtbut.net/intermission/loadTargetUrl$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.jzrputtbut.net/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.searchtuner.com/download/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.searchtuner.com^* ||searchtuner.com^* ||omerta.is/themes/flow/js/clipboardjs/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||waframedia20.com^* ||d3pkntwtp2ukl5.cloudfront.net/uba.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d2xxq4ijfwetlm.cloudfront.net/m/lp-webapp/api/unbounce.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css clkmein.com##div[id*="intermediate-ad"]:remove() shorte.st##div[id*="intermediate-ad"]:remove() ||getunblock.xyz^* ||api.pinterest.com/v1/urls/count.json$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||movie.mysuperappbox.com^* ||www.nextlnk1.com^* ||p63327.inclk.com^* !||meyonet.ru/0a49261525bffff848ad0b44922b381f.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||meyonet.ru/4d842ffc495a2ebaa2606a2fea2484a5.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||meyonet.ru/5a22a9ff58ea085e531af20bfaf7b619.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||meyonet.ru/f70c54bb3252891faccddc1ebaa18787.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||meyonet.ru^* ||adwalte.info^* !||adtraff.com/404.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adtraff.com/arbro.cgi$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adtraff.com/mkhrrt.cgi$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adtraff.com/teytf*.cgi$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adtraff.com^* !||ermunke.ru/4d842ffc495a2ebaa2606a2fea2484a5.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ermunke.ru/e59122f92ab94e281b567064c64a258f.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ermunke.ru/6d32f49cc1444a5071f8ff5131f00196.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ermunke.ru/d62eebd617f820b12728a91e728c7214.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ermunke.ru^* ||tasty-boobs.com/mul_ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||main.exosrv.com/img-click.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||i1.imageban.ru/out/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||i1.imageban.ru^* !||latest-419251.skurki.info^* !||latest-466702.skurki.info^* !||latest-462363.skurki.info^* !||latest-452434.skurki.info^* ||latest-*.skurki.info^* ||pixel.vihub.ru/smart/_pub/advmaker/dist/smartPixel.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||otuweb.ru^* !||privdl386.bid/go.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||privdl386.bid^* ||www.live-rutor.eu/i/5347aa2f1f3d0.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||meryga.ru/47d0a6555ae7c12e62c5dfd1b3c0d37b.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||meryga.ru^* ||ad-jan10.bid^* ||www.live-rutor.eu/i/12.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dubochiy.ru^* ||arequiry.info/popunder.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tm.ad-srv.net^* ||www.friendlyduck.com/pan/scripts/trackjs.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||3.bp.blogspot.com/-pAmTvt48_aU/WeXtp_hIwNI/AAAAAAAAT6s/2VPOnqG2yYw4NhfSB8xqAHR5QqB_-o39wCLcBGAs/s1600/southhindidubbed.jpg$image ||checkthis.website^* !||congratulations.com-o10.top/click/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||congratulations.com-o10.top/static/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||congratulations.com-o10.top^* !||congratulations.s-10.xyz/click/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||congratulations.s-10.xyz/static/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||congratulations.s-10.xyz^* !||finalstars.com/r/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||finalstars.com^* !||jebtrack.com/click.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||jebtrack.com^* ||xml.adhunter.media^* !||fileonbox.pw/doubleclick/exchange-ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||fileonbox.pw/doubleclickxa/exchange-ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fileonbox.pw^* !||www.adexchangeguru.com/jump/next.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.bitonclick.com/jump/next.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.theadgateway.com/jump/next.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adexchangeguru.com/jump/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.bitonclick.com/jump/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.theadgateway.com/jump/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||39d1d397c97730.com^* ||analytics.ssbbartgroup.com^* ||pleasewait.win^* !||cms.c1exchange.com/cookie/match/adv/adx/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cms.c1exchange.com^* !||px.c1exchange.com/pubpixel/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||px.c1exchange.com^* !||click.redirecting.zone/click^* ||click.redirecting.zone^* ||stupiddope.com/wp-content/plugins/ione-ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.a3m.io/i136.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.a3m.io^* !||www.ilovecookies.co/click$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.ilovecookies.co^* !||nextoptim.com/script/packcpm.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nextoptim.com^* !||xml.eximdigital.com/click$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xml.eximdigital.com^* !||xml.pdn-5.com/click^* ||xml.pdn-5.com^* ||k13tjwa3.me^* ||www.mcssl.com/SecureClient/track.ashx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stats.lxle.net^* !||track.customer.io/events/page.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||track.customer.io^* ||assets.customer.io/assets/track.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.slant.co/js/track.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn-s2s.buysellads.net/pub/slant.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn-s2s.buysellads.net^* !||ping.typekit.net/p.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ping.typekit.net^* ||www.cio.com/www.idge/js/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.cio.com/www/js/ads/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.stack-sonar.com/ping.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||webstats.gnome.org/piwik.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||webstats.gnome.org^* ||www.dxkhboqrrimy.bid^* ||dxkhboqrrimy.bid^* ftps.codeplex.com###msccBanner:remove() ||wapkiz.fastcdn.us/img/Disable-Adblock.png$image 1337x.info###popDiv:remove() ||1337x.info/js/lazyloadload.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.niajmtjqexq.co^* ||niajmtjqexq.co^* ||onhax.net/wp-content/plugins/quick-pagepost-redirect-plugin/js/qppr_frontend_script.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d1k0glcmk0b5rb.cloudfront.net^* ||www.ghizipjlsi.bid^* ||ghizipjlsi.bid^* ||attraction.heatrain.bid^* ||channel.cherriesbabies.bid^* ||www.hdimfhptnjgm.bid^* ||hdimfhptnjgm.bid^* ||bolb.blob.core.windows.net^* ||need.pigsbasket.bid^* ||v3.jiathis.com/code/css/jiathis_counter.css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||v3.jiathis.com/code/images/counter.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.szxc365.com/timev/ad_mode.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.szxc365.com^* ||ucstc5.yjyc-ask.com/res/images/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||su.8881919.cc^* !||su.8881919.cc/cpc/c1.ashx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||su.8881919.cc/js/cpc_rp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||su.8881919.cc/psc/rp.ashx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||web.users.51.la/go.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.naixiu818.com/index_clear.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.naixiu818.com/thankyou/smart.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||nwejs.alcryp.com/d.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nwejs.alcryp.com^* ||js.jybeijia.com/s.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||j.qiqivv.com:6060/blog/view_i20150908.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||uu.hirb4.cn/iclk/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s2.hnhbyxdq.com/alm/dl/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||gotoweburl.webfly.bid/images/bill960x90.gif$image ||gotoweburl.webfly.bid^* ||js152.xuanmeiguoji.com/wejs/cshow$subdocument nanrencili.net###__QQCP_LEFT_Div:remove() nanrencili.net###__QQCP_RIGHT_Div:remove() nanrencili.net###adfdiv:remove() !nanrencili.net##.am-container:nth-of-type(5) > .am-panel-default.am-panel:remove() nanrencili.net##div[id*="am-panel-default.am-panel"]:remove() !||go.gotourl.xyz/bill.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||go.gotourl.xyz^* ||j.sjzdomeili.com/dot.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||m.hascosafety.com:88/cpm/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||m.hascosafety.com:88/v.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||m.hascosafety.com^* !||dfx.vnnv777.cn/show.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dfx.vnnv777.cn^* ||ucstc5.yjyc-ask.com/js/swfobject.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css cilidaquan.xyz###vaea_22841_vvvaxx_1:remove() cilidaquan.xyz###vaea_22840_vvva_1:remove() ||tp.sxknitting.com.cn/*/IMG_*.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||minidoc.ru/bnrs/counter.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.aio.media/requestad$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.bulkofforcontentgreat.bid/bl.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.bulkofforcontentgreat.bid^* !||pcupgrade.thebiggestcentercontentsclear.trade/bl.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pcupgrade.thebiggestcentercontentsclear.trade^* !||doomna.com/dezaula.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||doomna.com/web-click$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||doomna.com^* !||sync.upravel.com/google/sync$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sync.upravel.com^* ||relap.io/abp.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sync.datamind.ru/cookie/accepter$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||relap.io/partners/tfcs$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||relap.io/partners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad-m.asia^* !||ip.hivps.xyz/system-cilidaquan$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ip.hivps.xyz^* !||n0-r2d2.piguiqproxy.com^* !||n6-r2d2.piguiqproxy.com^* ||n*-r2d2.piguiqproxy.com^* ||n2-r98d2.piguiqproxy.com^* !||yaranitsa.info/ddrive.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||yaranitsa.info^* !||ymetrica.com/metrika/advert.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ymetrica.com/metrika/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.jsdelivr.net/npm/yandex-metrica-watch/tag.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.jsdelivr.net/npm/yandex-metrica-watch/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.yardbarker.com###lightbox:remove() www.yardbarker.com###overlay:remove() ||shrinklink.co/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||maps.googleapis.com/maps-api-v3/api/js/31/7/stats.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||defpush.com/ntfc.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||defpush.com^* !||certify-js.alexametrics.com/atrk.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||certify-js.alexametrics.com^* !||tag.mtrcs.samba.tv/v3/tag/fmg/homepage/sambaTag.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tag.mtrcs.samba.tv^* ||twimgs.com/nojitter/gama/js/oasTrack_v1.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||twimgs.com/informationweek/elqNow/elqCfg.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||twimgs.com/informationweek/elqNow/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||twimgs.com/nojitter/gama/js/elqtracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||i.ubm-us.net/oas/nativead/js/game_nativead.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||i.ubm-us.net/oas/nativead/js/nativead.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||i.ubm-us.net/oas/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||doubleclick2.xyz^* ||www.doubleclick2.xyz^* ||www.rapidvideo.com/js/videojs.ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pussl32.com^* ||c1.rfihub.net/js/smarttag.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a2.storegames.xyz/!_lb.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a2.storegames.xyz/!_top.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a2.storegames.xyz/!_sk.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a2.storegames.xyz/!_bs.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a2.storegames.xyz/!_b1.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a2.storegames.xyz/!_btm.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a2.storegames.xyz/!_bt.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css abc7.com###pm_ad:remove() !||duzt6rhr7wo8p.cloudfront.net/246740/$image !||duzt6rhr7wo8p.cloudfront.net/251103/$image !||duzt6rhr7wo8p.cloudfront.net/246863/$image ||duzt6rhr7wo8p.cloudfront.net^* ||abcotv.hb.omtrdc.net^* ||axeobgnsk.com^* ||www.axeobgnsk.com^* ||www.okkytnaadhsqnb.com^* ||okkytnaadhsqnb.com^* ||tqmongcai.com^* ||www.tqmongcai.com^* ||jwz.3conline.com/adpuba/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ivy.pconline.com.cn/adpuba/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||talk.lk/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdnjs.cloudflare.com/ajax/libs/popper.js/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !pasted.co###spout-unit-iframe-54d45745-6acf-461e-98e4-4735796a5d3a--L4NEyKU_sGBF2WbpWb0:remove() !pasted.co###spout-unit-iframe-35401c66-8435-4e38-890e-9e66b1118601--L4NUb5F5KvIq7arAGFk:remove() pasted.co##div[id^="spout-unit-iframe-"]:remove() pasted.co##div[class^="spout-unit-iframe-"]:remove() pasted.co##div[title^="spout-unit-iframe-"]:remove() pasted.co##div[name^="spout-unit-iframe-"]:remove() !||pasted.co/253215c8/fullscreen.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pasted.co/*/fullscreen.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !removes the pasted text !||cdn.fancybar.net/ac/fancybar.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.fancybar.net^* !||s.spoutable.com/units/master/shell.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s.spoutable.com/units/master/showcase.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.spoutable.com^* ||spoutablemat4.powr.com^* ||asset.pagefair.com/measure.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pasted.co/public/images/bg.png$image !||s3.buysellads.com/ac/bsa.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s3.buysellads.com^* !||select.brealtime.com/ttj^* ||select.brealtime.com^* ||engine.carbonads.com^* rufus.akeo.ie##center > .adsbygoogle:remove() ||queurow.pro^* ||www.queurow.pro^* totallyrank.com##.btn-lg.btn-primary.btn:nth-of-type(1):remove() totallyrank.com##.btn-lg.btn-primary.btn:nth-of-type(2):remove() ||agreenwich.info^* softasm.com##.download:nth-of-type(2):remove() !softasm.com##center:nth-of-type(3) > a[href^="https://agreenwich.info/tiefile"] > .the-ad-break:remove() softasm.com##div[class*="the-ad-break"]:remove() ||js.srcsmrtgs.com/js/ad.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||foxsports.hb.omtrdc.net^* ||s.nflcdn.com/static/site/7.5/scripts/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.nflcdn.com/static/site/7.5/scripts/ad.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nfl.demdex.net^* !||stat.radar.imgsmail.ru/update^* !||counter.snackly.co/_.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||counter.snackly.co^* !||gscounters.us1.gigya.com/gscounters.sendReport$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gscounters.us1.gigya.com^* ||b3g8i8r3.map2.ssl.hwcdn.net/_.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||storage.googleapis.com/drive-bulk-export-anonymous/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||p.nfltags.com/omniture/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cbsinteractive.hb.omtrdc.net^* ||www.pccrack.net/wp-content/uploads/2018/01/upload4earn.png$image ||upload4earn.com/mngez/images/mngez-maxspeed.swf$object ||upload4earn.com/mngez/images/mngez-minspeed.swf$object !www.kentuckynewera.com###blox-ad-position-block-leaderboard-top1:remove() !www.kentuckynewera.com###blox-ad-position-fixed-big-ad-middle2:remove() !www.kentuckynewera.com###blox-ad-position-fixed-big-ad-middle4:remove() !www.kentuckynewera.com###blox-ad-position-fixed-big-ad-middle1:remove() !www.kentuckynewera.com###blox-ad-position-fixed-big-ad-top1:remove() www.kentuckynewera.com##div[id^="blox-ad-position"]:remove() ||bloximages.chicago2.vip.townnews.com/kentuckynewera.com/content/tncms/assets/v3/bannerad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||kentuckynewera.us.intellitxt.com^* !||www.kentuckynewera.com/shared-content/art/stats/common/tracker.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.kentuckynewera.com/shared-content/art/stats/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||srv.adngin.com^* ||track.adngin.com^* ||rutrk.org/iframe/adbet-top-1.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.file.ge###cboxOverlay:remove() ||5.10.35.208/BMS/bms.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.file.ge/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.file.ge/popup3.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.file.ge/popup1.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bms.adjarabet.com^* ||counter.top.ge/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s2.dnaxddnc.com/dot.gif$image ||dl.2archivefaststorage.stream^* ||fusttds.xyz^* ||www.fusttds.xyz^* ||maps.googleapis.com/maps-api-v3/api/js/31/8a/stats.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.pdfforge.org/sites/all/modules/adsense/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lot-309.com^* ||www.lot-309.com^* nanrencili.net##.am-padding-bottom-0.am-panel-bd:remove() nanrencili.net###\31 6720_vvva:remove() nanrencili.net###__dsje_r_b_330:remove() !nanrencili.net###vaea_16720_vvva:remove() !nanrencili.net###vaea_16721_vvvaxx:remove() !nanrencili.net###vaea_16721_vvvaxx_1:remove() !nanrencili.net###vaea_17601_vvva:remove() !nanrencili.net###vaea_17601_vvva_1:remove() nanrencili.net##div[id^="vaea_"]:remove() ||ads.everquote.com^* ||pussl47.com^* ||www.pussl47.com^* ||cdn.arenabg.com/share/jscripts/analytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css 1337x.info###sampopDiv:remove() ||server.adnet.bg/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||profitshare.bg/images/advertiser_widgets_shared/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !www.pornhugo.com##.multiple.ad-container:nth-of-type(5) !www.pornhugo.com##.multiple.ad-container:nth-of-type(7) www.pornhugo.com##div[class^="ad-container"]:remove() www.pornhugo.com##div[class="ad-place"]:remove() ||www.pornhugo.com/exoads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||profitshare.bg/j/wd5$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pl109176.puserving.com^* !arenabg.ch###profitshare-static-g0bttetlo:remove() !arenabg.ch###profitshare-static-fz5cpgupv:remove() arenabg.ch##div[id^="profitshare-"]:remove() arenabg.ch##div[id^="beacon_"]:remove() arenabg.ch##div[class="ad-close"]:remove() arenabg.ch##div[class="adbox"]:remove() arenabg.ch##.arena_13.p5.panel-footer:remove() ||bg.search.etargetnet.com/frontend/logos/bg/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||b.grabo.bg/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d5p.de17a.com/getuid/stickyads$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||speed-downloader.srchmgrh.com^* !||js.conceptscleanapps.com/dl.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||js.conceptscleanapps.com^* ||djd4ty6qcj3a3.cloudfront.net^* ||www.baixaki.com.br/adframe.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.baixaki.com.br/b.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.baixaki.com.br/img/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.baixaki.com.br/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||z.track136.com/js/z.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||z.track136.com^* ||b.t.tailtarget.com^* !||public-prod-dspcookiematching.dmxleo.com/dmx?target=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||public-prod-dspcookiematching.dmxleo.com/listdsps$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||public-prod-dspcookiematching.dmxleo.com^* !||banner.boostbox.com.br/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||banner.boostbox.com.br/integrations/script.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||banner.boostbox.com.br^* !||gu.dyntrk.com/dp/navegg.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gu.dyntrk.com^* ||tt-10709-3.seg.t.tailtarget.com^* ||tt.onthe.io^* ||www.boostbox.com.br/api/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ads.yap.yahoo.com/nonSDK/beacon/v1/beacon.do$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ads.yap.yahoo.com/nosdk/wj/v1/getAds.do$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.yap.yahoo.com^* ||affiliate.gamesdeal.com/scripts/track.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||affiliate.gamesdeal.com/scripts/trackjs.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.cazamba.com/campanhas/2017/adx/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.cazamba.com/common/banner-js.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lb.nznweb.com.br/tracker/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||shop.windfurniture.bid^* ||cars.apparatusmeeting.bid^* ||spacedownload.ru/track/storify/source/campaign-ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.boostbox.com.br/auto_complete/script.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||t.tailtarget.com/__tt.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||t.tailtarget.com^* !||b.t.tailtarget.com/cazamba.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hcg82f2b.com^* ||traffic.focuusing.com^* ||www.snapengage.com/cdn/js/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||x1337x.ws/js/auto-searchv2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||x1337x.ws/js/badeacdfceafdfd.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css x1337x.ws##.mgbox !||traffic.tgdaudience.com/redir/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||traffic.tgdaudience.com^* ||services.fulllab.com.br/pixel.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tag.navdmp.com/tm*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tag.navdmp.com^* !||cm.t.tailtarget.com/fulllab$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cm.t.tailtarget.com^* ||navdmp.com/dfpnvg.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||t.cfjump.com/tag/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||t.cfjump.com^* !||tags.fulllab.com.br/scripts/master-tag/produto_baixaki.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tags.fulllab.com.br^* !||tags.t.tailtarget.com/t3m.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tags.t.tailtarget.com^* !||mg.marketgid.com/mghtml/framehtml/c/n/n/nnm.me.648120.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mg.marketgid.com^* !||d.t.tailtarget.com/profile$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d.t.tailtarget.com^* !||d.tailtarget.com/base.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||d.tailtarget.com/conversion.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||d.tailtarget.com/profiles.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d.tailtarget.com^* !||webcafe.bg/arena.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||webcafe.bg/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.webcafe.bg/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||d0ehy.voluumtrk.com^* ||nexus.ensighten.com/hearst/mag-uk/code/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rep.myappzcollection.com^* forums.cncnz.com###blocker:remove() ||re.gtosite.com^* !||7proof.com/app/feedclick$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||7proof.com^* ||crash.steampowered.com^* cracksnow.com##.btn-lg.btn-raised.btn-primary.btn:nth-of-type(1):remove() cracksnow.com##.btn-lg.btn-raised.btn-primary.btn:nth-of-type(2):remove() cracksnow.com##.entry-content > center > .btn-raised.btn-primary.btn:nth-of-type(1):remove() cracksnow.com##.entry-content > center > .btn-raised.btn-primary.btn:nth-of-type(2):remove() ||sedoparking.com/frmpark/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||findbetterresults.com^* ||diapplicity.info^* ||links.services.disqus.com/api/ping$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||f.ssl.fastly.net/api/ping$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d138am4hd4ke4y.cloudfront.net^* !||ec2-52-206-184-243.compute-1.amazonaws.com/file/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ec2-52-206-184-243.compute-1.amazonaws.com^* !||advert-serv.johnmorris.me/adserver/adlogger_tracker.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||advert-serv.johnmorris.me^* ||4requests.org^* ||www.4requests.org^* !||fridrici.info/popunder.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fridrici.info^* ||www.fridrici.info^* ||snopes-d.openx.net^* ||analytics.m2.ai^* ||www.npttech.com/advertising.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||chachatool.com/r/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||chachatool.com^* ||www.chachatool.com^* ||zindas.info^* ||www.zindas.info^* !||jof-03.com/r/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.jof-03.com^* ||jof-03.com^* !||queuecosm.bid/fp.rev3.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||mango-ddk.com/redirect_to.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mango-ddk.com^* ||aa.online-metrix.net^* !||h.online-metrix.net/fp/tags.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||h.online-metrix.net/fp/sid_fp.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||h.online-metrix.net^* !||h64.online-metrix.net^* /^https?:\/\/h\d+\.online\-metrix\.net/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||h-signifyd.online-metrix.net^* !||h-discover.online-metrix.net^* !||h-samsclub.online-metrix.net^* !||h-ups.online-metrix.net^* /^https?:\/\/h\-\w+\.online\-metrix\.net/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||edge.fullstory.com/s/fs.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||edge.fullstory.com^* !||fullstory.com/s/fs.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fullstory.com^* ||ouo.io/js/pop.tx.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||i0.wp.com/sadeemapk.com/APKdl/Download-APK-Mod.png$image sadeemapk.com##div:nth-of-type(3) > a[href^="https://href.li/"]:remove() sadeemapk.com##div:nth-of-type(2) > a[href^="https://href.li/"]:remove() sadeemapk.com##div:nth-of-type(1) > a[href^="https://href.li/"]:remove() sadeemapk.com##center > a[href^="https://href.li/"]:remove() !||rustorka.com/1xb.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||wsp.marketgid.com/ws$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wsp.marketgid.com^* ||i0.wp.com/sadeemapk.com/wp-content/uploads/2017/10/Download-Apk.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||metric-agent.i10c.net/record$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||metric-agent.i10c.net^* ||ums.adtechus.com^* ||cm.adgrx.com^* zap.in##div[class*="flexContentAd"]:remove() zap.in##div[class*="flexBeforeAd"]:remove() zap.in##div[class*="flexAfterAd"]:remove() ||api.revolt.tv/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.jkiwvfgrsythrw.com^* ||jkiwvfgrsythrw.com^* ||www.qitumxisyt.com^* ||qitumxisyt.com^* ||click.findwhat.com^* ||ads.vidoomy.com^* ||ppndr.net/assets/js/script.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ppndr.net/assets/js/license.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||track.advendor.net^* ||installlog.flightsimlabs.com^* www.arcadepunks.com###wbounce-modal-sub:remove() www.arcadepunks.com###wbounce-modal-flex:remove() www.arcadepunks.com###wbounce-modal:remove() !||adservice.google.co.uk/adsid/google/ui$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adservice.google.co.uk^* !||lockedinmedia.co/track/click.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lockedinmedia.co/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||track.salesflare.com/flare.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||track.salesflare.com/flareprovider.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||track.salesflare.com^* ||www.dsogaming.com/wp-content/plugins/cfmonitor/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.dsogaming.com/wp-content/plugins/google-analytics-for-wordpress/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.kuwogsiplp.com^* ||kuwogsiplp.com^* ||www.tuxzictbrqietq.com^* ||tuxzictbrqietq.com^* ||player.cnevids.com/interlude/arstechnica.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||softserve.8ch.net/azvn/imagefetch/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css 8ch.net###\38 ch-top-ads:remove() ||hollaforums.com/if/resp/pf/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||c.adexchangemachine.com/script/wait.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c.adexchangemachine.com^* !||tut-64.com/rtb/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tut-64.com^* !||mediapeartree.com/pu-placer.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mediapeartree.com^* !||i.yimg.jp/images/listing/tool/yads/yads-iframe.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||i.yimg.jp/images/listing/tool/yads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||webryblog.biglobe.ne.jp/cgi-bin/Count.cgi$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||j.microad.net/js/compass.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||j.microad.net^* !||jgl.microad.net/js/compass.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||jgl.microad.net^* ||webryblog.biglobe.ne.jp/js/ads_link_unit_bottom.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ssp.send.microadinc.com^* !||s-rtb.send.microadinc.com/ad^* ||s-rtb.send.microadinc.com^* ||s.yimg.jp/images/advertising/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s.yimg.jp/images/listing/tool/yads/uadf/yads_vimps-1.5.0.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.yimg.jp/images/listing/tool/yads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s.yimg.jp/images/advertising/common/js/iicon.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||yads.yahoo.co.jp/js/yads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||yads.yahoo.co.jp^* ||yads.yjtag.yahoo.co.jp^* !||yads.c.yimg.jp/js/yads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||yads.c.yimg.jp^* ||im.ov.yahoo.co.jp/tag/?adprodset=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.explorewin.com##.gradient.btn-lg.btn-primary.btn:nth-of-type(2):remove() www.explorewin.com##.gradient.btn-lg.btn-primary.btn:nth-of-type(1):remove() uploadbuzz.net##.btn-dl-plus.btn-info.btn:remove() www.pccrack.net##.code-block-7.code-block > center > a[href^="https://href.li/"]:remove() ||arfttojxv.com^* ||vimenhhpqnb.com^* ||ftymjfywuyv.com^* ||www.arfttojxv.com^* ||www.vimenhhpqnb.com^* ||www.ftymjfywuyv.com^* ||tcurvey.info^* ||www.tcurvey.info^* ||amjadfreesoft.com/wp-content/uploads/2018/03/upload4earn.png$image !||sz.on.aol.com/advertisers/advertisers.txt$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sz.on.aol.com/advertisers/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||a.mstrlytcs.com/v1/a?ty=impression$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.mstrlytcs.com^* ||freestar-d.openx.net^* !||delivery.vidible.tv/placement/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||delivery.vidible.tv^* !prevents videos hosted on AOL !||beacon.krxd.net/event.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||beacon.krxd.net^* ||d1nmxiiewlx627.cloudfront.net^* ||images.smartname.com/scripts/nmads_caf_20170727.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fixinst.com^* ||reachinst.com^* ||i3j3u3u9.ssl.hwcdn.net/TheGameSearcher/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pixel.pxcollect.com/pixel.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pixel.pxcollect.com^* ||download.howtosimplified.com^* ||howtosimplified.dl.myway.com^* ||howtosimplified.dl.tb.ask.com^* ||exotional-rephings.com^* ||sergeistrelec.ru/templates/sstr/images/CEX-3-728x90.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||h8vzwpv.com^* ||www.h8vzwpv.com^* !||best2017games.com/cuntwars/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||best2017games.com^* magazine.odroid.com##.all-services:remove() !||magazine.odroid.com/wp-content/plugins/super-socializer/images/transparent_bg.png$image !||magazine.odroid.com/wp-content/plugins/super-socializer/images/close.png$image ||magazine.odroid.com/wp-content/plugins/super-socializer/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lp.easyziptab.com^* ||newtab-media.com^* ||search.newtab-mediasearch.com^* !||b.adexchangemachine.com/script/wait.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||b.adexchangemachine.com^* ||crrepo.com/ban/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s3.amazonaws.com/dynamic-extensions/nt/newtab-media.com.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.onclickbright.com/a/display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.toexten.com/lp4^* !||www.toexten.com/lp2^* !||www.toexten.com/lp8_4^* ||www.toexten.com^* ||medianewpage.com^* ||search.medianewpagesearch.com^* ||s3.amazonaws.com/dynamic-extensions/combined/medianewpage.com.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||androidforums.com/library/AdManager/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dropapk.com/ads.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||elanatality.info^* ||www.elanatality.info^* ||www.provalist.info^* ||promopure.com/images/promotion/$image ||lerodes.com^* !||gigaonclick.com/script/i.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||gigaonclick.com/a/display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gigaonclick.com^* !||promopure.com/outpromotion/apkpuredown-728x150$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||promopure.com/outpromotion/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||webcompon.info/popunder.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||webcompon.info^* ||windowssecurity.network^* ||colches.com^* ||www.colches.com^* !threadsphere.bid###_bd.sm_content:remove() threadsphere.bid###fade:remove() ||isavetube.com/a2zapk/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||colchesi.info^* ||www.colchesi.info^* ||spsvcpc-tls.i-mobile.co.jp/ad_spot.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sh.adingo.jp^* ||i.adingo.jp^* ||cdn-fluct.sh.adingo.jp^* ||spdeliver.i-mobile.co.jp/script/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||spdeliver.i-mobile.co.jp/script/adcore_pc_inline.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||x9.shinobi.jp/track?cid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.linkbucksmedia.com/7d7fd135ff9ceee15e57/88776d08d9f53ae716ea$subdocument ||structos.info^* ||www.structos.info^* ||www.comodo.com/images/pixel.track2$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.orbitz.com/cl/1x1.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.travel-assets.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||a.travel-assets.com/* !blocks Orbitz website functions www.maketecheasier.com##div[id^="MTE_in_content_ad"]:remove() www.maketecheasier.com##div[id*="adsbygoogle"]:remove() www.maketecheasier.com##div[id^="desktop-adisplay"]:remove() ||securetrackloading.com^* ||www.securetrackloading.com^* ||xml.adright.com^* ||www.majorsweeps.com/images/banner_ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css uploadburst.com##div[class="adsbygoogle"]:remove() uploadburst.com##div[class="adsbox"]:remove() ||uploadburst.com/cgi-bin/tracker.cgi$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.amz.mshcdn.com/assets/advertisement-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||a.amz.mshcdn.com/* !blocks content on the Mashable website !||i.amz.mshcdn.com/* !blocks content on the Mashable website !||edge.quantserve.com/quant.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css does NOT block videos on EscapistMagazine website !does NOT block videos on EscapistMagazine website ||edge.quantserve.com !||rules.quantcount.com/rules-p-83WcMqNwWwE46.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rules.quantcount.com^* ||possessorrig.com^* ||www.possessorrig.com^* !||cpmstatsart.com/mnz/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cpmstatsart.com^* ||www.oyutube.com^* ||oyutube.com^* code.visualstudio.com###mscc-cookie-container:remove() code.visualstudio.com###skip-to-content:remove() ouo.io##div[id="movie_300_250_yellow"]:remove() ouo.io##div[id$="_sync"]:remove() !||www.morbitempus.com/js/show_ads_adsurge.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.morbitempus.com/man-sync.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.morbitempus.com/impression.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.morbitempus.com^* ||ad.trans.id/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||x1337x.ws/js/afcedabbadcadbcba.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ouo.io/js/pop.arh.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ouo.io/js/pop.mh.js?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ouo.io/js/zeroclipboard/jquery.zclip.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ouo.io/js/zeroclipboard/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||p220333.mycdn.co/script/rhpop_4.71-47.1.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||xml.adright.co/redirect^* ||xml.adright.co^* !||www.tr563.com/coverage.do$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.tr563.com/exit.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.tr563.com/intent/get?callback=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.tr563.com/p1.0-SNAPSHOT.144%2C207.do$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.tr563.com^* ||tr563.com^* ||api.viglink.com/api/ping$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||place.businessspoon.faith^* ||icicle.skatecrown.bid^* ||gamesrevenu24.com^* ||www.gamesrevenu24.com^* ||www.hicpm10.com^* ||hicpm10.com^* /^https?:\/\/cdn\d\.onlinefreecourse\.net\/hg\/js\/advertisement\.js/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css cdn1.onlinefreecourse.net##div[id="adblockinfo"]:remove() cdn2.onlinefreecourse.net##div[id="adblockinfo"]:remove() cdn3.onlinefreecourse.net##div[id="adblockinfo"]:remove() cdn1.onlinefreecourse.net##.btn-dl-plus.btn-info.btn:remove() cdn2.onlinefreecourse.net##.btn-dl-plus.btn-info.btn:remove() cdn3.onlinefreecourse.net##.btn-dl-plus.btn-info.btn:remove() !||rtb.adtube.ir/core/serve$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rtb.adtube.ir^* www.yasdl.com##div[class^="adtube"]:remove() ||adapi.digikala.com^* !||advertising.digikala.com/Content/campaigns/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||advertising.digikala.com^* ||6yezz.jo5xzyikx.s9eh.online^* ||760an.donb.gdn^* ||apwvx.adsbtrack.com^* ||trkap.com^* ||www.trkap.com^* ||www.t2lgo.com^* ||t2lgo.com^* ||*.bubblinks.com/more/index.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.bubblinks.com/readmore/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||69886988.bubblinks.com^* ||find-files.com^* ||clk.instant007.com^* !||affforce.com/scripts/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||affforce.com^* ||www.affforce.com/geo.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.linkingdom.com/more/index.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.linkingdom.com/readmore/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.linkingdom.com/hl/index.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.linkingdom.com/hidelink/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||4416844168.toptenshare.com/page.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||4416844168.toptenshare.com^* ||3853138531.linkingdom.com^* ||7042970429.linkingdom.com^* ||69566956.bubblinks.com^* docslide.net##div[class^="adsbygoogle"]:remove() ||lomer.nano-her-met.tk^* ||titan.infra.systems^* ||zulu.r867qq.net^* ||hqmedia.net^* ||pan.admeerkat.com^* !||gamefly.tt.omtrdc.net/m2/gamefly/mbox/standard?mboxHost=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ally.tt.omtrdc.net^* !||autoanything.tt.omtrdc.net^* !||barclaycardus.tt.omtrdc.net^* !||blockbuster.tt.omtrdc.net^* !||buycom.tt.omtrdc.net^* !||dellinc.tt.omtrdc.net^* !||discover.tt.omtrdc.net^* !||gamefly.tt.omtrdc.net^* !||gmac.tt.omtrdc.net^* !||lenovo.tt.omtrdc.net^* !||overstock.tt.omtrdc.net^* !||searsholdings.tt.omtrdc.net^* !||windowslive.tt.omtrdc.net^* !||wpni.tt.omtrdc.net^* !||samsungus.tt.omtrdc.net^* !||trellix.tt.omtrdc.net^* !||espndotcom.tt.omtrdc.net^* !||microsoftmscompoc.tt.omtrdc.net^* !||tmobile.tt.omtrdc.net^* !||coxcommunications.tt.omtrdc.net^* !||nflenterprises.tt.omtrdc.net^* !||usbank.tt.omtrdc.net^* !||ford.tt.omtrdc.net^* !||mcafee12.tt.omtrdc.net^* !||solarwinds.tt.omtrdc.net^* !||nvidia.tt.omtrdc.net^* !||attservicesinc.tt.omtrdc.net^* !||penfed.tt.omtrdc.net^* !||stampscom.tt.omtrdc.net^* !||pluralsight.tt.omtrdc.net^* !||subway2016.tt.omtrdc.net^* !||cdn.tt.omtrdc.net/cdn/target.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.tt.omtrdc.net^* !||capitaloneservices.tt.omtrdc.net^* ||*.tt.omtrdc.net^* ||logx.optimizely.com^* ||track.trackerclick.com^* ||adservices.brandcdn.com^* ||tracking.adsmain.com^* !||r2---sn-q4f7snee.c.2mdn.net/videoplayback/id/85995d6f645a40ca/itag/59/source/doubleclick_dmm/ratebypass/yes/ip/24.40.231.160/ipbits/0/expire/3600882487/sparams/expire,id,ip,ipbits,itag,mm,mn,ms,mv,nh,pl,ratebypass,source/signature/018E7A115BFB8CAAF5E435E64EE98D0F1F33D9E0.42C0D38E6BBC92DF27A8F45ECCCD615B98EA1889/key/cms1/cms_redirect/yes/mm/30/mn/sn-q4f7snee/ms/nxu/mt/1464983190/mv/m/nh/IgpwcjAzLmRmdzA2KgkxMjcuMC4wLjE/pl/23/file/file.mp4$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The following rule redirects the video to a null file instead. !||r2---sn-q4f7snee.c.2mdn.net/videoplayback/id/85995d6f645a40ca/itag/59/source/doubleclick_dmm/ratebypass/yes/ip/24.40.231.160/ipbits/0/expire/3600882487/sparams/expire,id,ip,ipbits,itag,mm,mn,ms,mv,nh,pl,ratebypass,source/signature/018E7A115BFB8CAAF5E435E64EE98D0F1F33D9E0.42C0D38E6BBC92DF27A8F45ECCCD615B98EA1889/key/cms1/cms_redirect/yes/mm/30/mn/sn-q4f7snee/ms/nxu/mt/1464983190/mv/m/nh/IgpwcjAzLmRmdzA2KgkxMjcuMC4wLjE/pl/23/file/file.mp4$media,redirect=noop-1s.mp4 !||gcdn.2mdn.net/videoplayback/id/85995d6f645a40ca/itag/59/source/doubleclick_dmm/ratebypass/yes/ip/0.0.0.0/ipbits/0/expire/3600882487/sparams/id,itag,source,ratebypass,ip,ipbits,expire/signature/574256C62C89F295460E68539D4E2C76C1F97645.F6F53D35F67A285506FE5F6CA4319C16F824E8/key/ck2/file/file.mp4$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The following rule redirects the video to a null file instead. !||gcdn.2mdn.net/videoplayback/id/85995d6f645a40ca/itag/59/source/doubleclick_dmm/ratebypass/yes/ip/0.0.0.0/ipbits/0/expire/3600882487/sparams/id,itag,source,ratebypass,ip,ipbits,expire/signature/574256C62C89F295460E68539D4E2C76C1F97645.F6F53D35F67A285506FE5F6CA4319C16F824E8/key/ck2/file/file.mp4$media,redirect=noop-1s.mp4 !||gcdn.2mdn.net/videoplayback/*/source/doubleclick_dmm/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||*.2mdn.net/videoplayback/id/*/itag/*/source/doubleclick_dmm/*/file/file.mp4$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.2mdn.net/videoplayback/id/*/itag/*/source/doubleclick_dmm/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s0.2mdn.net/1420759/*.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s0.2mdn.net/879366/flash_inpage_rendering_lib_200_49.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s0.2mdn.net/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s0.2mdn.net/sadbundle/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s1.2mdn.net/viewad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s1.2mdn.net/* !This may block some videos. !||s0.2mdn.net/* !This blocks some videos like CBS Interactive/Gamespot's. /^https?:\/\/s\d\.2mdn\.net\//$3p,domain=forbes.com,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.receivesmsonline.net###mADSFooter:remove() www.receivesmsonline.net##div[class="row"]:has(div[class="mb-3 text-muted"]:has-text(Advertisement)):remove() www.receivesmsonline.net##div[class="row"]:has(p[class="text-muted"]:has-text(Advertisement)):remove() www.receivesmsonline.net##div[class="ads-container"]:remove() www.freeonlinephone.org,www.receivesmsonline.net##div[data-ad]:remove() ! remove() doesn't work with :: styles www.freeonlinephone.org##.freeonlineadaptable::after www.freeonlinephone.org##.aviso::after www.yunduanxin.xyz##div[class="panel panel-default"]:has(span[style="float: right;"]:has-text(Ad)):remove() www.yunduanxin.xyz##+js(set-constant, show_ad, noopFunc) www.yunduanxin.xyz##+js(acs, /show_ad\(/) ||swallsix.info^* ||shermore.info^* !||promo.propellerads.com/728x90-popads_1.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||promo.propellerads.com^* !||a1.consoletarget.com/!_bb.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||a1.consoletarget.com/!_lb.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||a1.consoletarget.com/!_bn.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a1.consoletarget.com/!_bb.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a1.consoletarget.com/!_lb.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a1.consoletarget.com/!_bn.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css dl.apkhouse.com##center:nth-of-type(1) > center > .btnDownload:remove() dl.apkhouse.com##center:nth-of-type(2) > .btnDownload:remove() ||get.securybrowse.com^* !||mybestmv.com/adServe/feedclick$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mybestmv.com^* ||install.thegamesearcher.com^* ||fixerinst.com^* ||www.fixerinst.com^* ||www.reacherinst.com^* ||reacherinst.com^* !||warnerbros-d.openx.net/w/1.0/acj$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||warnerbros-d.openx.net^* !||himselvet.info/popunder.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||himselvet.info^* ||www.himselvet.info^* ||komoona-d.openx.net^* ||whatismyipaddress.com/js/autotrack.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fstrk.net/api/tracker/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||peeplink.in/js/stuff.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||t.fstrk.net/api/tracker/landing/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||t.fstrk.net^* ||www.bullads.net/advert.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.bullads.net/get/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.bullads.net/metrika/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.bullads.net/rd/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.onclickmega.com/jump/next.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.onclickmega.com/jump/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.adsoptimal.com/advertisement/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !decrypt2.safelinkconverter.com##body > div:nth-of-type(3):remove() ||lp.safewebsearches.com^* ||lpstatic.v2.thewhizproducts.com/js/lp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||settings.luckyorange.net^* ||ext.searchencrypt.com^* ||multram-pedges.com^* ||searchencrypt.navigateto.net^* !||nu.mltdmrh.com/t/clk$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nu.mltdmrh.com^* ||malizing.info^* ||www.malizing.info^* ||fabriefly.mobi^* ||www.fabriefly.mobi^* !||clk.verblife-2.co/click$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||clk.verblife-2.co^* ||install.mysporttab.com^* ||www.xingher.win^* ||install.365-stream.com^* ||tracking.prmtracking.com^* ||check4free.thereadycentercontentingplacealways.win^* !||d1ylwlpty6udeh.cloudfront.net/lps/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d1ylwlpty6udeh.cloudfront.net^* ||www.thereadycentercontentsafeplaceload.date^* !||servicesforoffers.life/advertising/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||servicesforoffers.life^* ||js.mobileoffers-a-download.com^* apk4free.net,apk4free.org##a[href*="://5hjdbfjfd5.monster/"]:remove() apk4free.net,apk4free.org##a[href^="https://peeresspansophistcapite.monster/"]:remove() apk4free.net,apk4free.org##center:nth-of-type(2) > .btnDownload1:remove() apk4free.net,apk4free.org##ains[data-ad-block]:remove() apk4free.net,apk4free.org##aside[class="ads ads_header"]:remove() apk4free.net,apk4free.org##div[class="code-block code-block-7"]:has(a[href^="https://itndownloads.com/"]):remove() apk4free.net,apk4free.org##div[class="adsbypocpoc"]:remove() apk4free.net,apk4free.org##div[data-ad-slot]:remove() apk4free.net,apk4free.org##div[id^="stickybanner_wrapper__pw_"]:remove() apk4free.net,apk4free.org##iframe[name="__pb_locator__"]:remove() apk4free.net,apk4free.org##iframe[id^="ifr_pw_"]:remove() apk4free.net,apk4free.org##power[id^="powerAdsPlaceholder_"]:remove() apk4free.net,apk4free.org##vli[id^="vi_pixel_"]:remove() apk4free.net,apk4free.org##+js(remove-node-text, script, /viAPItag\.display\(/gm) apk4free.net,apk4free.org##+js(remove-node-text, script, /viAPItag\.init(PowerVideoAds|StickyBanner)\(/gm) apk4free.net,apk4free.org##+js(remove-node-text, script, /_stq\.push\(\[/gm) apk4free.net,apk4free.org##+js(remove-node-text, script, /pbTag\.uId\s?=/gm) apk4free.net,apk4free.org##+js(aopr, pbTag.uId) apk4free.net,apk4free.org##+js(aopw, pbTag.uId) apk4free.net,apk4free.org##+js(remove-node-text, script, /pbAPITag\.initPBNative\(/gm) ||dealspure.com/outpromotion/$subdocument www.techrrival.com###ezoic-pub-ad-placeholder-110:remove() revdownload.com##.text-ads:remove() askleo.com##.askleo_adblock1:remove() !||tag.crsspxl.com/s1.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tag.crsspxl.com^* !||ado.pro-market.net/ads/scripts/dda3-9-8mdt.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ado.pro-market.net^* ||track.adtrue.com^* !||cdn.adtrue.com/rtb/async.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.adtrue.com^* !||dl.hiapphere.com/static/js/show_ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.hiapphere.com/static/js/show_ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.hiapphere.com/static/js/show_ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.hiapphere.com##iframe[id^="aswift_"]:remove() www.hiapphere.com##iframe[id^="google_ads_frame"]:remove() www.hiapphere.com##script[data-ad-client]:remove() www.hiapphere.com##+js(set-constant, fuckAdBlock, null) www.hiapphere.com##+js(set-constant, importFAB, null) www.hiapphere.com##+js(set-constant, adBlockNotDetected, noopFunc) www.hiapphere.com##+js(set-constant, adBlockDetected, falseFunc) www.hiapphere.com##+js(aopr, fuckAdBlock) www.hiapphere.com##+js(aopw, fuckAdBlock) www.hiapphere.com##+js(aopr, importFAB) www.hiapphere.com##+js(aopw, importFAB) www.hiapphere.com##+js(aopr, adsbygoogle) www.hiapphere.com##+js(aopw, adsbygoogle) www.hiapphere.com##+js(set-constant, t, 0) ||ajax.cloudflare.com/cdn-cgi/scripts/c092a58e/cloudflare-static/beacon.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hawarndorse.info^* ||www.hawarndorse.info^* ||uplod.org/hg/js/clipboard.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||caughinga.info/popunder.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.caughinga.info^* ||caughinga.info^* ||d3ud741uvs727m.cloudfront.net^* 3downloadz.tk##tr:nth-of-type(3) > .responsiveInfoTable:remove() 3downloadz.tk##tr:nth-of-type(1) > .responsiveInfoTable:remove() 3downloadz.tk##tr:nth-of-type(2) > .responsiveInfoTable:remove() ||clkad.bet/www/images/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||clkad.bet/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||waltertsuihk.com/images/download1.gif$image ouo.press###TrafficmediaComposite219494:remove() ||corneey.com/bundles/smeweb/img/tracking-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||corneey.com/bundles/smeweb/img/advertisement-tracking-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||corneey.com/bundles/advertisement/img/tracking.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||corneey.com/bundles/advertisement/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||analytics.shorte.st/viewed$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||analytics.shorte.st/displayed$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||analytics.shorte.st/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adserver.smart.bid/pixel/trk$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adserver.smart.bid^* a1apk.com###popDiv ||uplod.org/hg/js/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||racaty.com/ree/js/clipboard.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||easyfps.info^* ||www.easyfps.info^* ||track.easyfps.info^* !||photorito.me/landing-pages/6/lp2.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||photorito.me^* ||www.photorito.me^* ||getnewsoft.theperfectcentralforcontentssysfree.trade^* ||theperfectcentralforcontentssysfree.trade^* ||www.themainsourceforcontentload.date^* ||themainsourceforcontentload.date^* !||www.offer-formediaservices.bid/advertising/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.offer-formediaservices.bid^* ||offer-formediaservices.bid^* ||lp.weathertab4you.com^* ||fapmeth.com^* ||www.fapmeth.com^* !||gb0rd.com/show^* ||gb0rd.com^* ||www.gb0rd.com^* ||pwufxar8.top^* thepoliticalinsider.com###ox_2322248832_538143962:remove() ||www.pwufxar8.top^* ||metrics.gfycat.com^* ||www.aexp-static.com/cdaas/akamai/ali/lib/ali-metrics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||popads.wapkiz.com^* ||z6naousb.com^* ||www.z6naousb.com^* !||mt.rtmark.net/omr.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mt.rtmark.net^* ||159.203.84.58/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||report-uri.cloudflare.com/cdn-cgi/beacon/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||report-uri.cloudflare.com^* ||adtag.vidssp.com^* ||loadbalancer.visitor-analytics.io^* !||2crg1.voluumtrk.com^* ||cpp.techtipsforpc.com^* ||lp.techtipsforpc.com^* ||securecloud-dl.com^* ||securessl-dl.com^* ||core2digital.go2affise.com^* ||l.lj-toys.com^* ||xc3.services.livejournal.com/ljcounter/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||flow.lavasoft.com^* ||home.account.center.webappsusers.com^* !||metrika-informer.com/informer/33474613/3_1_FFFFFFFF_EFEFEFFF_0_pageviews$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||metrika-informer.com/informer/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.allsync.com/img/ad1/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ajkzd9h.com^* ||www.ajkzd9h.com^* ||facenama.com/popup.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||install.stream-all.com^* ||e5a87pq.com^* ||www.e5a87pq.com^* ||www.wideads.com/ads4$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.wideads.com/av$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.wideads.com/linklinkphpgenerator/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||964t4.pantiesygehycvq.win^* ||pantiesygehycvq.win^* ||www.pantiesygehycvq.win^* ||ads.linkshrink.net^* ||adx.adform.net^* !||adx2.adform.net/adx/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adx2.adform.net^* ||adx3.adform.net^* ||clckads.com^* ||pl14474450.puserving.com^* !||edilfer.info/qzy6/ppnzd.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||edilfer.info^* ||d.pub.network/rfm/cookie/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.lynda.com/static/search/js/search-tracking.min-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s1.adform.net/banners/scripts/adx.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s1.adform.net^* ||sftwrads.com^* ||wln.juristsgetahx.win^* ||juristsgetahx.win^* ||www.juristsgetahx.win^* ||regardsurlecourt.com^* ||www.hibids10.com^* ||rosemand.pro^* ||www.rosemand.pro^* !||s.ytimg.com/yts/jsbin/www-pagead-id-vflikUYq3/www-pagead-id.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.ytimg.com/yts/jsbin/www-pagead-id-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.baby-liberty.ru/swap/qukwi.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.baby-liberty.ru^* !||zetbrtr1.com/dr2^* ||zetbrtr1.com^* ||desktop.mftracking.com^* ||s3-us-west-1.amazonaws.com/mftracker/dl_banner.gif$image !||pushnest.com/ntfc.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pushnest.com^* ||notify.marketgid.com/adhub/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css certcollection.net###FBSlideLikeBox_right ||tesla.r.acdnpro.com/iframeH/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||torrentc.info/images/3.png$image ||lite-brofree.ru^* !||universallnk.net/api/redirect^* ||universallnk.net^* ||torrentc.info/1882.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||torrentc.info/images/5.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mydisplay.ctfile.com/popjump.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css mhfree.com##.e3lan-cell > .adsbygoogle:remove() ||bdg-analytics.appspot.com^* www.salewebdesign.com##div[class="herald-ad"]:remove() www.salewebdesign.com##.onp-sl-no-touch.onp-sl-social-buttons-enabled.onp-sl-contains-single-group.onp-sl-social-buttons-frist.onp-sl-social-locker.onp-sl-glass.onp-sl-webkit.onp-sl:remove() www.salewebdesign.com##.onp-sl-overlap-background:remove() www.salewebdesign.com##.onp-sl-glass-theme.onp-sl-transparence-mode.onp-sl-overlap-box:remove() ||savetabs.net^* ||www.savetabs.net^* !||freewhois.club/js/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||freewhois.club^* !||kickassrelease.com/js/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||kickassrelease.com^* ||app.newsharecounts.com/nsc.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||newsharecounts.s3-us-west-2.amazonaws.com/nsc.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css lobotomysoftware.wordpress.com###atatags-26942-5ae5478fd3c67:remove() lobotomysoftware.wordpress.com##.wpmrec.wpa:remove() villsa.wordpress.com###atatags-286348-5ae547faeed86:remove() villsa.wordpress.com##.wpwidesky.wpa:remove() ||6198399e4910e66-ovc.com^* ||onesignal.com/webPushAnalytics$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||x1337x.ws/js/befdbebbefafdafffe.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||apwvx.ab4hr.com/redirect/index$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||apwvx.ab4hr.com^* ||eoyzz.kwnmvznp6xr.yepiy.today^* !||adsbypf.com/pfpu.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adsbypf.com^* ||www.adsbypf.com^* ||link.babi.gdn^* !||link.babi.gdn/site/redirectpage^* ||look.ichlnk.com^* !||affilate-img-affasi.s3.amazonaws.com/sharebanner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||affilate-img-affasi.s3.amazonaws.com^* !||img.affasi.com/sharebanner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||img.affasi.com^* ||js.affasi.com^* !||json.affasi.com/shareBanner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||json.affasi.com^* ||sombersurprise.com^* www.techopedia.com###internads:remove() ||www.techopedia.com/api/content/adcontenttrack$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.techopedia.com/interstitialad.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.automatad.com^* ||1fwjpdwguvqs.com^* ||servicer.traffic-media.co^* ||am15.net/bn.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||piguiqproxy.com^* mirknig.su##div[id^="advertur_"]:remove() ||mbzl-pro.xyz^* ||sweeps4968.toughie15.loan^* ||toughie15.loan^* !||t.omkt.co/fp/t.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||t.omkt.co^* ||valemedia.net^* ||bwo.ladesk.com/scripts/track.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||js.hotlog.ru/dcounter/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||kdiso.ru/data/img/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||kdiso.ru/show.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||kdiso.ru^* ||s11.utraff.com^* ||ima.utraff.com^* !||utraff.com/index.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||utraff.com/js/iframe/event.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||utraff.com/js/device.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||utraff.com^* ||cc.uaadi.com^* www.microsoft.com###epb ||i1.wp.com/edlibre.com/wp-content/uploads/Credits_728-90.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||i0.wp.com/edlibre.com/wp-content/uploads/cryptoarabe.com-728x90.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||t3430992.icpro.co/fp/r.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||t3430992.icpro.co^* !||pixel.staticworld.net/pixel.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pixel.staticworld.net^* ||sadeemapk.com/wp-content/uploads/2018/05/panzers.gif$image ||sadeemapk.com/wp-content/uploads/2018/05/applike2.png$image ||sadeemapk.com/wp-content/uploads/2018/05/giftcard.jpg$image ||www.sadeempc.com/wp-content/uploads/2018/05/Panzer.gif$image ||www.sadeempc.com/wp-content/uploads/2018/04/download-button-white.png$image ||ajax.cloudflare.com/cdn-cgi/scripts/dba9ecf7/cloudflare-static/rocket-loader.min.js$script,domain=freefileload.tk !||bap-34.com/gts/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bap-34.com^* !www.upload4earn.org##div[class^="bannerads text-center"] www.upload4earn.org##div[class^="bannerads"] www.upload4earn.org##div[class^="adsbygoogle"] ||lh3.googleusercontent.com/-BE3MOM3IeFI/WtzTsCmrDpI/AAAAAAAAAC8/dbF27718Em8oOV1btl9NeZ_ZRF9xvJoegCLcBGAs/h85/upload4earn$image ||cdn.registerdisney.go.com/v2/responder/responder.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css veniceunleashed.net##div[class^="adblock"] www.darkhorizons.com##div[class="adsbygoogle"] www.darkhorizons.com##div[class*="td_uid_"] ||www.ebook3000.com/templets/js/468.png$image www.ebook3000.com##[href^="/read/dl.php"] ||iz682noju02ye5.com^* !||unique-tutorials.info/adframe.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||unique-tutorials.info^* !||85.25.41.237/Getintopc.com^* ||85.25.41.237/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.socialgazette.com###ad_pos_sg-desktop-low ||alegria-d.openx.net^* ||d1e0lxcw18jxyg.cloudfront.net/analytics^* !||d1rlca3pqma1yp.cloudfront.net/abdetector.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||d1rlca3pqma1yp.cloudfront.net/minder-tracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d1rlca3pqma1yp.cloudfront.net^* ||d1upt0rqzff34l.cloudfront.net/SG/prebid.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css http://eicm-global.dsp.io/opx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ox-d.justpremium.com^* !||police.adrizer.com/adrizer_out/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||police.adrizer.com^* !||run.adrizer.com/track.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||run.adrizer.com^* !||rtb.openx.net/sync/dds$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||rtb.openx.net/sync/yahoo$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rtb.openx.net^* !||stats02.topix.com/imp.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||stats02.topix.com/pv.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stats02.topix.com^* ||topix-d.openx.net^* !||track-east.mobileadtrading.com/usersync^* ||track-east.mobileadtrading.com^* !||trtstats.topix.com/pv.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||trtstats.topix.com/track.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||trtstats.topix.com^* ||www.socialgazette.com/wp-content/plugins/adsense-shortcode-plugin/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.socialgazette.com/wp-content/plugins/forensiq-include/forensiq-script.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.socialgazette.com/wp-content/plugins/forensiq-include/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pulsepoint-cm.p.veruta.com/adserver/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||track-west.mobileadtrading.com^* !||tr.blismedia.com/v1/api/sync/openx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tr.blismedia.com^* !||packrat.magneto.technology/clicks?campaign=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||packrat.magneto.technology/pageviews?campaign=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||packrat.magneto.technology/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pixel.onaudience.com^* ||grey.erne.co^* !||sync.crwdcntrl.net/map/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sync.crwdcntrl.net^* !||synch.optimatic.com/4.5/webservice/cc.ashx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||synch.optimatic.com^* !||cmi.netseer.com/pixelmatch^* !||cmi.netseer.com/redirect^* !||cm.netseer.com/redirect^* ||cmi.netseer.com^* ||cm.netseer.com^* !||collector-pxginpfea6.perimeterx.net/api/v1/collector/pxPixel.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||collector-pxginpfea6.perimeterx.net^* !||collector-pxel3l4xih.perimeterx.net^* ||collector-*.perimeterx.net^* !||client.perimeterx.net/PXSs13U803/main.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||client.perimeterx.net^* ||e.serverbid.com^* !||opx2waycm-atl.netmng.com/cm/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||opx2waycm-atl.netmng.com^* !||amplify.outbrain.com/cp/obtp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||amplify.outbrain.com^* !||tr.outbrain.com/pixel$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tr.outbrain.com^* ||px.powerlinks.com/user/sync/dsps$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||px.powerlinks.com/user/sync/ssps$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||um.videmob.com/pixel?partner=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||um.videmob.com^* !||cdn.tynt.com/rciv.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||sc.tynt.com/script/sc/aji7UkwBmr6jfYaKlId8sQ.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||sync.smrtb.com/sync/ssp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sync.smrtb.com^* !||ap.lijit.com/www/sovrn_beacon_standalone/sovrn_standalone_beacon.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ap.lijit.com/www/sovrn_beacon_standalone/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ap.lijit.com///www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ap.lijit.com/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ap.lijit.com/pixel?redir=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ap.lijit.com^* !||abc.zhiyaspa.com/wejs11.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||abc.zhiyaspa.com^* !||sync.dmp.otm-r.com/match/relap$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||sync.dmp.otm-r.com/match/aotm.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||sync.dmp.otm-r.com/match/beeline.img?id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||sync.dmp.otm-r.com/match/getintent?id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||sync.dmp.otm-r.com/match/mgcomm?id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||sync.dmp.otm-r.com/match/segmento?id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sync.dmp.otm-r.com^* ||ssp1.rtb.beeline.ru^* !||www.mije.net/js/fp.js.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||x1337x.ws/js/afcdbddefcaabdfaaacf.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||i2.wp.com/a2zcity.net/wp-content/uploads/2018/05/downloadnew.png$image ||iresentall.info^* txapela.ru##.floating-bar txapela.ru###M218998Composite648309 txapela.ru##div[class="dUexVJF"] txapela.ru##div[class="WoyeszQ"] ||stat.botdetector.ru^* ||sync.1dmp.io/pixel.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||relap.io/api/v1/pixel.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||xlounge.ru/zihprufqn.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xlounge.ru^* !||195-201-85-48.lockbot.net/visit/negotiate$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||195-201-85-48.lockbot.net/visit/negotiate$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.aio.media/v1/requestAd^* !||code.lockbot.net/index.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||code.lockbot.net^* depositfiles.com##div[class="cookie_popup"]:remove() !||filesloader.tk/download?id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||filesloader.tk^* ||keygen-s.top^* ||crackpluskeygen.org^* ||crack4download.com^* !Android Malware Hosts & URL's: ||www.goolge.com^* !||www.cosiloon.com/version.xml$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.cosiloon.com/version_2.xml$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.cosiloon.com/version_3.xml$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.cosiloon.com/version_4.xml$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.cosiloon.com/version_5.xml$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.cosiloon.com^* !||abc.cosiloon.com/getip.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||abc.cosiloon.com^* !||abd.cosiloon.com/getip.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||abd.cosiloon.com^* ||*.7176.com^* ||7176.com^* !||pull-3045.kxcdn.com/getip.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||push-3045.kxcdn.com/ep1$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||push-3045.kxcdn.com^* !||push-***.**cdn.com/h5ep4.apk$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pull-***.**cdn.com/getip.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pull-***.**cdn.com^* !||app.storage.yunvm.com^* ! <- APK payload download ||app.storage.yunvm.com^* ||www.tunefab.com/Public/home/js/gatrack.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||event.stopad.io/v1/track^* ||stopad.io/help/js/eu-gdpr-agreement-popup.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stopad.io/help/js/track-events.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.thinkwiki.org/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||paid.outbrain.com/network/redir^* !||paid.outbrain.com/* !blocks legitimate links ||eww.counterx.site/piwik/piwik.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css a2zcity.net##.group.post-inner > center > [href^="http://iresentall.info/fast56"]:remove() a2zcity.net##.entry-inner > center > [href^="http://iresentall.info/fast56"]:remove() ||a2zcity.net/wp-content/uploads/2017/10/a2zcity-top-wide.gif$image ||i1.wp.com/www.explorewin.com/wp-content/uploads/2018/05/button.png$image www.westernjournal.com###Top-ad:remove() www.westernjournal.com###IC1-ad:remove() www.westernjournal.com###IC2-ad:remove() www.westernjournal.com###IC3-ad:remove() www.westernjournal.com###BB1-ad:remove() www.westernjournal.com###REP_0-ad:remove() www.westernjournal.com###REP_1-ad:remove() www.westernjournal.com###REP_2-ad:remove() ||rep.getprivacynsafety1.online^* ||getprivacynsafety1.online^* ||www.getprivacynsafety1.online^* ||ypozz.aojcwcmbslojum.5xkpw.site^* ||5xkpw.site^* ||install.utilitooltech.com^* ||jackettrain.com^* ||ufpcdn.com/script/identify.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||t2f9pn3m7w.com^* ||mykrazygames.com^* ||funkrazygames.com^* bit-url.com##.banner-468x60.banner:remove() bit-url.com##.banner-336x280.banner:remove() ||www.bitcoadz.io/display/index.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lh5lg.top^* ||clkfly.pw/pop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||clk.press/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css clk.press###yx-sli35009:remove() clk.press###yx-sli60870:remove() clk.press###yx-sli12186:remove() !||clkfly.pw/ads/mellowads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||clkfly.pw/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.nanovisor.io/adblock?ads=1$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.nanovisor.io/adblock$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||media.tutorialforlinux.com/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adserve.atedra.com^* ||trck.addiliate.com^* !Redshell SDK ||api.redshell.io^* ||in.treasuredata.com^* ||widgets.outbrain.com/external/publishers/msn/MSNIdSync.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !blocks Adguard license check ||api.adguard.com^* www.videogamer.com##.body_constrain.page-skin > div:nth-of-type(2) > .vm-placement:remove() simplecoupondeals.com###sgcboxWrapper:remove() ||simplecoupondeals.com/wp-content/plugins/popup-builder-platinum/img/colorbox6/colorbox_overlay.png$image !||app.link^* !||www.app.link^* !||app.link/_r^* !fps-creator-glo.ucoz.ru###mainadsdva53g5T:remove() fps-creator-glo.ucoz.ru##div[class^="mainadsdva"]:remove() ||skl-874.com^* ||www.mirrorcreator.com/_offer.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.mirrorcreator.com/images/Download_offer.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css s4.bitdownload.ir##.col-sm-9 > .bx-ads:remove() fear-combat.nl##.google-banner-right:remove() fear-combat.nl##.google-banner-left:remove() fear-combat.nl##.entry-content > .adsbygoogle:remove() www.videogamer.com##.article-body > div:nth-of-type(2) > .vm-placement:remove() www.videogamer.com##.sidebar_contents--foot.sidebar_contents > div > .vm-placement:remove() ||stripe.rs-stripe.com/stripe/image$image ||api.rs-stripe.com/stripe/impression/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css theconservativetreehouse.com###primary > .wpcnt > .wpwidesky.wpa:remove() theoutline.com##.product-stack-embed-41f6a3--display.product-stack-embed-41f6a3:remove() ||1bcde.com^* ||www.1bcde.com^* news4sanantonio.com##.position-2.ddb-align-center.component-ddb-300x250-v2:remove() ||ads2.rsapis.io^* ||ads3.mthsense.com^* ||pre.ads.justpremium.com^* ||indlzxgptf.com^* ||www.indlzxgptf.com^* ||stalluva.pro^* ntknetwork.com##div[id^="div-gpt-ad-"]:remove() !||ntknetwork.com/wp-content/plugins/better-analytics/js/loader.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ntknetwork.com/wp-content/plugins/better-analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||22wu431hsd443oqi9831411b-wpengine.netdna-ssl.com/wp-content/plugins/better-analytics/js/loader.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*-wpengine.netdna-ssl.com/wp-content/plugins/better-analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*-wpengine.netdna-ssl.com/wp-content/themes/ntk/assets/js/adlayout.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||22wu431hsd443oqi9831411b-wpengine.netdna-ssl.com/wp-content/themes/ntk/assets/js/adlayout.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.stardoll.com###sdads_bt_2:remove() www.stardoll.com##div[class="stardollads"]:remove() ||hb.vntsm.com/v3/live/ad-manager.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hb.vntsm.com/v3/live/0.ad-manager.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ox.stardoll.com/www/delivery/lg.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ox.stardoll.com^* ||kaseine.info^* ||www.kaseine.info^* ||venatusmedia-d.openx.net^* !||web.hb.ad.cpe.dotomi.com/s2s/header/24$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||web.hb.ad.cpe.dotomi.com^* !||track.venatusmedia.com/dual/track$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||track.venatusmedia.com^* ||i.imgur.com/p6cwtOY.png$image ||os5t.kaseine.info^* ||entionale.info^* ||www.entionale.info^* ||fresh-info.news^* ||www.fresh-info.news^* www.buzzfeed.com###BF_WIDGET_46:remove() www.buzzfeed.com###BF_WIDGET_54:remove() www.buzzfeed.com###BF_WIDGET_55:remove() www.buzzfeed.com###BF_WIDGET_56:remove() www.news.com.au###ad-wrap-3:remove() ||d10lumateci472.cloudfront.net^* !||pndelfast.com/rt4DFufqesVrKb5/5764$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pndelfast.com^* ||unityworld.su/porebl/?adsdata=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s52.ucoz.net/bnr/wrappers/w1h.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s52.ucoz.net/bnr/wrappers/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||unityworld.su/js/nocopy.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pwieu.com/click-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pwieu.com^* !||usocial.pro/logs/store-view$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||usocial.pro/usocial/fingerprint2.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||p1.dircont3.com/npm.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||p1.dircont3.com^* ||iad-usadmm.dotomi.com/event/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||iad-usadmm.dotomi.com/fetch/rosetta/app/banner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||iad-usadmm.dotomi.com^* ||secure-media.msg.dotomi.com/w/impix.cgi$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||usadmm-ds.dotomi.com/event/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||usadmm.dotomi.com/event/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s-usweb.dotomi.com/adinfo/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css unityworld.su###adtagsParams_f01e2ac7:remove() ||unityworld.su/stat/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||st.rktch.com/simp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bt.rktch.com/bimp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||web.archive.org/static/js/wbhack.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !web.archive.org/static/css/banner-styles.css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !www.blogger.com/static/v1/v-css/2982899471-interstitial_bundle.css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.blogger.com/static/v1/v-css/*-interstitial_bundle.css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !www.blogger.com/blogin.g$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.blogger.com/dyn-css/authorization.css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !www.blogger.com/terms.g$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.pinterest.co.kr/_/_/report/page_load_metric/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.pinterest.com/_/_/report/page_load_metric/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.pinterest.co.kr/_/_/trace/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.pinterest.com/_/_/trace/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.pinterest.co.kr/_/_/report/error/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.pinterest.com/_/_/report/error/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||134983.xyz^* ||amanda.runtnc.net^* www.investors.com##div[id="gwd-ad"]:remove() !||services.investors.com/jsadscripts/ibd-ads/single-post.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||services.investors.com/jsadscripts/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.wsod.com^* www.discudemy.com##.adsbygoogle:remove() images.epcdn.net/images/ep/houseads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css web.archive.org###adultpopup:remove() web.archive.org##div.cover:nth-of-type(8):remove() ||rep.visiblecooking.com^* ||api-54-200-136-252.b2c.com/api/ad.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||0914.global.ssl.fastly.net/ad2/img/x.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||0914.global.ssl.fastly.net/ad2/script/x.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||0914.global.ssl.fastly.net/ad2/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.go2mob.net^* ||ad.kubico.com^* ||dmpstorage.adalliance.io^* www.gocomics.com##.fixed-ad-bottom--banner:remove() www.gocomics.com##.group-item-ad:remove() ||hwwfydportmen.review^* ||browses.systems^* ||s7c66wkh8k.com^* ||browsers.support^* ||best2018games.com^* ||www.pinterest.com/resource/ContextLogResource/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.pinterest.com/resource/StatsLogResource/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.pinterest.com/resource/UserRegisterTrackActionResource/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.pinterest.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||datingfantasies11.com^* ||sergeistrelec.ru/templates/sstr/images/reklama.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||74lhpp2gt696.com/tuname.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||74lhpp2gt696.com^* !||promos.fling.com/geo/txt/location.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||promos.fling.com/geo/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||loadzmadness.date^* motherless.com##._ln-floater:remove() !||pop2ads.com/dashboard/call.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pop2ads.com^* ||www.imagefaq.info/stats.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.sleeptrackerwatch.com^* ||emula.net^* ||rtlofcsebuyout.review^* ||unrestern.info^* ||www.unrestern.info^* ||newstarads.com^* ||www.newstarads.com^* ||ispsecure.info^* !||spaces.slimspots.com/directclick/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||spaces.slimspots.com^* !||smart.brvaffs.com/click/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||smart.brvaffs.com^* ||www.bestphoneapp.net^* ||bestphoneapp.net^* ||track.newsjournalcelebs.com^* ||boozyblessing.faith^* ||www.boozyblessing.faith^* !www.imagefaq.info##div[id="adelimg"]:remove() !www.imagefaq.info##div[id="xdelimg"]:remove() www.imagefaq.info##div[id$="delimg"]:remove() ||www.imagefaq.info/images/lightbox-ico-loading.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||honwa.info^* !||trk.slimcdns.com/directclick/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||trk.slimcdns.com^* ||justappstostream.com^* !||boudja.com/popunder.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||boudja.com^* ||www.lovetechs.com^* www.softpedia.com##.adwblue.ad-728x90.adhc.ad.mgleft_40.mgtop_20.mgbot_20:remove() www.softpedia.com###_wlts_lead:remove() www.softpedia.com##.grid_10.fl.mgtop_20:remove() ||gurgle.zdbb.net^* draxe.com##.a-8.g-single > .ads:remove() draxe.com##.a-7.g-single > .ads:remove() www.techtimes.com##div[class^="videojs-ad-wrap"]:remove() !||tecassets-1tmxd3aba43noa.stackpathdns.com/common/js/stat/counter_ssl.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tecassets-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css.stackpathdns.com/common/js/stat/counter_ssl.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||b.scorecardresearch.com/beacon.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||b.scorecardresearch.com/* !may block videos on zdnet.com !||sb.scorecardresearch.com/beacon.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sb.scorecardresearch.com^* ||orbitfour47.com/adclix.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||stat.techtimes.com/stat/counter_gif.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stat.techtimes.com^* ||imagetopng.club^* ||www.imagetopng.club^* ||ad.afy11.net^* ||lp.searchdimension.com^* ||abnormour.club^* ||www.abnormour.club^* ||dejzz.aojcwcmbslojum.5xkpw.site^* !||tecassets-1tmxd3aba43noa.stackpathdns.com/common/js/common/prebid_sb_v001.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tecassets-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css.stackpathdns.com/common/js/common/prebid_sb_v001.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gce-or.bidswitch.net/imp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gce-sc.bidswitch.net/vast_error/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gce-sc.bidswitch.net/vast/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gce-sc.bidswitch.net/imp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||x.bidswitch.net/sync$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||x.bidswitch.net^* ||uod2quk646.com^* ||www.uod2quk646.com^* www.nytimes.com##.e1i2wxpm0.css-mlcs8h.shown:remove() www.nytimes.com###story-ad-1-wrapper:remove() www.nytimes.com###story-ad-2-wrapper:remove() www.nytimes.com###story-ad-3-wrapper:remove() www.nytimes.com###story-ad-4-wrapper:remove() www.techarp.com##div.clearfix.momizat-ads.widget:remove() !||parking.parklogic.com/page/enhance.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||parking.parklogic.com^* ||ww*.downtraining.net/track.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rep.njoyapps.com^* ||cdn1.homeadvisor.com/images/consumer/modules/prosper-cgtask-300x250.png$image www.homeadvisor.com###FloatyBar:remove() ||rhfgjld.com^* !||pushglobe.com/cuntwars/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pushglobe.com^* !||modescrips.info/redirect$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||modescrips.info^* ||windows.softexter.com^* ||refuzzlizing.pro^* ||www.predictivdisplay.com/jump/next.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.predictivdisplay.com/script/i.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.predictivdisplay.com/a/display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||witalfieldt.com/redirect$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||witalfieldt.com^* ||kolq3tv.skqen.today^* ||tgzjdintriguant.review^* ||jf71qh5v14.com^* ||rtradsterra56.download^* ||lyqnxdyhvthreaded.review^* !||js.cleancentertours.com/dl.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||js.cleancentertours.com^* ||play.aniview.com/58fcbed1073ef420086c9d08/5b2a0640073ef4439b456fc6/Hitachi_300x250_intl.jpg$image www.freetutorials.us###imgpreloader:remove() ||promo.awempire.com^* ||advanceindco.com^* ||ju.lazada.co.id^* ||rarenok.biz^* ||ineity.pro^* !freebeacon.com##div[class^="advertising-side"]:remove() !freebeacon.com##div[class^="advertising-top-mobile"]:remove() !freebeacon.com##div[class^="advertising-top-desktop"]:remove() freebeacon.com##div[class^="advertising-"]:remove() freebeacon.com##div[class^="in-article-ad"]:remove() ! TODO: The following rule removes non-ad page content too. !freebeacon.com##div,section[class^="ad-container"]:remove() freebeacon.com##script[id="optin-monster-api-script-js"]:remove() !||adncdnend.azureedge.net/adtags/freebeacon.adn.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adncdnend.azureedge.net/adtags/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adncdnend.azureedge.net/adn-hb/ADN_GoogleCMP.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adncdnend.azureedge.net^* ||s1.freebeacon.com/plug/optin-monster/assets/js/api.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||apps2807.check-abcmoney48.loan^* uplod.io##.btn-dl-plus.btn-info.btn:remove() ||push.porlandzor.com^* ||mobileoffers-s-download.com^* !||intoupload.net^* ||js.mobileoffers-cb-download.com^* ||intoupload.net/mngez/images/downicon.png$image ||adjan-69-6.co.pl^* ||rep.myappzcenter.com^* ||re.gtosite7.com^* ||sexmotors.com^* !||freeadult.games/t5/index.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||freeadult.games^* ||ab.advertiserurl.com^* ||creative.stripchat.com^* !||www.freeporn.game/jump/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.freeporn.game^* !||hentaifapland.com/smutstone/ss_0318/land_ss_210318_3_en/index_noexit.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hentaifapland.com^* ||dgafgadsgkjg.top^* ||rev.adsession.com^* ||api.ero-advertising.com^* ||create.leadid.com^* ||oload.download^* ||oload.site^* !||oloadcdn.net/* !blocks openload.co download links ||install.speedomizer.com^* ||epital.gdn^* !||c2.campartner.com/medien/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c2.campartner.com^* ||cpm.amateurcommunity.com^* !||ad-unicorn.net/download/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad-unicorn.net^* ||www.linuxbabe.com/wp-content/uploads/2018/05/SaferVPN-263x219.png$image !||2hanwriten.com/Redirect.a2b$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||2hanwriten.com^* ||install.streamfrenzy.com^* ||51.15.155.124^* ||rtbvideobox.com^* ||o12zs3u2n.com^* !||www.guardguardconcepts.com/ibsvpl6/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.guardguardconcepts.com^* ||guardguardconcepts.com^* ||pptchecker.club^* ||www.pptchecker.club^* ||ridingintractable.com^* ||www.ridingintractable.com^* ||ilo134ulih.com^* ||www.ilo134ulih.com^* ||install.easy-pdf.com^* www.svg.com##.str-adunit-img-left.str-card-exp.str-adunit !||www.elephant-ads.com/LP_TA/index.cfm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.elephant-ads.com^* ||aesthought.info^* ||www.aesthought.info^* ||d2d8qsxiai9qwj.cloudfront.net^* ||www.amountinue.info^* ||amountinue.info^* ||4tz.qrfrbadzmauve.review^* ||www.qrfrbadzmauve.review^* ||click.dailynews.support^* ||clarify.dailynews.support^* ||theater.dailynews.support^* ||urgency.dailynews.support^* ||silence.dailynews.support^* ||thinker.dailynews.support^* ||glimpse.dailynews.support^* ||soprano.dailynews.support^* ||dentist.dailynews.support^* ||general.dailynews.support^* ||*.dailynews.support^* ||yourhottab.net^* ||install.streamit-online.com^* ||streamit.online^* ||netflix-portal.com^* ||i.cdn.turner.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sanalytics.ncaa.com^* ||s.cdn.turner.com/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.secure-systemu.info^* ||secure-systemu.info^* !||0.nextyourcontent.com^* !||1.nextyourcontent.com^* ||*.nextyourcontent.com^* ||ltzstjjrbsinusitis.review^* ||www.ltzstjjrbsinusitis.review^* ||www.secure-systemw.info^* ||secure-systemw.info^* ||mobi.aleady.com^* ||pufmxowshoetree.review^* ||www.pufmxowshoetree.review^* ||www.upgradegetrawflash.icu^* ||www2.upgradegetrawflash.icu^* ||upgradegetrawflash.icu^* ||7lyonline.com^* ||theybyw.com^* ||www.theybyw.com^* ||aritzal.com^* ||www.aritzal.com^* ||delivery.trafficforce.com^* ||track.iafov.com^* ||rtr21adc.download^* ||rtrza3.download^* ||rtb.adentifi.com^* ||wildbearads.go2affise.com^* www.getpaint.net###adcontainer ||owl.hopto.org^* !||plutos-capital.com/entertainedo.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||plutos-capital.com^* ||browsergames2018.com^* ||hqzjz7fncd.com^* ||www.hqzjz7fncd.com^* ||yfdcutwots.review^* ||www.yfdcutwots.review^* ||ykpowgprofoundly.review^* ||www.ykpowgprofoundly.review^* www.aarp.org##.section.parbase.advertisement:remove() ||silk.com/sites/all/themes/zen_silk/js/ga_social_tracking.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||irxcm.com/RevTrax/tracking/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tmetrix.my.chick-fil-a.com^* ||exclusiverewards62.online^* ||neweggstats.com^* ||www.neweggstats.com^* e-techmaster.com###adbox:remove() ||nbcume.hb.omtrdc.net^* ||nervoussummer.com^* !||tracker.nbcuas.com/DeviceService$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tracker.nbcuas.com^* ||xse5vfg6.micpn.com/p/cp/-1/track.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||update-billing-netflix.com^* ||www.update-billing-netflix.com^* www.maketecheasier.com##div[id^="zergnet-widget-"]:remove() ||hofdjtlmdetraquee.review^* ||www.hofdjtlmdetraquee.review^* ||s9kkremkr0.com^* ||www.s9kkremkr0.com^* ||elhzvjimfanfold.review^* ||www.elhzvjimfanfold.review^* ||dnckawxatc.com^* ||www.dnckawxatc.com^* ||www.softwaredownloads.biz^* ||softwaredownloads.biz^* ||cdn.hashflare.eu/banners/$image ||aj1603.online^* ||www.aj1603.online^* ||www.app-centerp.co^* ||app-centerp.co^* ||fs.0tseersmicxzwi2degfxlgvjxm.club^* ||0tseersmicxzwi2degfxlgvjxm.club^* !||mediaoaktree.com/pu-placer.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mediaoaktree.com^* ||www.mediaoaktree.com^* ||www.mediasprucetree.com^* ||mediasprucetree.com^* ||alwqfajh.com^* ||www.alwqfajh.com^* ||qpdownload.com^* ||www.qpdownload.com^* ||www.ramleague.net/styles/ramleaguev1/images/NoAds.png$image ||oblozhki.net/image/adv/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css darim.info##div[class="dpad"]:remove() ||www.sendsafebody.com^* ||sendsafebody.com^* !||iamediaserve.com/p/1/loader.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||iamediaserve.com^* ||www.sjcbioenergia.com.br^* ||sjcbioenergia.com.br^* ||www.streamhdnow.com^* ||streamhdnow.com^* ||img.comss.net/fit-in/300x250/filters:fill(FFFFFF)/action/yandex-antiphish.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.comss.net/action/perfomix.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bcvcrdr.xyz^* ||www.bcvcrdr.xyz^* ||searchmgr.com^* ||static.searchmgr.com^* ||www.searchmgr.com^* ||poweriso.srchmgrd.com/report$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||game6503.bbqprize25.life^* ||*.bbqprize25.life^* ||newsupdatedepot.info^* ||www.newsupdatedepot.info^* ||incogpontus.club^* ||www.incogpontus.club^* ||webcontentdelivery.info^* ||www.webcontentdelivery.info^* !||qd7z.newsupdateunit.info^* !||qdsz.newsupdateunit.info^* ||*.newsupdateunit.info^* !||prg.smartadserver.com/prebid/v1$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||prg.smartadserver.com^* ||nextmillennium.liqwid.net^* ||kotaroyalliving.com^* ||www.kotaroyalliving.com^* ||srchsports.com^* ||www.srchsports.com^* icutit.ca###adsground:remove() ||www.techypctools.co^* ||techypctools.co^* ||biggamez.com^* ||www.biggamez.com^* ||f5v1x3kgv5.com^* ||www.f5v1x3kgv5.com^* www.metrolyrics.com##div[id^="div-gpt-ad-leaderboard"]:remove() ||ec83cce4c209447a2af3d62f2.litix.io^* ||inqlnfvog763mmf771rou737u.litix.io^* !||srv.tonefuse.com/showads/showad.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||srv.tonefuse.com/showads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||vidtech.cbsinteractive.com/uvpjs/2.9.1/lib/tracking/comscore/comscore.streaming.6.1.1.171219.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||vidtech.cbsinteractive.com/uvpjs/2.9.1/lib/tracking/mux.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||vidtech.cbsinteractive.com/uvpjs/2.9.1/lib/tracking/adobe/VideoHeartbeat-2.0.2.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vidtech.cbsinteractive.com/uvpjs/2.9.1/lib/tracking/adobe/AppMeasurement-2.3.0.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css canadafreepress.com###proads_space_anchor_video_ad_alt:remove() canadafreepress.com###proads_space_anchor_video_ad:remove() ||inewcontentdelivery.info^* ||www.inewcontentdelivery.info^* ||ad-panda.net^* ||www.ad-panda.net^* ||allnewsupdate.info^* ||www.allnewsupdate.info^* ||free.internetspeedtracker.com^* ||bestfileconverter.com^* ||www.bestfileconverter.com^* www.nytimes.com##div.e1yhpxjt1.css-70rfte:nth-of-type(2):remove() www.nytimes.com##div.css-p1yi70.StoryBodyCompanionColumn:nth-of-type(3) > .css-13jtjmc:remove() !||eu.digitaldsp.com/api/reverse^* ||eu.digitaldsp.com^* ||best4255.debprize19.live^* ||debprize19.live^* ||www.debprize19.live^* www.ebay.com###gf-mrecs-ads:remove() ||tracking.unitednaturals.com^* www.wikihow.com###rightrail0 > .whad:remove() www.wikihow.com###introad-outer:remove() www.bostonglobe.com##.meter-social-connect__container:remove() ||p.adsymptotic.com^* ||ads-west-colo.adsymptotic.com^* !||8328.bapi.adsafeprotected.com^* !||5726.bapi.adsafeprotected.com/bapi?anid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||5726.bapi.adsafeprotected.com/dbapi?ias_callback=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||5726.bapi.adsafeprotected.com^* ||*.bapi.adsafeprotected.com^* ||pixel.adsafeprotected.com^* ||anycast.pixel.adsafeprotected.com^* !||dt.adsafeprotected.com/dt?asid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dt.adsafeprotected.com^* ||static.adsafeprotected.com/vans-adapter-google-ima.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d162h6x3rxav67.cloudfront.net/vans-adapter-google-ima.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.adsafeprotected.com/iasPET.1.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d162h6x3rxav67.cloudfront.net/iasPET.1.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.adsafeprotected.com/skeleton.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d162h6x3rxav67.cloudfront.net/skeleton.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static.adsafeprotected.com/skeleton.gif?adslot=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static.adsafeprotected.com/skeleton.gif?bannnerid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.adsafeprotected.com/skeleton.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d162h6x3rxav67.cloudfront.net/skeleton.gif?adslot=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! blocks videos on nfl.com !||static.adsafeprotected.com^* !||cdn.adsafeprotected.com/sca.17.1.10.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.adsafeprotected.com^* !||ads.adaptv.advertising.com/applist?key=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cmap.ox.ace.advertising.com/cfcm.ashx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||conversions.adaptv.advertising.com/conversion/wc?adSourceid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||conversions.adaptv.advertising.com/crossdomain.xml$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||dtm.advertising.com/411f1e96-3bde-4d85-b17e-63749e5f0695.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||dtm.advertising.com/ids/411f1e96-3bde-4d85-b17e-63749e5f0695$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||log.adaptv.advertising.com/crossdomain.xml$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pixel.advertising.com/crossdomain.xm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pixel.advertising.com/ups/7/occ$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pixel.advertising.com/ups/56466/sync$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||secure.bannerfarm.ace.advertising.com/msft/msn.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||sync.adaptv.advertising.com/falk_user_sync$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.adaptv.advertising.com^* ||adserver-us.adtech.advertising.com^* !||cas.pxl.ace.advertising.com/cfcm.ashx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cas.pxl.ace.advertising.com^* ||cdn.adaptv.advertising.com/msft/msftsync.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cmap.at.ace.advertising.com^* ||cmap.ox.ace.advertising.com^* ||conversions.adaptv.advertising.com^* ||dtm.advertising.com^* ||log.adaptv.advertising.com^* ||pixel.advertising.com^* ||rub.pxl.ace.advertising.com^* ||secure.bannerfarm.ace.advertising.com^* ||sync.adaptv.advertising.com^* !||vlibs.advertising.com/one-publishers-api/PubTag/pubtaglib-1.x.x.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vlibs.advertising.com^* !||video.adaptv.advertising.com/ad/ads/advertisers/advertisers.txt$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||video.adaptv.advertising.com/ad/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mediavine-d.openx.net^* ||src.ebay-us.com/fp/clear.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||us-ads.openx.net^* ! blocks video clips on IGN !||www.sdad.guru/i10c@p1/cenome/endpoint/nanovisor$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||g.bing.com/uac/request?size=728x90;noperf=1;adclntid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.sendtransfer.com##.vrsek.col-md-12.col-sm-12.col-xs-12.transfer:remove() www.sendtransfer.com##.col-md-12.col-sm-12.col-xs-12.text-left.noPadding.reklamaObal:remove() ||suthepar.info^* ||www.suthepar.info^* ||cdn.fileepic.com/download-12-be403168ae029563de7e1c686bebc94e.png$image ||cdn.fileepic.com/download-21-be403168ae029563de7e1c686bebc94e.png$image ||sxkwor.space^* ||www.sxkwor.space^* ||www.dirittnolaro.com^* ||dirittnolaro.com^* ||varielcontentdelivery.info^* ||www.varielcontentdelivery.info^* ||naganoadigei.com^* ||www.naganoadigei.com^* uploadproper.com###content > .big_res.ads_big:remove() uploadproper.com##div.ads_small:remove() uploadproper.com##div.big_res.ads_big:remove() ||uploadproper.com/images/dl-now.PNG$image ||livedomain829.site^* ||www.livedomain829.site^* ||best4pc.com/wp-content/uploads/2015/05/dnn3.png$image best4pc.com##a[href^="http://livedomain829.site/go.php"]:remove() best4pc.com##a.button:nth-of-type(5):remove() best4pc.com##a.button:nth-of-type(4):remove() best4pc.com##a.button:nth-of-type(3):remove() best4pc.com##a.button:nth-of-type(2):remove() ||www.nulledteam.com/data/siropu/am/user/15bd0a9b617446.png$image www.nulledteam.com##.samCustomSize.samAlignCenter.samBannerUnit:remove() !www.softpedia.com##div[class="ad adl ad-300x600 adwblue fr mgleft_30 mgbot_20 mgtop_10"]:remove() www.softpedia.com##div[class*="ad-300x600"]:remove() www.softpedia.com##div[class*="adwblue"]:remove() www.masterkreatif.com##button#user-act:nth-of-type(2):remove() www.masterkreatif.com##button#user-act:nth-of-type(1):remove() ||kbx1sth37s.com^* ||www.kbx1sth37s.com^* !www.buzzfeednews.com###mod-subbuzz-text-1 > .ad-placement--wide.ad-inline.js-ad-placement.clearfix:remove() !www.buzzfeednews.com###mod-subbuzz-text-11 > .ad-placement--wide.ad-inline.js-ad-placement.clearfix:remove() !www.buzzfeednews.com###mod-subbuzz-text-16 > .ad-placement--wide.ad-inline.js-ad-placement.clearfix:remove() !www.buzzfeednews.com###mod-subbuzz-text-20 > .ad-placement--wide.ad-inline.js-ad-placement.clearfix:remove() !www.buzzfeednews.com###mod-subbuzz-text-5 > .ad-placement--wide.ad-inline.js-ad-placement.clearfix:remove() !www.buzzfeednews.com###mod-subbuzz-text-7 > .ad-placement--wide.ad-inline.js-ad-placement.clearfix:remove() !www.buzzfeednews.com###mod-subbuzz-text-9 > div.ad-placement--wide.ad-inline.js-ad-placement.clearfix:nth-of-type(2):remove() !www.buzzfeednews.com##div.ad-placement--wide.ad-inline.js-ad-placement.clearfix:remove() !www.buzzfeednews.com##div.xs-mb2:nth-of-type(10) > .ad-wireframe-wrapper--labeled.ad-wireframe-wrapper:remove() !www.buzzfeednews.com##div.xs-mb2:nth-of-type(8) > .xs-pt1.md-mt0.ad-flexible.ad-bfnews-fullwidth.ad-wireframe-wrapper--labeled.ad-wireframe-wrapper:remove() !www.buzzfeednews.com##li.ad-wireframe-wrapper--labeled.ad-wireframe-wrapper:remove() !www.buzzfeednews.com##.xs-my2 > .xs-pt1.md-mt0.ad-flexible.ad-bfnews-fullwidth.ad-wireframe-wrapper--labeled.ad-wireframe-wrapper:remove() www.buzzfeednews.com##div[class*="ad-placement--wide.ad-inline.js-ad-placement.clearfix"]:remove() www.buzzfeednews.com##div[class*="ad-wireframe-wrapper--labeled.ad-wireframe-wrapper"]:remove() www.buzzfeednews.com##div[class^="ad-wireframe-wrapper"]:remove() www.buzzfeednews.com##div[id^="div-gpt-ad-"]:remove() !||cdn.run-syndicate.com/sdk/v1/n.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.run-syndicate.com^* ||smothere.pro^* ||www.smothere.pro^* lawandcrime.com###AdThrive_Content_2_desktop:remove() lawandcrime.com###AdThrive_Content_1_desktop:remove() lawandcrime.com###AdThrive_Content_4_desktop:remove() lawandcrime.com###AdThrive_Content_5_desktop:remove() lawandcrime.com###AdThrive_Content_3_desktop:remove() ||i62e2b4mfy.com^* ||www.i62e2b4mfy.com^* ||poogriry.click^* ||www.poogriry.click^* www.sarna.net###right-ad-1:remove() ||ebookee.org/acsg.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s4yxaqyq95.com^* ||www.s4yxaqyq95.com^* ||marvin-joomla.ml^* ||nihilist.pw^* ||www.nihilist.pw^* ||megalevelmarketing.info^* ||www.megalevelmarketing.info^* ||withdromnit.pro^* ||www.withdromnit.pro^* fileflares.com##div[class="adsbygoogle"]:remove() ||barbitinnovans.info^* ||www.barbitinnovans.info^* ||h0uw.barbitinnovans.info^* ||install.quick-converter.com^* ||spouscontentdelivery.info^* ||www.spouscontentdelivery.info^* ||sticks.bucketlaugh.fun^* ||bucketlaugh.fun^* ||www.bucketlaugh.fun^* ||reading.pipepizzas.fun^* ||pipepizzas.fun^* ||www.pipepizzas.fun^* reevown.com##div[id="babasbmsgx"]:remove() !||reevown.com/ad/banner/_adsense_/_adserver/_adview_.ad.json$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||reevown.com/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||reevown.com/googleapi_help_advertisment.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css rmz.cr###latest_episodes_fuck_adblock:remove() ||2.bp.blogspot.com/-Kc7KJ33v7lI/Wxslu6RFwJI/AAAAAAAAX4g/XKymnx403jI8NCUfXlb57mknjlvOTb0cgCK4BGAYYCw/s1600/2-2.jpg$image ||2.bp.blogspot.com/-lEZ7TJYPYTE/WxyRLICHfjI/AAAAAAAAX5A/dq3qxRPLYlYr9Aufap6xGbWAyFWMgW-YACK4BGAYYCw/s1600/dark300x250.jpg$image ||d2ipzmg0avd0av.cloudfront.net/creatives/$image ||totalfootballtrading.com/wp-content/uploads/2011/06/banner-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$image ||ultimatetradingrobot.com/wp-content/uploads/2017/10/UTR_160x600.gif$image ||www.gamingjobsonline.com/images/banner/$image !||www.gamingjobsonline.com/images/banner/animatedbanner*$image ||www.redteadetox.com/affiliates/wp-content/uploads/2016/07/set2-125x125.gif$image ||www.ultimatewowguide.com/banners_dg5/$image ||siteadvisoronline.com^* ||www.siteadvisoronline.com^* ||bodelen.com^* ||www.bodelen.com^* www.apkherunterladen.com##.adsbygoogle:remove() www.apkherunterladen.com###pdt_gd.ad-box:remove() www.allfreeapk.com##.ad-box:remove() ||ad.download.cnet.com^* download.cnet.com##.aside:remove() download.cnet.com###leader_bottom:remove() download.cnet.com##div[id^="dclk-studio-creative_"]:remove() download.cnet.com##div[id^="DfaVisibilityIdentifier_"]:remove() download.cnet.com##div[id="leader_plus_top"]:remove() download.cnet.com##div[id="intromercial"]:remove() download.cnet.com##.bwp_std_call:remove() download.cnet.com##div[id^="ypaAdWrapper-"]:remove() download.cnet.com###mpu_bottom:remove() download.cnet.com###download-leaderboard-ad-bottom:remove() download.cnet.com###mpu_top:remove() ! The following two rules will prevent the video player from initializing and being displayed. !download.cnet.com##div[class^="google_ads_iframe_"]:remove() !download.cnet.com##div[id^="google_ads_iframe_"]:remove() !||download.cnet.com/g00/@p1/clientprofiler/adframestats$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||download.cnet.com/g00/@p1/clientprofiler/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||i.jsrdn.com/i/1.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||stats3.unrulymedia.com/blank.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stats3.unrulymedia.com^* ||graucoay.net^* ||www.graucoay.net^* ||amousinded.info^* ||www.amousinded.info^* ||n5wj.amousinded.info^* ||caqo.amousinded.info^* ||dh4q.amousinded.info^* deals.bestbuy.com##div[class="Ad_content"]:remove() deals.bestbuy.com##div[class="Ad_bottom"]:remove() thedroidguy.com###quads-ad6:remove() ||www.phonetransfer.org/wp-content/uploads/2018/10/spyzie-animation.gif$image ||predocontentdelivery.info^* ||www.predocontentdelivery.info^* ||word.minutelip.fun^* ||minutelip.fun^* ||www.minutelip.fun^* ||beginner.hobbiesdegree.fun^* ||hobbiesdegree.fun^* ||www.hobbiesdegree.fun^* ||uiringsprimaria.info^* ||www.uiringsprimaria.info^* ||analytics.auslogics.com^* ||analytics.justuno.com^* ||androidapkmods.com^* ||www.androidapkmods.com^* ||www.ads.persianwhois.com^* ||ads.persianwhois.com^* ||nudooapfildwbz.com^* ||www.nudooapfildwbz.com^* ||vjzcgotoy.com^* ||www.vjzcgotoy.com^* ||3pu7u.com^* ||www.3pu7u.com^* !||pamela.runtnc.net^* !||ics.runtnc.net^* !||gmn.runtnc.net^* ||*.runtnc.net^* ||www.secure-activatesi.pw^* ||secure-activatesi.pw^* ||nhkhxvnhfdkn.com^* ||www.nhkhxvnhfdkn.com^* ||3y7h8.com^* ||www.3y7h8.com^* ||kdyfsgpa.com^* ||www.kdyfsgpa.com^* ||txycbaimitable.xyz^* ||www.txycbaimitable.xyz^* ||olfkptkfop.com^* ||www.olfkptkfop.com^* ||madnertysq.space^* ||www.madnertysq.space^* ||ghoto-12.win^* ||www.ghoto-12.win^* ||constintptr.com^* ||www.constintptr.com^* ||1.bp.blogspot.com/-ocpBoqopkt0/TjWL-Ug8--I/AAAAAAAAAs4/3p8sr4aILGM/s1600/Orange+336x280.jpg$image ||4.bp.blogspot.com/-i8tycknxIms/TjRNficwKrI/AAAAAAAAApY/hPltffBdoRM/s1600/Orange+728x90+Size.jpg$image ||i.imgur.com/3MAL2xq.png$image ||i.imgur.com/dI3EzJL.png$image ||nyltsyud.com^* ||111.nyltsyud.com^* ||111.3pu7u.com^* ||musicsaveslifes.com^* ||111.musicsaveslifes.com^* ||qgnakeddgtdw.com^* ||www.qgnakeddgtdw.com^* ||bmew2.com^* ||www.bmew2.com^* ||nytqlenw.com^* ||www.nytqlenw.com^* ||58qt2.com^* ||www.58qt2.com^* ||noy-95.com^* ||www.noy-95.com^* ||app2542.mzprize55.life^* ||mzprize55.life^* ||www.mzprize55.life^* ||rutrk.org/iframe/adbet-top-2.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||rutrk.org/728x90/181116_1.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rutrk.org/728x90/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rutracker.org/iframe/MG-bottom.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lpbhbwpbpnl.com^* ||www.lpbhbwpbpnl.com^* ||microsoft-security-alert09201.tk^* ||www.microsoft-security-alert09201.tk^* ||adbetnet.com^* ||www.adbetnet.com^* ||z.cdn.adbetnet.com^* ||zjsbeont.com^* ||www.zjsbeont.com^* swiftviz.net##div[id="bottomAd"] !||ww2.festyy.com^* !||festyy.com^* ||ajjhtetv87.com^* ||www.ajjhtetv87.com^* !||fastspeedtest.ml/search/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fastspeedtest.ml^* ||otuveoqm.com^* ||www.otuveoqm.com^* www.teamos-hkrg.com##.errorOverlay:remove() www.teamos-hkrg.com##div[id="exposeMask"]:remove() ||ariocroft.com^* ||www.ariocroft.com^* !||united-states-entertainment-studio-v2266.ariocroft.com^* !||united-states-entertainment-studio-v4027.ariocroft.com^* ||www.yourtelevisionnow.com^* ||yourtelevisionnow.com^* ||vinfdv6b4j.com^* ||www.vinfdv6b4j.com^* ||kcugdqmmfcqrb.com^* ||www.kcugdqmmfcqrb.com^* ||tf42.com^* ||www.tf42.com^* ||newspolovb.info^* ||www.newspolovb.info^* ||krtdobasy.com^* ||www.krtdobasy.com^* ||isitedesigning.com^* ||www.isitedesigning.com^* ||cayqecxokz.com^* ||www.cayqecxokz.com^* ayefiles.com##div[id^="rn_ad_native_"]:remove() ayefiles.com##div[id^="M378823ScriptRootC299317"]:remove() ayefiles.com##div[class="adsbox"]:remove() ayefiles.com##div[class="pub_300x250"]:remove() ayefiles.com##div[class="textAd"]:remove() ayefiles.com##div[class="text_ads"]:remove() ayefiles.com##div[class="text-ad"]:remove() ayefiles.com##div[class="pub_728x90"]:remove() ||ygdnflmhslwi.com^* ||www.ygdnflmhslwi.com^* ||atf42.com^* ||www.atf42.com^* www.mexashare.com##.remodal-is-opened.remodal-is-initialized.adblock-instruction.remodal:remove() ||www.mexashare.com/images/adblock.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||newsushe.info^* ||www.newsushe.info^* www.mundoperfecto.net##div[class="adsb30"]:remove() ||wmr1f.voluumtrk.com^* ||www.ad4track.com/jump/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ppbvmesssyacij.com^* ||www.ppbvmesssyacij.com^* my.vmware.com###_evh-link:remove() ||hfedqcww.com^* ||www.hfedqcww.com^* ||b3l3l.com^* ||www.b3l3l.com^* ||chauksoa.net^* ||www.chauksoa.net^* ||dgqktjmxtlp.com^* ||www.dgqktjmxtlp.com^* !abc7.com##.responsive-ad.ad-banner.ad:remove() abc7.com##.responsive-ad:remove() !abc7.com##.ad-container.adRectangle-pos-small:remove() abc7.com##.ad-container:remove() ||a.abc.com/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||resentaticexhaus.info^* ||www.resentaticexhaus.info^* !||369542119.pub.ezanga.com/rv2.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||369542119.pub.ezanga.com^* !||369542119.protected-by-traffic-advisors.ezanga.com^* ||*.protected-by-traffic-advisors.ezanga.com^* !retrobitch.wordpress.com###atatags-286348-5c018f591c717:remove() !retrobitch.wordpress.com###atatags-114160-5c018f590c5dd:remove() !retrobitch.wordpress.com###atatags-26942-5c018f590c5dc:remove() retrobitch.wordpress.com##div[class^="atatags-"]:remove() retrobitch.wordpress.com##div[id^="atatags-"]:remove() ||dxprljqoay4rt.cloudfront.net^* ||goverallyhandl.club^* ||www.goverallyhandl.club^* ||trothko.com^* ||www.trothko.com^* ||xgmlmmulciz.com^* ||www.xgmlmmulciz.com^* ||pimygjumeyrtxe.com^* ||www.pimygjumeyrtxe.com^* ||bgfdrngowyy.com^* ||www.bgfdrngowyy.com^* ||odukhsymyua.com^* ||www.odukhsymyua.com^* ||vtcxhnri.com^* ||www.vtcxhnri.com^* ||ioujbpldicfgm.com^* ||www.ioujbpldicfgm.com^* !www.addictivetips.com##div[class="pub_300x250 pub_300x250m pub_728x90 text-ad textAd text_ad text_ads text-ads text-ad-links ad adblock"]:remove() www.addictivetips.com##div[class*="pub_300x250"]:remove() www.addictivetips.com##div[class*="pub_300x250m"]:remove() www.addictivetips.com##div[class*="pub_728x90"]:remove() www.addictivetips.com##div[class*="text-ad"]:remove() www.addictivetips.com##div[class*="textAd"]:remove() www.addictivetips.com##div[class*="text_ad"]:remove() www.addictivetips.com##div[class*="text_ads"]:remove() www.addictivetips.com##div[class*="text-ads"]:remove() www.addictivetips.com##div[class*="text-ad-links"]:remove() www.addictivetips.com##div[class*="ad adblock"]:remove() ||gload.cc/2018/istripper.gif$image ||b5s6u8n9.ssl.hwcdn.net/6_Reasons_for_having_a_dog.mp4$media ! The following rule redirects the video to a null file instead. !||b5s6u8n9.ssl.hwcdn.net/6_Reasons_for_having_a_dog.mp4$media,redirect=noop-1s.mp4 ||track1.aniview.com^* !||go1.aniview.com/api/adserver/tag/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||go1.aniview.com/api/adserver/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.politico.com##div[class="interrupt-item ad"]:remove() !www.politico.com##div[class="ad-slot js-lazy-load flex vertical "]:remove() www.politico.com##div[class^="ad-slot"]:remove() ||fukkzdxfyrchhc.com^* ||www.fukkzdxfyrchhc.com^* ||jsybwjivrlhx.com^* ||www.jsybwjivrlhx.com^* ||ootqfqjhzfrtn.com^* ||www.ootqfqjhzfrtn.com^* ||blwfqlmhi.com^* ||www.blwfqlmhi.com^* ||www.siholubepuhemi.com^* ||siholubepuhemi.com^* ||mechangesee.club^* ||www.mechangesee.club^* uploadocean.com##div[id^="contentad"]:remove() ||ection.space^* ||www.ection.space^* !||pagead-googlehosted.l.google.com/safeframe/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pagead-googlehosted.l.google.com^* ||adclick.g.doublecklick.net^* ||naohofhbprtx.com^* ||www.naohofhbprtx.com^* ||kmkdkefa.com^* ||www.kmkdkefa.com^* ||znbokxhkwx.com^* ||www.znbokxhkwx.com^* ||cwvdzcqvg.com^* ||www.cwvdzcqvg.com^* ||gvhqnlti.com^* ||www.gvhqnlti.com^* ||trkur4.com^* ||www.trkur4.com^* ||palomino.space^* ||www.palomino.space^* ||xcelleration.info^* ||www.xcelleration.info^* ||ivvoooxuyjfuo.com^* ||www.ivvoooxuyjfuo.com^* ||shmpdqwucl.com^* ||www.shmpdqwucl.com^* ||pxphhwnmwuey.com^* ||www.pxphhwnmwuey.com^* ||zramisxvxmkf.com^* ||www.zramisxvxmkf.com^* !||www.apttrk.com/metarefresh^* ||www.apttrk.com^* ||hdwjwooqvnm.com^* ||www.hdwjwooqvnm.com^* ||eklcrpehu.com^* ||www.eklcrpehu.com^* ||www.myemailtracking.com/view_email.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||scsklzqwme.com^* ||www.scsklzqwme.com^* ||beginning.2018payday.com^* ||www.2018payday.com^* ||bnpmudgktroz.com^* ||www.bnpmudgktroz.com^* ||wrwwvymy.com^* ||www.wrwwvymy.com^* ||f5.inbbc.site^* ||inbbc.site^* ||www.inbbc.site^* ||e5.independent-news.club^* ||independent-news.club^* ||www.independent-news.club^* !||arptrk.com/track/outs.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||arptrk.com^* ||www.arptrk.com^* ||wjavelurhgx.com^* ||www.wjavelurhgx.com^* ||rrnqzntj.com^* ||www.rrnqzntj.com^* ||lu72rc.xyz^* ||www.lu72rc.xyz^* ||yckdywmihuabu.com^* ||www.yckdywmihuabu.com^* !||trkset.com/trk/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||trkset.com^* ||zlegojgwg.com^* ||www.zlegojgwg.com^* ||rqaobxvj.com^* ||www.rqaobxvj.com^* ||sconcentpract.info^* ||www.sconcentpract.info^* ||wvvftburvtyz.com^* ||www.wvvftburvtyz.com^* ||sxhpwsgdyhw.com^* ||www.sxhpwsgdyhw.com^* ||pprcfwhlmtagay.com^* ||www.pprcfwhlmtagay.com^* ||www.nellyawiw-nere.com^* ||nellyawiw-nere.com^* ||thritingcontail.info^* ||www.thritingcontail.info^* ||dkm6b5q0h53z4.cloudfront.net^* ||soehcsryxyd.com^* ||www.soehcsryxyd.com^* ||uaneklzqph.com^* ||www.uaneklzqph.com^* ||vlkdntgqqfjusm.com^* ||www.vlkdntgqqfjusm.com^* ||landings.simayeaval.com^* ||nowymmrxj.com^* ||www.nowymmrxj.com^* ||hehraybryciyls.com^* ||www.hehraybryciyls.com^* ||aomegwesrfbvxe.com^* ||www.aomegwesrfbvxe.com^* ||knqjhdkndh.com^* ||www.knqjhdkndh.com^* ||lesmyjzc.com^* ||www.lesmyjzc.com^* ||lnpqqigowz.com^* ||www.lnpqqigowz.com^* ||wqkpadciw.com^* ||www.wqkpadciw.com^* ||lmcoiiwpguaorp.com^* ||www.lmcoiiwpguaorp.com^* ||eozbwwxniksmb.com^* ||www.eozbwwxniksmb.com^* ||0k06s8.xyz^* ||www.0k06s8.xyz^* ||tracking.deepsearch.adlucent.com^* ||ymzrrizntbhde.com^* ||www.ymzrrizntbhde.com^* ||nycnjewyxex.com^* ||www.nycnjewyxex.com^* ||vxrpmslex.com^* ||www.vxrpmslex.com^* ||uuaajohul.com^* ||www.uuaajohul.com^* ||d29i6o40xcgdai.cloudfront.net^* ||icapabloidsety.club^* ||www.icapabloidsety.club^* ||uploadproper.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||etrabandidlo.club^* ||www.etrabandidlo.club^* uploadproper.com###content > .small_res.ads_small uploadproper.com##div.small_res.ads_small uploadproper.com##div[id="banner_ad"] uploadproper.com##div[class="adsbygoogle"] uploadproper.com##div[class^="ads_big"] uploadproper.com##div[class^="ads_small"] uploadproper.com##div[class="adsbox"] ||lurchased.info^* ||www.lurchased.info^* ||europerikuytol.info^* ||www.europerikuytol.info^* !||d2k8blu5qp5ezc.cloudfront.net/vdb%5Ekulcrpv/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d2k8blu5qp5ezc.cloudfront.net^* www.techonthenet.com###sabl www.techonthenet.com##div[class="slot bottom_slot"] www.techonthenet.com##div[class="slot top_slot"] www.techonthenet.com##div[class="slot left_slot"] www.pornhub.com###pb_block ||inter1ads.com^* ||www.inter1ads.com^* !www.foxebook.net##div[id="idab467bc749containerab467bc749"] www.foxebook.net##div[id^="id"][id*="container"]:remove() !www.foxebook.net##div[id="idab467bc749bannerab467bc749"] www.foxebook.net##div[id^="id"][id*="banner"]:remove() !www.foxebook.net##div[id="idab467bc749closeab467bc749"] www.foxebook.net##div[id^="id"][id*="close"]:remove() ||tharbadir.com^* ||www.tharbadir.com^* ||asinartisationy.info^* ||www.asinartisationy.info^* !||krakragames.com/games/lander.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||krakragames.com^* ||www.krakragames.com^* ||scarf.houseskettle.xyz^* ||houseskettle.xyz^* ||www.houseskettle.xyz^* ||join.collarhate.pw^* ||collarhate.pw^* ||www.collarhate.pw^* ||touch.buttershelf.host^* ||buttershelf.host^* ||www.buttershelf.host^* ||throat.advicedesk.host^* ||advicedesk.host^* ||www.advicedesk.host^* ||wasspargotitta.club^* ||www.wasspargotitta.club^* ||deathereclother.info^* ||www.deathereclother.info^* ||d1n3tk65esqc4k.cloudfront.net^* ||desiasm.club^* ||www.desiasm.club^* ||paysoxemgjqp.com^* ||www.paysoxemgjqp.com^* ||kgqlrcjlrx.com^* ||www.kgqlrcjlrx.com^* ||scnlog.life/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||vt.myvisualiq.net/2/afTxMmlGwCNRJiC5Bd75ug%3D%3D/vt-150.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vt.myvisualiq.net^* ||www.fastly-insights.com/insights.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||qnfpskgtzkw.com^* ||www.qnfpskgtzkw.com^* ||gjmlseezqjy.com^* ||www.gjmlseezqjy.com^* ||tiptwfbksobui.com^* ||www.tiptwfbksobui.com^* ||vmrsmnrvzh.com^* ||www.vmrsmnrvzh.com^* ||faegbmhey.com^* ||www.faegbmhey.com^* ||www.wiywlvkwwwrms.com^* ||wiywlvkwwwrms.com^* ||www.awgsmfzrslcp.com^* ||awgsmfzrslcp.com^* ||www.wnzmauurgol.com^* ||wnzmauurgol.com^* ||kfypsloqkccvpl.com^* ||www.kfypsloqkccvpl.com^* ||www.srmdata.com/beacon$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.cixvlpbnceh.com^* ||cixvlpbnceh.com^* ||earandmarketing.com^* ||www.earandmarketing.com^* ||poirreleast.club^* ||www.poirreleast.club^* !||dedicatedcloud.info/cloud/boot.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dedicatedcloud.info^* ||www.dedicatedcloud.info^* !||tb.rg-adguard.net^* !Windows OS ISO Download links ||gmationothere.club^* ||www.gmationothere.club^* ||upload4earn.org/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pushwhy.com^* ||www.pushwhy.com^* !||pushno.com/ntfc.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.pushno.com^* ||pushno.com^* www.itechtics.com###ezmobfooter ||www.rmhdjambba.com^* ||rmhdjambba.com^* ||openload.co/advert2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pewdewgeehc.com^* ||www.pewdewgeehc.com^* !||ssum.casalemedia.com/usermatch$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ssum.casalemedia.com^* ||update.googleapis.com/service/update2$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||kbdstwnruc.com^* ||www.kbdstwnruc.com^* ||s.zmctrack.net^* linuxhint.com###ezmobfooter:remove() linuxhint.com##.vce_adsense_wrapper:remove() ||hosoft-argeria.com^* ||track.approvedfornext.com^* ||jyahmckzsbh.com^* ||www.jyahmckzsbh.com^* ||d2fbkzyicji7c4.cloudfront.net^* ||www.masterkreatif.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||globulidactitive.info^* ||www.globulidactitive.info^* !||et-cod.com/bens/vinos.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||et-cod.com^* !||speedtest3.com/games/speedtest2.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||speedtest3.com^* ||www.speedtest3.com^* ||eetseemp.net^* ||www.eetseemp.net^* ||filmsmaniasaga.com^* ||www.filmsmaniasaga.com^* ||ottomdisede.club^* ||www.ottomdisede.club^* ||evantative.top^* ||www.evantative.top^* ||boostfiles.net/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||boostfiles.net/themes/flow/js/clipboardjs/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||boostfiles.net/themes/flow/js/zeroClipboard/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css boostfiles.net##div[class="metaRedirectWrapperTopAds"]:remove() !||tag.researchnow.com/t/beacon$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tag.researchnow.com^* ||cdn1.extremereach.io/media/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.acdektqffm.com^* ||acdektqffm.com^* ||www.prctxexizzpp.com^* ||prctxexizzpp.com^* ||www.yefttzzn.com^* ||yefttzzn.com^* ||ikupicwg.com^* ||www.ikupicwg.com^* ||sxedqvvaxxj.com^* ||www.sxedqvvaxxj.com^* ||fepzygektdt.com^* ||www.fepzygektdt.com^* ||sqnkkpba.com^* ||www.sqnkkpba.com^* ||www.slideshare.net/li/track$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||yourlifeisgood.club^* ||www.yourlifeisgood.club^* ||a.adtng.com^* ||www.torrentfunk2.com/ipinfo.json$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.torrentfunk2.com/images/rev.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.torrentfunk2.com##.trtbl yourbittorrent2.com##.trtbl ||xml.popmonetizer.com^* ||xml.revrtb.com^* ||nettrafficpartners.net^* ||xml.adworldmedia.com^* !||searchfeed.seccint.com/v2/pixel/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||searchfeed.seccint.com^* !||us.buzznews.today/search/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||us.buzznews.today^* ||morphonebrities.info^* ||www.morphonebrities.info^* ||www.fingahvf.top^* !||ie8eamus.com/sfp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ie8eamus.com^* ||www.ie8eamus.com^* !||wzdzht7am5.com/c5/f7/79/c5f77962c8ee757bb48e15a3b3099745.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wzdzht7am5.com^* ||www.wzdzht7am5.com^* ||cdnjs.cloudflare.com/ajax/libs/fingerprintjs2/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||va.tawk.to/log-performance/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||t1.extreme-dm.com/f.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||t1.extreme-dm.com^* ||fvenxjtzuaxu.com^* ||www.fvenxjtzuaxu.com^* ||skzpsnpp.com^* ||www.skzpsnpp.com^* ||www.iuooczzbi.com^* ||iuooczzbi.com^* ||buy.tinypass.com/checkout/template/show$subdocument ||yfdrpdjbxjm.com^* ||www.yfdrpdjbxjm.com^* ||djiboutdifficial.info^* ||www.djiboutdifficial.info^* ||dc08i221b0n8a.cloudfront.net^* ||forwrdnow.com^* ||www.forwrdnow.com^* ||load.dorup.ru^* ||datswebnnews.com^* ||signforcover.com^* ||www.signforcover.com^* ||guildmails.com^* ||www.guildmails.com^* !||csp.yahoo.com/beacon/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||csp.yahoo.com^* ||sd5doozry8.com^* ||www.sd5doozry8.com^* ||b.chairgaubsy.com^* ||a.chairgaubsy.com^* ||chairgaubsy.com^* ||www.chairgaubsy.com^* ||pushame.com^* ||www.pushame.com^* ||pushokey.com^* ||www.pushokey.com^* ||vk.com/js/cmodules/web/likes.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.ghisler.com/cgi-sys/Count.cgi$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hg8dc7bm.com^* ||www.hg8dc7bm.com^* ||www.freemake.com/js/cookies_bnr.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pbpdgojwzfdc.com^* ||www.pbpdgojwzfdc.com^* ||www.jkawfxvh.com^* ||jkawfxvh.com^* ||lfrqmuplp.com^* ||www.lfrqmuplp.com^* ||d2gi7ultltnc2u.cloudfront.net^* ||d361oi6ppvq2ym.cloudfront.net^* ||d3rt1990lpmkn.cloudfront.net^* ||ds.serving-sys.com^* ||partnerad.l.doubleclick.net^* ||zmkihizd.com^* ||www.zmkihizd.com^* ||kygozmlrr.com^* ||www.kygozmlrr.com^* ||vcvapkiua.com^* ||www.vcvapkiua.com^* ||asrjxxzxmxy.com^* ||www.asrjxxzxmxy.com^* !||pinterest.adsymptotic.com/d/px/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pinterest.adsymptotic.com^* ||www.srmdata.com/msg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sheinsz.ltwebstatic.com/she_dist/js/sdk_analysis-5bc1b73586.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||count.shein.com^* ||sckzvqadc.com^* ||www.sckzvqadc.com^* !||recommender.scarabresearch.com/merchants/15306811EE8118BB/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||recommender.scarabresearch.com/js/15306811EE8118BB/scarab-v2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||recommender.scarabresearch.com^* ||gfchcxin.com^* ||www.gfchcxin.com^* ||esfzbdwg.com^* ||www.esfzbdwg.com^* ||www.deliciousbreakfast.me^* ||deliciousbreakfast.me^* ||www.topsellers100.com/click.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.bnr.co/tonic^* ||www.bnr.co^* ||bnr.co^* ||kiqsynap.com^* ||www.kiqsynap.com^* filecloud.io##div[class^="alert alert-"] ||b42rracj.com^* ||www.b42rracj.com^* ||www.bhpxcsmvkqgd.com^* ||bhpxcsmvkqgd.com^* ||www.ypummbggdjex.com^* ||ypummbggdjex.com^* ||qa.n7.abclocal.go.com/assets/compiled/sourcemaps/tracker.js.map$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||qa.n7.abclocal.go.com/assets/compiled/sourcemaps/ads.min.js.map$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdns.abclocal.go.com/assets/compiled/js/ads/1.0.4/ads.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdns.abclocal.go.com/assets/compiled/js/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css abc13.com##div[class*="ad-banner"] abc13.com##div[class*="ad-overpage"] abc13.com##div[class*="ad-interstitial"] abc13.com##div[class*="ad-adhesion"] abc13.com##div[class*="ad-prestitial"] abc13.com##div[class*="responsive-ad"] abc13.com##div[class*="ad-pageroll"] abc13.com##div[class^="ad-helper"] abc13.com##div[id="hl-logger"] abc13.com##div[class="ym inner"] ||fnmubgld.com^* ||www.fnmubgld.com^* ||www.ccyttdkwntyhx.com^* ||ccyttdkwntyhx.com^* ||gmwqmjkggg.com^* ||www.gmwqmjkggg.com^* ||iflndvke.com^* ||www.iflndvke.com^* ||www.cxunpvor.com^* ||cxunpvor.com^* !||c.evidon.com/sitenotice/evidon-sitenotice-tag.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c.evidon.com^* ||zxlchzyluskvj.com^* ||www.zxlchzyluskvj.com^* !||d1vtzkh8o9m3tk.cloudfront.net/h@1xvu3sszpgh/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d1vtzkh8o9m3tk.cloudfront.net^* ||nicmtzkucd.com^* ||www.nicmtzkucd.com^* ||kyelvsyayysa.com^* ||www.kyelvsyayysa.com^* ||qdjnwlrjllti.com^* ||www.qdjnwlrjllti.com^* ||qbttelbrupkss.com^* ||www.qbttelbrupkss.com^* ||www.nbcudigitaladops.com/hosted/global*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||data.queryly.com/ping.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fm.cnbc.com/applications/cnbc.com/staticcontent/scripts/omniture/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css digg.com##.ad-container--originals-top ||vcfnspbgztl.com^* ||www.vcfnspbgztl.com^* ||sxgmppxfts.com^* ||www.sxgmppxfts.com^* ||pzzmqjrp.com^* ||www.pzzmqjrp.com^* ||hvpcxythnjl.com^* ||www.hvpcxythnjl.com^* !||rxtb.sandsitedrhec.club^* !||e86f.sandsitedrhec.club^* !||tsw8.sandsitedrhec.club^* !||b1h4.sandsitedrhec.club^* !||nmr4.sandsitedrhec.club^* ||*.sandsitedrhec.club^* ||djv99sxoqpv11.cloudfront.net^* ||runmewivel.com^* ||www.runmewivel.com^* ||paratingexcret.info^* ||www.paratingexcret.info^* ||x1337x.ws/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sedatorsinted.info^* ||www.sedatorsinted.info^* ||turngrind.com^* ||www.turngrind.com^* ||forcedolphin.com^* ||www.forcedolphin.com^* ||bristlyapace.com^* ||www.bristlyapace.com^* ||xml.showcasead.com^* !||imgxv.com/code/x/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||imgxv.com^* ||www.imgxv.com^* ||cdnjs.cloudflare.com/ajax/libs/cookieconsent2/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdnjs.cloudflare.com/ajax/libs/cookie-banner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d24i7nel361oxh.cloudfront.net^* ||www2.saveupdatetypeliteflash.icu^* ||www.saveupdatetypeliteflash.icu^* ||saveupdatetypeliteflash.icu^* ||setgreatcloudliteflash.icu^* ||www.setgreatcloudliteflash.icu^* ||www2.setgreatcloudliteflash.icu^* ||haterrotontjo.info^* ||www.haterrotontjo.info^* ||renaissanto.com^* ||www.renaissanto.com^* !||1warie.com/links/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tensitionschoo.club^* ||www.tensitionschoo.club^* ||uploadev.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.aerisapi.com/batch/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hnkkj0b-qwerty.wedeploy.io^* ||www.freewebhostingarea.com/images/poweredby.png$image ||kqlokjfrnz.com^* ||www.kqlokjfrnz.com^* ||lodekanqic.com^* ||www.lodekanqic.com^* ||vtkzecshdl.com^* ||www.vtkzecshdl.com^* ||ssdsylfzav.com^* ||www.ssdsylfzav.com^* ||native.propellerads.com^* ||www.lxcpprjfgkt.com^* ||lxcpprjfgkt.com^* ||www.fjszsffyfihqlg.com^* ||fjszsffyfihqlg.com^* !||pads.cdnads.com/www/images/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pads.cdnads.com^* ||conityles-angths.com^* ||www.conityles-angths.com^* ||enx265.com/en-network/visitors-traffic-real-time-statistics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ylx-4.com/pup.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ylx-4.com^* !||ylx-1.com/bnr.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ylx-1.com^* ||clicksfly.com/js/full-page-script.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||i1.wp.com/clicksfly.com/img/ref/clicksglygifbanner.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fvtwyjev.com^* ||www.fvtwyjev.com^* ||hcmjlsxhebb.com^* ||www.hcmjlsxhebb.com^* ||yzveuheeothp.com^* ||www.yzveuheeothp.com^* ||www.xxhgzzinkrbbo.com^* ||xxhgzzinkrbbo.com^* ||www.yecxfxsbkb.com^* ||yecxfxsbkb.com^* ||www.ahuosyyqprt.com^* ||ahuosyyqprt.com^* ||qybzvfvqzpmxpu.com^* ||www.qybzvfvqzpmxpu.com^* ||syndication.exosrv.com/ads-iframe-display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||syndication.exosrv.com/ads-priv.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||syndication.exosrv.com/splash.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||syndication.exosrv.com/splash-zones-split.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cradver.livejasmin.com^* ||ads.verticalscope.com^* ||t.wallstrads.com^* !www.mediaite.com###AdThrive_Content_1_desktop:remove() !www.mediaite.com###AdThrive_Content_2_desktop:remove() www.mediaite.com##div[id^="AdThrive_Content_"]:remove() ||ads.adthrive.com^* ||marmalade.adthrive.com^* !||g2.gumgum.com/hbid/imp^* !||g2.gumgum.com/javascripts/ggv2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||g2.gumgum.com^* ||hb.emxdgt.com^* ||hb.undertone.com^* ||dmx.districtm.io^* ||cafemedia-d.openx.net^* ||as-sec.casalemedia.com^* !||apex.go.sonobi.com/trinity.json$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||apex.go.sonobi.com^* ||s3.amazonaws.com/brt-appnexus-cookie-sync/1x1.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||edba.brealtime.com^* ||track.adthrive.com^* !||cdn.districtm.io/ids/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.districtm.io^* !||biddr.brealtime.com/check.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||biddr.brealtime.com^* !||adadvisor.net/adscores/g.pixel$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adadvisor.net/adscores/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.tricsdqejmu.com^* ||tricsdqejmu.com^* ||www.lcolevwciuwj.com^* ||lcolevwciuwj.com^* ||www.xilnalycptredw.com^* ||xilnalycptredw.com^* ||www.ucvrtwfh.com^* ||ucvrtwfh.com^* ||rmz.cr/files/js/libs/fuckadblock.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.relaymedia.com/ping$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||p.rfihub.com^* ||connatix-d.openx.net^* !||vtrk.doubleverify.com/t/v=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vtrk.doubleverify.com^* ||www.oinqqbzs.com^* ||oinqqbzs.com^* ||www.tgujinopirjgnn.com^* ||tgujinopirjgnn.com^* ||www.waethaifxuhbe.com^* ||waethaifxuhbe.com^* ||srtfly.com/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||srtfly.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pushlum.com/ntfc.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pushlum.com^* ||www.pushlum.com^* ||gsafe.getawesome1.com^* ||bird.sidediscovery.pw^* !||api-v3.tinypass.com/api/v3/page/unload^* ||api-v3.tinypass.com^* !||experience.tinypass.com/xbuilder/experience/load^* !||experience.tinypass.com/xbuilder/experience/execute^* ||experience.tinypass.com^* !||cdn.tinypass.com/api/tinypass.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.tinypass.com^* !||buy.tinypass.com/api/v3/access/check^* !||buy.tinypass.com/_sam/widget/dist/checkout/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||buy.tinypass.com/widget/dist/checkout/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||buy.tinypass.com/checkout/offer/show^* ||buy.tinypass.com^* !||id.tinypass.com/id/api/v1/identity/token/verify^* ||id.tinypass.com^* !||api-esp.piano.io/tracker/lucid/visit/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api-esp.piano.io/tracker/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||js.braintreegateway.com/v2/braintree.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.telegraph.co.uk/telegraph-advertising/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||analytics.carambo.la/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tmg.demdex.net/dest5.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tmg.demdex.net^* ||zukxd6fkxqn.com^* ||www.zukxd6fkxqn.com^* !||fnqh.netedaninghiga.info^* ||*.netedaninghiga.info^* ||netedaninghiga.info^* ||adsrv4k.com^* !||tagbucket.cc/_tags/jstags.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tagbucket.cc^* www.superdataresearch.com###newsletter-container ||a63t9o1azf.com^* ||www.a63t9o1azf.com^* ||osny2p7a0k.com^* ||www.osny2p7a0k.com^* ||45eijvhgj2.com^* ||www.45eijvhgj2.com^* ||parhertmoverfo.info^* ||www.parhertmoverfo.info^* ||lh3.googleusercontent.com/-yztko-C_ZIs/Vv1NUkQlotI/AAAAAAAAAhw/9ippzCQIwtc7xja3x-PmzmaSX3bObvJmA/h86/start.gif$image ||burporess.pro^* ||www.burporess.pro^* !||beta.kaprila.com/a/show.js.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||beta.kaprila.com/a/show.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||beta.kaprila.com^* ||atinhenfortwa.info^* ||*.atinhenfortwa.info^* !||db59.atinhenfortwa.info^* !||hok9.atinhenfortwa.info^* !||ibvv.atinhenfortwa.info^* !||nfcl.atinhenfortwa.info^* !||rm8v.atinhenfortwa.info^* !||srb4.atinhenfortwa.info^* !||x8on.atinhenfortwa.info^* ||uploadocean.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||drda5yf9kgz5p.cloudfront.net^* ||yoursesdecretary.info^* ||www.yoursesdecretary.info^* ||ministedik.info^* ||www.ministedik.info^* ||justorstonsmajo.info^* ||www.justorstonsmajo.info^* ||tertethapsindu.info^* ||www.tertethapsindu.info^* uploadocean.com##div[class="adsbox"] ||www.yqmmjmjxdigdak.com^* ||yqmmjmjxdigdak.com^* tutsgalaxy.com##div[class="adsbygoogle"] tutsgalaxy.com##div[id^="tutsg-"] !tutsgalaxy.com###tutsg-2022307694 > .adsbygoogle !tutsgalaxy.com###tutsg-921482569 > .adsbygoogle !tutsgalaxy.com###tutsg-1140150638 > .adsbygoogle !tutsgalaxy.com###tutsg-994999489 > .adsbygoogle !tutsgalaxy.com###tutsg-306982084 > .adsbygoogle !tutsgalaxy.com###tutsg-543353777 > .adsbygoogle ||www.ldgananrrtx.com^* ||ldgananrrtx.com^* ||www.usdlgonjnzpu.com^* ||usdlgonjnzpu.com^* ||www.mqdznyotsam.com^* ||mqdznyotsam.com^* ||4fm6m.com^* ||295mv.com^* ||homeepotrebates.com^* ||www.homeepotrebates.com^* !||web-analytics.engagio.com/js/ei.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||web-analytics.engagio.com^* ||popcornhole.com^* ||www.wqtsvqzthaoq.com^* ||wqtsvqzthaoq.com^* ||neyenbozrfuocz.com^* ||www.neyenbozrfuocz.com^* !||www.apollo-affiliates.com/idevaffiliate.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.apollo-affiliates.com^* ||apollo-affiliates.com^* ||yjxtuwpbgzwc.com^* ||www.yjxtuwpbgzwc.com^* ||www.hqsgnzvjkyog.com^* ||hqsgnzvjkyog.com^* ||www.qfypbqbumu.com^* ||qfypbqbumu.com^* !||push-notifications.top/fpp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||push-notifications.top^* ||www.push-notifications.top^* ||dsp.moonify.io^* !||pkg.moonify.io/0.13/globalcookies/globalcookies.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pkg.moonify.io/0.13/currencies/XMR/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pkg.moonify.io^* ||www.entitytag.co.uk/ingress/event/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||visitor.fiftyt.com/st2.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||visitor.fiftyt.com^* !||deviceid.trueleadid.com/st.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||deviceid.trueleadid.com^* !||api.retargetly.com/sync^* ||api.retargetly.com^* !||fei.pro-market.net/engine^* ||fei.pro-market.net^* !||1154.global.siteimproveanalytics.io^* ||*.siteimproveanalytics.io^* ||wywyuserservice.com^* !||dl.go4up.com/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !blocks download links !||dl.go4up.com/ad.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !blocks download links dl.go4up.com##div[id^="epmads-"] !||loadus.exelator.com/load/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||loadus.exelator.com^* ||sczcxmaizy.com^* ||www.sczcxmaizy.com^* ||bidagent.xad.com^* ||anyonemyth.com^* ||www.anyonemyth.com^* ||detergebetterming.info^* ||www.detergebetterming.info^* ||hintonsfeetred.info^* ||www.hintonsfeetred.info^* ||septembership.com^* ||www.septembership.com^* ||g344530742.com^* ||www.g344530742.com^* ||g2247755016.com^* ||www.g2247755016.com^* !||abserv123.com/abs/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||abserv123.com^* ||www.abserv123.com^* ||g3369554495.com^* ||www.g3369554495.com^* ||g1341551423.com^* ||www.g1341551423.com^* !||metricfast.com/mt/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||metricfast.com^* ||www.metricfast.com^* ||g2526721279.com^* ||www.g2526721279.com^* ||g2281971609.com^* ||www.g2281971609.com^* ||g2438896021.com^* ||www.g2438896021.com^* ||g2440001011.com^* ||www.g2440001011.com^* ||g2921554487.com^* ||www.g2921554487.com^* ||g3938452447.com^* ||www.g3938452447.com^* ||ounyrilukncbj.com^* ||www.ounyrilukncbj.com^* ||record.commissionkings.ag^* ||kuvlikgekekwp.com^* ||www.kuvlikgekekwp.com^* ||dev.visualwebsiteoptimizer.com/*/track-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||dev.visualwebsiteoptimizer.com/analysis/*/opa-*.js ||www.pdoijgyoxcjob.com^* ||pdoijgyoxcjob.com^* ||www.wiezvhxoqhnn.com^* ||wiezvhxoqhnn.com^* ||www.lkhkeviyctneka.com^* ||lkhkeviyctneka.com^* ||veedjtyvhn.com^* ||www.veedjtyvhn.com^* ||fdxdjkswppg.com^* ||www.fdxdjkswppg.com^* ||kmjexpirqstyzv.com^* ||www.kmjexpirqstyzv.com^* ||rbbesmzvokpste.com^* ||www.rbbesmzvokpste.com^* ||vastpixel.adsafeprotected.com^* !||vpaid.adsafeprotected.com/js/vpaid-transformer/0.19.20/vpaid-transformer-no-csw.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vpaid.adsafeprotected.com^* !||vast.adsafeprotected.com/vast/fwjsvid/st/238133/33141663/skeleton.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vast.adsafeprotected.com^* ||hrtxufdb.com^* ||www.hrtxufdb.com^* !histograms (telemetry information sent from Thunderbird to Mozilla); also blocks unbranded versaion downloads though ||wuyednuhrxvsr.com^* ||www.wuyednuhrxvsr.com^* ||openload.co/advert3.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.kpgjogkbwjpmz.com^* ||kpgjogkbwjpmz.com^* ||www.wjevvjxwg.com^* ||wjevvjxwg.com^* !||tr.snapchat.com/p$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tr.snapchat.com^* !||amplifypixel.outbrain.com/pixel?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||amplifypixel.outbrain.com^* ||mcd-sdk.playbuzz.com/adwords.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||prd-collector-anon.playbuzz.com/main/events$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||prd-collector-anon.playbuzz.com^* ||adm.fwmrm.net/p/msn_live/AdManager.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||mssl.fwmrm.net/libs/adm/6.24.0/AdManager.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mssl.fwmrm.net/libs/adm/*/AdManager.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mssl.fwmrm.net/p/espn_desktop_prod/AdManager.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mssl.fwmrm.net/p/msn_live/AdManager.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ads.playbuzz.com/api/v1/template$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.playbuzz.com^* ||www.jlsydeysmgghdy.com^* ||jlsydeysmgghdy.com^* ||www.dthmzwzsgjibw.com^* ||dthmzwzsgjibw.com^* ||www.tbrzzxyvkz.com^* ||tbrzzxyvkz.com^* ||noxredxaijqdb.com^* ||www.noxredxaijqdb.com^* ||jsnvgtuj.com^* ||www.jsnvgtuj.com^* ||rkueifizvmwbi.com^* ||www.rkueifizvmwbi.com^* !||analytics.foresee.com/ingest/events$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||analytics.foresee.com^* ||en.savefrom.net/assets/experiment/propellerAdsPush/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||en.savefrom.net/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||en.savefrom.net/assets/experiment/clickads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pusherism.com/ntfc.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pusherism.com^* !||trecurlik.com/sc.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||trecurlik.com^* ||www.trecurlik.com^* !||appstats-a.akamaihd.net/log^* ||appstats-a.akamaihd.net^* ||comotions-arryards.com^* ||events.pushtrack.co^* !||events.pushtrack.co/pw_saveUserEventLog.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||i.1dmp.co/logger/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||i7.1dmp.co/getuuid.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||i.1dmp.co^* !||i7.1dmp.co^* ||i*.1dmp.co^* ||intentformula.go2cloud.org^* ||keyrolan.com^* ||www.opptmzpops.com^* !||www.pushtrack.co/script/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.pushtrack.co^* ||pushtrack.co^* ||www.searchsecureprime.co^* !||www.searchsecureprime.co/js/banner.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.searchsecureprime.co/js/landing.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.clickability.com^* ||gwiq-v3.globalwebindex.net/v2/gwiq/campaign/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mssl.fwmrm.net/p/ots_live/AdManager.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.freewheel.tv^* ||www.tuxbpnne.com^* ||tuxbpnne.com^* ||www.fviwwkvvxs.com^* ||fviwwkvvxs.com^* ||pamela.runtnc.net^* ||baynesvilleeletronics.com^* ||www.baynesvilleeletronics.com^* ||42bq8.com^* ||3dert.com^* mspoweruser.com###shunno_widget_sidebar_advert-3:remove() mspoweruser.com###shunno_widget_sidebar_sovrnadsmall-2:remove() mspoweruser.com###shunno_widget_sidebar_sovrnad-2:remove() ||2ch.hk/banners/$image ||thethandarinhec.info^* ||*.thethandarinhec.info^* !||jsk4.thethandarinhec.info^* !||aowg.thethandarinhec.info^* !||l8gq.thethandarinhec.info^* ||hantinlethemsed.info^* ||www.hantinlethemsed.info^* ||jungloconding.info^* ||www.jungloconding.info^* ||d2ho1n52p59mwv.cloudfront.net^* ||dolohen.com^* ||www.dolohen.com^* ||www.your24football.com^* ||zoagremo.net^* ||upload4earn.org/nsw.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||psughooy.com^* ||www.psughooy.com^* !||ootcheey.net/js/backbone/8.37.32/backbone.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ootcheey.net^* !||www.getlnk8.com/wim/static/wi/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.getlnk8.com^* ||getlnk8.com^* ||49oa3o49b6.com^* ||www.49oa3o49b6.com^* ||uploadev.com/pushno.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stats.zotabox.com^* ||mgti1kofb8.com^* ||www.mgti1kofb8.com^* ||79zgycmr.com^* ||www.79zgycmr.com^* ||pixel.parolropmo.pro^* ||parolropmo.pro^* ||filescdn.net/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||phastoag.com^* ||www.phastoag.com^* ||7wtic7ru.com^* ||www.7wtic7ru.com^* ||pheegoab.click^* ||www.pheegoab.click^* ||g2546417787.com^* ||weather.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s.w-x.co/weather/assets/125.premiumAdDataLake.c16a5d7f0700da449d42.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s.w-x.co/weather/assets/124.refreshAds.338c2c4a75318c5e43f6.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s.w-x.co/weather/assets/121.wxAdTargeting.4a6f600b85ecf5f2edcc.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.w-x.co/weather/assets/*.premiumAdDataLake.*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.w-x.co/weather/assets/*.refreshAds.*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.w-x.co/weather/assets/*.wxAdTargeting.*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||weather.com/weather/assets/omniture-app-measurement.*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||weather.com/weather/assets/omniture-visitorapi.*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.w-x.co/weather/assets/sw.*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||humparsi.com^* ||www.humparsi.com^* ||www.ubqzmspmuzdw.com^* ||ubqzmspmuzdw.com^* ||www.vwdjipcvcph.com^* ||vwdjipcvcph.com^* ||www.cskwckhyhriyk.com^* ||cskwckhyhriyk.com^* ||gaitheed.com^* ||www.gaitheed.com^* ||aifoosty.net^* ||www.aifoosty.net^* ||propu.sh^* ||www.propu.sh^* ||glothouw.link^* ||www.glothouw.link^* www.flickr.com##div[class*="cookie-banner-view"]:remove() www.flickr.com##iframe[name="__pb_locator__"]:remove() www.flickr.com##+js(remove-node-text, script, /\w\.beaconError\s?=\s?function/gm) www.flickr.com##+js(remove-node-text, script, /__tcfapiTrustarc/gm) www.flickr.com##+js(remove-node-text, script, /__uspapi/gm) www.flickr.com##+js(remove-node-text, script, /__tcfapiLocator/gm) www.flickr.com##+js(remove-node-text, script, /\w\.GlobalSnowplowNamespace/gm) www.flickr.com##+js(set-constant, clientAppTimeLimit, 0) www.flickr.com##+js(set-constant, isUnsupportedBrowser, false) www.flickr.com##+js(trusted-replace-node-text, script, /clientAppTimeLimit\s?=\s?\d\s?\*\d{1,4};/gm, clientAppTimeLimit = 0;) www.flickr.com##+js(trusted-replace-node-text, script, /"isMe":\s?false/gm, "isMe": true) www.flickr.com##+js(trusted-replace-node-text, script, /"needsInterstitial":\s?true/gm, "needsInterstitial": false) www.flickr.com##+js(trusted-replace-node-text, script, /"isAdFree":\s?false/gm, "isAdFree": true) www.flickr.com##+js(trusted-replace-node-text, script, /"isOwner":\s?false/gm, "isOwner": true) www.flickr.com##+js(trusted-replace-node-text, script, /"ad_unit_desktop":/gm, "changed_desktop":) www.flickr.com##+js(trusted-replace-node-text, script, /"ad_unit_mobile":/gm, "changed_mobile":) www.flickr.com##+js(trusted-replace-node-text, script, /"enable-adobe-analytics":\s?"enabled"/gm, "enable-adobe-analytics": "disabled") www.flickr.com##+js(trusted-replace-node-text, script, /"enable-fb-pixel-analytics":\s?"enabled"/gm, "enable-fb-pixel-analytics": "disabled") www.flickr.com##+js(trusted-replace-node-text, script, /"enable_black_friday_banner_campaign":\s?"enabled"/gm, "enable_black_friday_banner_campaign": "disabled") www.flickr.com##+js(trusted-replace-node-text, script, /"enable-photo-page-ad-experiment":\s?"enabled"/gm, "enable-photo-page-ad-experiment": "disabled") www.flickr.com##+js(trusted-replace-node-text, script, /"enable_advertising_fallback_experiment":\s?"enabled"/gm, "enable_advertising_fallback_experiment": "disabled") www.flickr.com##+js(trusted-replace-node-text, script, /"enable-advertising-fallback-experiment":\s?"true"/gm, "enable-advertising-fallback-experiment": "false") www.flickr.com##+js(trusted-replace-node-text, script, /"enable-geoblock-cookie-consent":\s?"true"/gm, "enable-geoblock-cookie-consent": "false") www.flickr.com##+js(trusted-replace-node-text, script, /"enable-cookie-consent-execution-hermes":\s?"true"/gm, "enable-cookie-consent-execution-hermes": "false") www.flickr.com##+js(trusted-replace-node-text, script, /"enable-ad-timer-lock":\s?"true"/gm, "enable-ad-timer-lock": "false") www.flickr.com##+js(trusted-replace-node-text, script, /"enable-search-ads":\s?"true"/gm, "enable-search-ads": "false") www.flickr.com##+js(trusted-replace-node-text, script, /"enable_test_ads":\s?"enabled"/gm, "enable_test_ads": "disabled") www.flickr.com##+js(trusted-replace-node-text, script, /"gdpr_data_request_ui":\s?"enabled"/gm, "gdpr_data_request_ui": "disabled") www.flickr.com##+js(trusted-replace-node-text, script, /"canDownload":\s?false/gm, "canDownload": true) www.flickr.com##+js(trusted-replace-node-text, script, /"enable-album-download":\s?false/gm, "enable-album-download": true) www.flickr.com##+js(trusted-replace-node-text, script, /"systemModerated":\s?true/gm, "systemModerated": false) www.flickr.com##+js(trusted-replace-node-text, script, /"enable_sticky_ads":\s?"enabled-sticky-ads"/gm, "enable_sticky_ads": "disabled") www.flickr.com##+js(trusted-replace-node-text, script, /"enable_cookie_consent":\s?"enabled_geo_blocking"/gm, "enable_cookie_consent": "disabled") www.flickr.com##+js(trusted-replace-node-text, script, /"isReallyUnsupportedBrowser":\s?true/gm, "isReallyUnsupportedBrowser":false) ||www.flickr.com/beacon_rb_jserror.gne/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.flickr.com/beacon_flanal_reboot_event.gne$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||smugmugincflickrprodudction.112.2o7.net^* !||rb.adnxs.com/pack?log=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rb.adnxs.com^* ||prebid.adnxs.com^* ||secure-nym.adnxs.com^* !||acdn.adnxs.com/* !blocks foxnews.com videos !||acdn.adnxs-simple.com/prebid/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||acdn.adnxs-simple.com/prebid/appnexus-mapping/mappings.json$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||acdn.adnxs.com/prebid/prebid.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||acdn.adnxs.com/ib/static/usersync/v3/async_usersync.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||acdn.adnxs.com/dmp/async_usersync.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||acdn.adnxs.com/ast/ast.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||acdn.adnxs.com/ast/static/*/ast.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||acdn.adnxs.com/dmp/up/pixie.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||acdn.adnxs.com/vx/static/w/anwrapper-1.800.0.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||acdn.adnxs.com/vx/static/w/anwrapper-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.adnxs.com^* ||lax1.mobile.adnxs.com^* !||secure.adnxs.com/seg?add=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||secure.adnxs.com/getuid?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||secure.adnxs.com^* !||sharethrough.adnxs.com/getuidp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sharethrough.adnxs.com^* !||adnxs.com^* !blocks ib.adnxs.com too ||m.adnxs.com^* !||nym1-ib.adnxs.com/vast_track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nym1-ib.adnxs.com^* !||lax1-ib.adnxs.com/it?an_audit=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||lax1-ib.adnxs.com/rd_log$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lax1-ib.adnxs.com^* ||photobucket.adnxs.com^* subscription.packtpub.com##div[class="fade-out"] !subscription.packtpub.com##.upsell ||www.redditstatic.com/desktop2x/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||c.aaxads.com/aax.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c.aaxads.com^* ||criteo-sync.teads.tv^* !||t.teads.tv/track^* ||t.teads.tv^* ||cdn.teads.tv^* ||cdn2.teads.tv^* ||r.teads.tv^* ||sync.teads.tv^* !||a.teads.tv/page/82545/tag$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.teads.tv^* ||a.teads.com^* ||tvplusnewtab.com^* ||www.tvplusnewtab.com^* ||marial.pro^* ||www.marial.pro^* ||www.aagmbroxruno.com^* ||aagmbroxruno.com^* ||www.jwbroglwc.com^* ||jwbroglwc.com^* ||eencosteptffo.com^* ||www.eencosteptffo.com^* ||www.nvjjquyylqicp.com^* ||nvjjquyylqicp.com^* ||hddzzizitskc.com^* ||www.hddzzizitskc.com^* ||www.qsnzncerqgack.com^* ||qsnzncerqgack.com^* ||www.dpwrhdzeqw.com^* ||dpwrhdzeqw.com^* ||www.xhfosyfia.com^* ||xhfosyfia.com^* ||tvlubtrxcold.com^* ||www.tvlubtrxcold.com^* ||eghuntsrizvbt.com^* ||www.eghuntsrizvbt.com^* ||www.mgziozplbkzv.com^* ||mgziozplbkzv.com^* news.softpedia.com###_wlts.mgbot_20.fl.ad-300x250.adwblue.ad news.softpedia.com##.posrel.ta_left.fl.ad-300x250.adwblue.ad news.softpedia.com##.ad-300x600.adwblue.adc.ad extonlinux.wordpress.com###atatags-26942-5c5ffd597fc8f !||s.pubmine.com/adjr^* !||s.pubmine.com/hba^* !||s.pubmine.com/hbconf^* !||s.pubmine.com/head.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s.pubmine.com/imp_pixel/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s.pubmine.com/jslog^* !||s.pubmine.com/match^* !||s.pubmine.com/outstream.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s.pubmine.com/pixel^* !||s.pubmine.com/push_sync^* !||s.pubmine.com/sandbox.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s.pubmine.com/showad.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s.pubmine.com/wl_pixel/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.pubmine.com^* !||us-east-sync.bidswitch.net/sync^* ||us-east-sync.bidswitch.net^* !||hb-api.omnitagjs.com/hb-api/prebid/v1^* ||hb-api.omnitagjs.com^* ||fxpqoyxlas.com^* ||www.fxpqoyxlas.com^* ||tifzusomh.com^* ||www.tifzusomh.com^* ||njxjjvyim.com^* ||www.njxjjvyim.com^* ||phhigelii.com^* ||www.phhigelii.com^* ||www.fvsdvxjpxi.com^* ||fvsdvxjpxi.com^* ||qofzhmbqa.com^* ||www.qofzhmbqa.com^* ||pdnoucwb.com^* ||www.pdnoucwb.com^* ||aorzglux.com^* ||www.aorzglux.com^* ||hjxrhlmei.com^* ||www.hjxrhlmei.com^* ||lquodkeqws.com^* ||www.lquodkeqws.com^* ||wedwcmjo.com^* ||www.wedwcmjo.com^* ||www.statsforads.com/tag/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||get.optad360.io^* ||www.wlvjwquv.com^* ||wlvjwquv.com^* ||api.sabavision.com/uploads/user_data/banner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css download.ir##div[class^="top-full-ads"] !download.ir##div[class="h_iframe-sabavision_responsive_ads_728x90"] download.ir##div[class*="sabavision_responsive_ads"] download.ir/?ads=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||api.sabavision.com/pox/poxjs.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.sabavision.com^* ||tvvozxml.com^* ||www.tvvozxml.com^* ||yeouakimhubraf.com^* ||www.yeouakimhubraf.com^* ||ijfnbtksuntwqe.com^* ||www.ijfnbtksuntwqe.com^* ||ubusbjjd.com^* ||www.ubusbjjd.com^* ||157.230.171.217/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.ecpms.net^* ||ecpms.net^* ||smapohsnoww.com^* ||www.smapohsnoww.com^* ||syhjnolp.com^* ||www.syhjnolp.com^* ||www.servscience.com^* ||servscience.com^* ||6htb5ck86hk8i9.com^* ||www.6htb5ck86hk8i9.com^* ||cdn.6htb5ck86hk8i9.com^* ||atabencot.net/1market.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||atabencot.net/index/ping$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rouvpebtazdlq.com^* ||www.rouvpebtazdlq.com^* ||www.file-up.org/js/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||whegadry.com^* ||www.whegadry.com^* ||glaimtug.com^* ||www.glaimtug.com^* ||d1dli2tyorled9.cloudfront.net^* ||mshare.io/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css mshare.io##div[class="adblock-alert"]:remove() mshare.io##.in.fade.modal:remove() mshare.io##.in.fade.modal-backdrop:remove() !mshare.io##div[class="ads_336"]:remove() mshare.io##div[class^="ads_"]:remove() !||yoads.network/widget/get_link.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||yoads.network/widget/script.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||yoads.network^* www.cloudghost.net##.right.ad300:remove() www.cloudghost.net##.left.ad300:remove() www.cloudghost.net##div[class="ad728"]:remove() www.cloudghost.net##div[class="ad468"]:remove() ||ouo.io/js/pop.thhh.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||p220333.mycdn.co/script/rhpop_61.2-1.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.afeuvqrsswz.com^* ||afeuvqrsswz.com^* ||iozpujvmlojzhp.com^* ||www.iozpujvmlojzhp.com^* ||timetobuy.city/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.timetobuy.city/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||start.timetobuy.city/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||okoufwmfzujsf.com^* ||www.okoufwmfzujsf.com^* ||knimmqli.com^* ||www.knimmqli.com^* ||chvwtxtzmzbggo.com^* ||www.chvwtxtzmzbggo.com^* ||fhsohqtif.com^* ||www.fhsohqtif.com^* ||drwfixovzqdcs.com^* ||www.drwfixovzqdcs.com^* ||www.uvzfodimtska.com^* ||uvzfodimtska.com^* ||s3.amazonaws.com/qwe333sdfs/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !locks up before can filter ||s3.amazonaws.com/qwe333sdfs/chr11/support.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stvayyokjvxnl.com^* ||www.stvayyokjvxnl.com^* ||curriculture.com^* ||www.curriculture.com^* ||iitjeemainguide.in/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||iitjeemainguide.in/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||baconaces.pro^* ||www.baconaces.pro^* ||bethetmerectan.info^* ||pixel.bethetmerectan.info^* ||www.bethetmerectan.info^* ||j9j6l.top^* ||www.j9j6l.top^* !||adslop.com/display/index.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adslop.com/display/popads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adslop.com/display/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdnjs.cloudflare.com/ajax/libs/blockadblock/3.2.1/blockadblock.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdnjs.cloudflare.com/ajax/libs/blockadblock/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mwjeb.imicpa.org^* !||pushnice.com/ntfc.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pushnice.com^* ||www.pushnice.com^* ||forumfiles.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||djz9es32qen64.cloudfront.net^* ||qcontentdelivery.info^* ||www.qcontentdelivery.info^* ||uqbxjdeeq.com^* ||www.uqbxjdeeq.com^* !||pbcde.com/mbp/pre/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pbcde.com^* ||depositfiles.com/dfi-sw.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||hattepush.com/event/set$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||hattepush.com/push.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hattepush.com^* ||www.hattepush.com^* !||m-shes.ru/dbn/ssp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||m-shes.ru/dbp/pre/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||m-shes.ru/files/html/bridge.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||m-shes.ru/files/html/data.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||m-shes.ru/unload$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||m-shes.ru^* ||ordercheck.website^* ||login.netflix-userid.com^* ||netflix-userid.com^* ||www.netflix-userid.com^* ||k1.mobileadsserver.com^* ||srv.magnetadservices.com^* !||cdn.hivps.xyz/analytics-cilifanhao$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.hivps.xyz/analytics-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hechaocheng.cn^* ||www.hechaocheng.cn^* ||4006825178.com^* ||jc.4006825178.com^* ||jc.bubbleandyeson.com^* !||safe-aisle.jointreport-switch.com/export.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||safe-aisle.jointreport-switch.com/display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||safe-aisle.jointreport-switch.com^* ||lg4.jointreport-switch.com^* !||qj.borsendental.com/wejs/cshow^* ||qj.borsendental.com^* ||i.jhwj88.com^* !||m.yzjlsb.com/news/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||m.yzjlsb.com^* !||m.dsgy521.com/d.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||m.dsgy521.com^* ||count.7794.com^* !||j.qiqivv.com:4433/vlog_vm2.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||j.qiqivv.com:4433/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||j.qiqivv.com^* ||jimg.jisuoping.com/pc/2039-wangtui1/20170320eturio56yer.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s4.cnzz.com/z_stat.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s11.cnzz.com/stat.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s11.cnzz.com/z_stat.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s13.cnzz.com/stat.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s13.cnzz.com/z_stat.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s19.cnzz.com/z_stat.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s22.cnzz.com/z_stat.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s23.cnzz.com/z_stat.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s25.cnzz.com/stat.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s94.cnzz.com/stat.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s95.cnzz.com/z_stat.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||v1.cnzz.com/z_stat.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||z13.cnzz.com/stat.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||z5.cnzz.com/stat.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||z6.cnzz.com/stat.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||z7.cnzz.com/stat.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||z*.cnzz.com/stat.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||hzs25.cnzz.com/stat.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||oz.cnzz.com/stat.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gzs20.cnzz.com/stat.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !s*.cnzz.com/stat.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||*.cnzz.com/stat.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||*.cnzz.com/stat.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.cnzz.com/stat.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||*.cnzz.com/z_stat.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.cnzz.com/z_stat.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||w.cnzz.com/q_stat.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.cnzz.com/q_stat.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||c.cnzz.com/cnzz_core.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c.cnzz.com^* !||pw.cnzz.com/c.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pw.cnzz.com^* !||assets.258ydh.com/ss/tj.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||assets.258ydh.com^* ||g.blossommo.com^* ||www.uigruwtql.com^* ||uigruwtql.com^* ||hntxitqhto.com^* ||www.hntxitqhto.com^* ||expereien.com^* ||www.expereien.com^* ||6do4o.com^* ||www.6do4o.com^* ||48hk2.com^* ||www.48hk2.com^* ||belashuplands.com^* ||www.belashuplands.com^* ||d2va1d0hpla18n.cloudfront.net^* ||www.downloadpirate.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d3pvcolmug0tz6.cloudfront.net^* ||wedeegut.net^* ||www.wedeegut.net^* ||bxejeqyudkgum.com^* ||www.bxejeqyudkgum.com^* ||lknxarjfidm.com^* ||www.lknxarjfidm.com^* ||bnjhbghjznq.com^* ||www.bnjhbghjznq.com^* ||voastauz.net^* ||www.voastauz.net^* ||uclaut.net/index/ping$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||uclaut.net/puopen.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wwww.gallery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||afternoon.world/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||yptwqjdgikmcqc.com^* ||www.yptwqjdgikmcqc.com^* ||gwovohvkzay.com^* ||www.gwovohvkzay.com^* ||www.axcqasdiots.com^* ||axcqasdiots.com^* ||vbxrcekqkmrzyd.com^* ||www.vbxrcekqkmrzyd.com^* !||s1.mediaad.org/serve/yasdl.com/loader.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s1.mediaad.org^* ||rtb.exoclick.com^* !www.yasdl.com##div[class="ads-120 d-table container"] www.yasdl.com##div[class^="ads-120"] !www.yasdl.com##div[class="sidebar-block ads-block"] www.yasdl.com##div[class$="ads-block"] !www.yasdl.com##div[class="sidebar-block sidebar-textads"] www.yasdl.com##div[class$="sidebar-textads"] !www.yasdl.com##div[class="text-ads-top row"] !www.yasdl.com##div[class="top-ads container inner-el"] !www.yasdl.com##div[class="top-ads-wrap wrapper"] www.yasdl.com##div[class^="text-ads-top"] www.yasdl.com##div[class^="top-ads"] www.yasdl.com##div[class^="top-ads-wrap"] www.yasdl.com##div[class="yasdl-top-banners-left"] www.yasdl.com##div[class="yasdl-top-banners-right"] www.yasdl.com##div[class="yasdl-topbanners-body"] www.yasdl.com##div[class="yasdlbanner"] www.yasdl.com##div[id="mediaad-RETi"] www.yasdl.com##div[class="breadcrumb-wrap wrapper"] !3d-load.net##p !blocks download links !||3d-load.net/wp-content/plugins/deadblocker/assets/js/blockadblock.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||3d-load.net/wp-content/plugins/deadblocker/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||luckypushh.com/ntfc.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||luckypushh.com^* ||www.microsoft.com-repair-windows.live^* ||microsoft.com-repair-windows.live^* ||www1.securybrowse.com^* ||www.securybrowse.com^* ||now.topreadtoday.com^* ouo.press##.text-center > div ||ww2.destyy.com^* ||www.fastcounter.de/fcounter.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.magesypro.com##ins[class="adsbygoogle"]:remove() !||s11.flagcounter.com/count2/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||qjlgyiuesk.com^* ||www.qjlgyiuesk.com^* ||oylqnzunnw.com^* ||www.oylqnzunnw.com^* ||wnuvhicameqiso.com^* ||www.wnuvhicameqiso.com^* ||yljtytqq.com^* ||www.yljtytqq.com^* ||hsydzoapohcvbz.com^* ||www.hsydzoapohcvbz.com^* ||zukbmxbrv.com^* ||www.zukbmxbrv.com^* ||aspxbwteth.com^* ||www.aspxbwteth.com^* ||arkinhechershedt.info^* ||www.arkinhechershedt.info^* ||umebiggestern.club^* ||www.umebiggestern.club^* ||nanolege.info^* ||www.nanolege.info^* ||uploadbuzz.org/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||uploadbuzz.org/btn.png$image uploadbuzz.org##div[class="adsunit2"] uploadbuzz.org##div[class="adsbox"] uploadbuzz.org##div[class="adsunit4"] ||d3cnt068cd9esl.cloudfront.net^* ||makemyvids.com^* ||www.viralsnappy.xyz^* ||viralsnappy.xyz^* ||dnzevkqpk.com^* ||www.dnzevkqpk.com^* ||vvkvlqubnge.com^* ||www.vvkvlqubnge.com^* ||pcbfhotfyuyg.com^* ||www.pcbfhotfyuyg.com^* ||qmiiqzfk.com^* ||www.qmiiqzfk.com^* ||zomsfhgj.com^* ||www.zomsfhgj.com^* ||7hor9gul4s.com^* ||www.7hor9gul4s.com^* ||sendit.cloud/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||seecontentdelivery.info^* ||www.seecontentdelivery.info^* ||mgojnezwuuxyv.com^* ||www.mgojnezwuuxyv.com^* ||fiv2yl8dct.com^* ||dclmmbjyshy.com^* ||czaxrbclfse.com^* ||www.fiv2yl8dct.com^* ||www.dclmmbjyshy.com^* ||www.czaxrbclfse.com^* ||69oxt4q05.com^* ||intangibleconcordant.com^* ||virsalor.xyz^* ||www.69oxt4q05.com^* ||www.intangibleconcordant.com^* ||www.virsalor.xyz^* ||4.bp.blogspot.com/-RNibvKuH90U/Wf3jpVVefuI/AAAAAAAAUOE/kOCGMPrAIYM2WKLKQotHdw0SJK1TcBP3gCLcBGAs/s1600/dload.png$image ||2.bp.blogspot.com/-QYUNIXxUWxo/XF-y_H3PuVI/AAAAAAAAY-Y/4wSB4G6VFDAgzR7orT5M8QfVZ2WLMBb5QCLcBGAs/s1600/prosis.png$image ||kj4oksvt8xlumf.com^* ||www.kj4oksvt8xlumf.com^* !||block.sw2block.com/rotator-v2/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||block.sw2block.com/js/rotator_extension_v2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||block.sw2block.com/script/block.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||block.sw2block.com^* 123link.vip##.dark.ads-block-warning ||tbmwhcyfapzjre.com^* ||www.tbmwhcyfapzjre.com^* ||commodates.info^* ||www.commodates.info^* ||d2g9nmtuil60cb.cloudfront.net^* /^https?:\/\/cdn(?:2|3)?\.tapioni\.com/ip\-push\.js/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css /^https?:\/\/cdn(?:2|3)?\.tapioni\.com/adgpt\.js/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.o333o.com/adgpt.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.o333o.com/vast-im.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.o333o.com/asgfb.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||a.o333o.com/api/spots/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.o333o.com^* ||analytics.yomedia.vn^* ||delivery.adnetwork.vn^* ||ss.yomedia.vn/js/1/411/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ss.yomedia.vn/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stc.gammaplatform.com/tracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||t.gammaplatform.com^* !||tag.gammaplatform.com/adx/request/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tag.gammaplatform.com^* uclaut.net###fade:remove() !uclaut.net###_bd:remove() ||mykhtesikvuz.com^* ||www.mykhtesikvuz.com^* ||qjttowndvet.com^* ||www.qjttowndvet.com^* ally.shortens.co##div[class="btn-lg btn-danger capoff disabled"]:remove() ally.shortens.co##div[class="ads ad_100 clearfix"]:remove() ally.shortens.co##div[class="ads ad_728 clearfix"]:remove() ally.shortens.co##ins[class="adsbygoogle"]:remove() ally.shortens.co##div[id="qvl812c"]:remove() ally.shortens.co##div[class="center-captcha hidden"]:remove() ||cbsdigitalmedia.hb.omtrdc.net^* ||www.summerhamster.com^* ||cdn.grateful.io/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mfad.inskinad.com^* ||dsum-sec.casalemedia.com^* ||ssum-sec.casalemedia.com^* ||justicejudo.com^* ||basketballbelieve.com^* ||sofia.trustx.org^* ||gratefulventures2-d.openx.net^* ||api.mixpanel.com/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||event.api.drift.com/track$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.skillshare.com/sessions/*/trackTime$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.skillshare.com/mixpanel/track$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bkuubwuarrkxk.com^* ||www.bkuubwuarrkxk.com^* ||vltjkelvgvj.com^* ||www.vltjkelvgvj.com^* golinks.info##ins[class="adsbygoogle"]:remove() !||thoorest.com/ntfc.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||thoorest.com^* ||www.thoorest.com^* !||qlkd.muchorindownlo.info^* !||gmyp.muchorindownlo.info^* !||yu7v.muchorindownlo.info^* !||dyfr.muchorindownlo.info^* !||pvce.muchorindownlo.info^* !||bpjh.muchorindownlo.info^* !||muchorindownlo.info^* ||*.muchorindownlo.info^* ||d13jhr4vol1304.cloudfront.net^* ||dudebutandlac.info^* ||www.dudebutandlac.info^* ||emisedsaddamson.info^* ||www.emisedsaddamson.info^* ||orderchecking.site^* ||xorder.pw^* ||riousd.xyz^* ||pan.baidu.com/sns/box-static/disk-share/js/log.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pan.baidu.com/feproxy/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pan.baidu.com/api/analytics$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pan.baidu.com/pcloud/counter/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pan.baidu.com/rest/2.0/pcs/adx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.syncs.online/themes/flow/frontend_assets/images/adblock/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||syncs.online/rotator.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.syncs.online/themes/flow/frontend_assets/js/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css syncs.online##div[id="adblockinfo"]:remove() syncs.online##div[class="metaRedirectWrapperTopAds"]:remove() ||syncs.online/TF_Banner_travel.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||syncs.online/Crypto_Wall_Banner.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.gougoubt.org##p[class="photo-list"]:remove() ||www.gougoubt.org/sou/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.gougoubt.org/gougou-files/beauties/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lpzsxemf.com^* ||www.lpzsxemf.com^* ||fpzcaabzhvzz.com^* ||www.fpzcaabzhvzz.com^* ||mogqlceldpwbxe.com^* ||www.mogqlceldpwbxe.com^* ||rorightimuch.info^* ||www.rorightimuch.info^* ||bardogjvsa.com^* ||www.bardogjvsa.com^* ||bcajjtbzmdrl.com^* ||www.bcajjtbzmdrl.com^* ||yrpjklwly.com^* ||www.yrpjklwly.com^* ||whjibbprhng.com^* ||www.whjibbprhng.com^* ||olrznxrgkym.com^* ||www.olrznxrgkym.com^* ||grlygpybnhbwcu.com^* ||www.grlygpybnhbwcu.com^* www.programmingbuddy.club##.header-custom-ads:remove() ||logging.carambo.la/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xtr.carambo.la/GetAds$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||carambola-d.openx.net^* ||d2c4r37pj8idja.cloudfront.net^* ||trk-sp.sele.co^* ||reculdrothense.info^* ||www.reculdrothense.info^* ||qbldzsktv.com^* ||www.qbldzsktv.com^* ||ferunda.pw^* ||www.ferunda.pw^* ||wnmtmdlvqqscs.com^* ||www.wnmtmdlvqqscs.com^* ||hxvuuswzydwykb.com^* ||www.hxvuuswzydwykb.com^* ||addgfxnb.com^* ||www.addgfxnb.com^* ||edua29146y.com^* ||www.edua29146y.com^* ||bestblackhatforum.eu/terraads%20header.gif$image ||bestblackhatforum.eu/terraads%20footer.gif$image ||elfnwncr.com^* ||www.elfnwncr.com^* ||plxtejszb.com^* ||www.plxtejszb.com^* ||jhijojlatyvri.com^* ||www.jhijojlatyvri.com^* ||chjfbjjgqts.com^* ||www.chjfbjjgqts.com^* ||yeagdfyw.com^* ||www.yeagdfyw.com^* ||www.wmrlljpj.com^* ||wmrlljpj.com^* ||ziqdunppuzjd.com^* ||www.ziqdunppuzjd.com^* ||www.gqrsxfwxvx.com^* ||gqrsxfwxvx.com^* !||t.a3cloud.net/AM-141546/tag.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||t.a3cloud.net^* ||tags.w55c.net^* ||uppybbhxbblxa.com^* ||www.uppybbhxbblxa.com^* ||cbuxzegro.com^* ||www.cbuxzegro.com^* ||jhybwydghelnd.com^* ||www.jhybwydghelnd.com^* ||nfkd2ug8d9.com^* ||www.nfkd2ug8d9.com^* ||7fkm2r4pzi.com^* ||www.7fkm2r4pzi.com^* ||reiqwxxd.com^* ||www.reiqwxxd.com^* ||rfrsnqen.com^* ||www.rfrsnqen.com^* ||www.rqxjnkgcobp.com^* ||www.xjjfgxdfpr.com^* ||www.zpolivtjrhjquo.com^* ||www.lzscunjyovitc.com^* ||rqxjnkgcobp.com^* ||xjjfgxdfpr.com^* ||zpolivtjrhjquo.com^* ||lzscunjyovitc.com^* ||www.phskaieua.com^* ||phskaieua.com^* ||www.imevdywafhro.com^* ||imevdywafhro.com^* ||cbhpiuopomc.com^* ||www.cbhpiuopomc.com^* ||vqzqkhumdad.com^* ||www.vqzqkhumdad.com^* ||uzvuhhyymmkc.com^* ||www.uzvuhhyymmkc.com^* ||www.dojmlztmbrvp.com^* ||dojmlztmbrvp.com^* ||msmaijsxlo.com^* ||www.msmaijsxlo.com^* ||www.axvabgnr.com^* ||axvabgnr.com^* ||yoxrhwtvyqt.com^* ||www.yoxrhwtvyqt.com^* ||ajizjpjkrnh.com^* ||www.ajizjpjkrnh.com^* ||cvdvexais.com^* ||jcsisvtb.com^* ||nezbumpwtdexd.com^* ||www.cvdvexais.com^* ||www.jcsisvtb.com^* ||www.nezbumpwtdexd.com^* ||www.nypmjsgpmhd.com^* ||nypmjsgpmhd.com^* crackpckey.blogspot.com###HTML2:remove() ||eszpmsipks.com^* ||www.eszpmsipks.com^* ||ykombouoo.com^* ||www.ykombouoo.com^* ||chxwlqtvgrw.com^* ||www.chxwlqtvgrw.com^* ||jcrqhscfqqbgby.com^* ||www.jcrqhscfqqbgby.com^* ||cglpmszvpzzxj.com^* ||www.cglpmszvpzzxj.com^* ||dkxeorhjmua.com^* ||www.dkxeorhjmua.com^* ||desgao1zt7irn.cloudfront.net^* ||tofretonlepa.info^* ||www.tofretonlepa.info^* ||www.eventraliaclinental.info^* ||eventraliaclinental.info^* ||leechiza.net^* ||www.leechiza.net^* ||uploadev.com/mngez/images/banner1.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||uploadev.com/mngez/images/banner2.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||uploadev.com/mngez/images/sdo.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css uploadev.com##.banner2:remove() uploadev.com##.colright:remove() uploadev.com##.banner1:remove() xehelp.com##ins[class="adsbygoogle"]:remove() uploadev.com##div.banner3:remove() xehelp.com###adinj-4:remove() ||qvgjqhfnbdeur.com^* ||ltbnvsfzevox.com^* ||qtgarolvaigptk.com^* ||www.qvgjqhfnbdeur.com^* ||www.ltbnvsfzevox.com^* ||www.qtgarolvaigptk.com^* ||mysoundclouddownloader.com^* ||www.mysoundclouddownloader.com^* ||infopade.com^* ||www.infopade.com^* ||pewgnvqixnhvij.com^* ||www.pewgnvqixnhvij.com^* ||yuehosgcoq.com^* ||www.yuehosgcoq.com^* ||uxkkltrrxlowzo.com^* ||www.uxkkltrrxlowzo.com^* ||wyycgfyum.com^* ||www.wyycgfyum.com^* ||postrsyk.com^* ||www.postrsyk.com^* ||epxokmckjkj.com^* ||www.epxokmckjkj.com^* ||lmccawemcuqma.com^* ||www.lmccawemcuqma.com^* ||nrgbjgui.com^* ||www.nrgbjgui.com^* ||zatrlsov.com^* ||www.zatrlsov.com^* ||kaktokualscgea.com^* ||www.kaktokualscgea.com^* ||4bb6jls06l.com^* ||www.4bb6jls06l.com^* ||nnoxqfmbdv.com^* ||www.nnoxqfmbdv.com^* ||d7x5nblzs94me.cloudfront.net^* ||ttdtuwbxgyveg.com^* ||www.ttdtuwbxgyveg.com^* !||consent.cmp.oath.com/version/6.4.1/cmp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||consent.cmp.oath.com/cmp3p.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||consent.cmp.oath.com/cmpStub.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||consent.cmp.oath.com^* !||i2-egybqosymqnptrjovxnjfsymstfnbl.init.cedexis-radar.net^* ||shorten1links.com/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d63a3au5lqmtu.cloudfront.net^* !||img.ak.impact-ad.jp/ut/a1/dax-tracking.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||img.ak.impact-ad.jp^* !||bypass.ad-stir.com/csync?site=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bypass.ad-stir.com^* ||twa.netcoresmartech.com/webactivity/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.dable.io/logs/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tv.kaskus.co.id/embed-resources/vendor/blockadblock.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.kaskus.co.id/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||di2xiflr72bem.cloudfront.net^* ||meapk.com/dropapk/counter.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cwbbqhgtjbvtzi.com^* ||www.cwbbqhgtjbvtzi.com^* ||uaolighevmjy.com^* ||www.uaolighevmjy.com^* ||wnxyusrvcoosqi.com^* ||www.wnxyusrvcoosqi.com^* ||byxlivaqzo.com^* ||www.byxlivaqzo.com^* ||otruzjgxof.com^* ||www.otruzjgxof.com^* ||uploadproper.net/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||d29gau6wgw4oac.cloudfront.net/nut4n8k0%7Cfm2o/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d29gau6wgw4oac.cloudfront.net^* ||keronretredsi.info^* ||www.keronretredsi.info^* ||makeadvancetypeflashselect.icu^* ||www.makeadvancetypeflashselect.icu^* ||www2.makeadvancetypeflashselect.icu^* ||upgradeapplebestflashselect.icu^* ||www.upgradeapplebestflashselect.icu^* uploadproper.net##div.big_res.ads_big:remove() uploadproper.net##div.ads_small:remove() ||pyfmxzhrnivq.com^* ||www.pyfmxzhrnivq.com^* ||xddydaddexkjxs.com^* ||www.xddydaddexkjxs.com^* ||yvisvreih.com^* ||www.yvisvreih.com^* !||quantcast.mgr.consensu.org/cmp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||quantcast.mgr.consensu.org^* ||mx-sh.net/advertisements.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vlwdjmvhf.com^* ||www.vlwdjmvhf.com^* ||iuawzhuqjl.com^* ||www.iuawzhuqjl.com^* ||www.zbbqhdnef.com^* ||zbbqhdnef.com^* ||lhtekmhy.com^* ||www.lhtekmhy.com^* ||www.packtpub.com/pushcrew-sw.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||getalinkandshare.com^* !||zeezi4ei.com/tuname.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||zeezi4ei.com^* !||oiaosindec5.site/mmd/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||oiaosindec5.site^* ||runslin.com^* ||myhithub.com^* ||medialaze.com^* ||www.getalinkandshare.com^* ||www.zeezi4ei.com^* ||www.oiaosindec5.site^* ||www.runslin.com^* ||www.myhithub.com^* ||www.medialaze.com^* ||xsgcobwd.com^* ||www.xsgcobwd.com^* ||tkncbgwor.com^* ||www.tkncbgwor.com^* ||hqyenmzgxk.com^* ||www.hqyenmzgxk.com^* ||pjhwhxmzefjgn.com^* ||www.pjhwhxmzefjgn.com^* ||othepbuttit.com^* ||www.othepbuttit.com^* ||onsterandhantan.info^* ||www.onsterandhantan.info^* ||www.sendspace.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.sendspace.com##div[class^="ads_holder"]:remove() www.brothersoft.com##div[id^="div-gpt-ad-"]:remove() !||d1b5h9psu9yexj.cloudfront.net^* thewirecutter.com##div[class="feedback_banner___3PN2s"]:remove() ||rbtqofrkiixz.com^* ||www.rbtqofrkiixz.com^* ||206.81.3.126^* ||qceixjlqe.com^* ||www.qceixjlqe.com^* ||mbmwfufkaxll.com^* ||www.mbmwfufkaxll.com^* ||lxwtezlcp.com^* ||www.lxwtezlcp.com^* ||ncoibhdzttozh.com^* ||www.ncoibhdzttozh.com^* ||clsyxddpbt.com^* ||www.clsyxddpbt.com^* ||obeeifroxtivh.com^* ||www.obeeifroxtivh.com^* ||cvarxvlbnphcjq.com^* ||www.cvarxvlbnphcjq.com^* ||fpzcyccpqldc.com^* ||www.fpzcyccpqldc.com^* ||juqakqgv.com^* ||www.juqakqgv.com^* !Nvidia driver telemetry host/server !||telemetry.nvidia.com/installer-telemetry$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||telemetry.nvidia.com^* web.archive.org##iframe[id="injected-iframe"]:remove() ||analytics.archive.org^* !||collector-medium.lightstep.com/api/v0/reports$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||collector-medium.lightstep.com^* ||qurhdjkms.com^* ||wvrntfonizbxn.com^* ||qkwbygfsbfmj.com^* ||pzopzjlhqbkgnp.com^* ||oofpjjtc.com^* ||jcllysqtvlro.com^* ||www.qurhdjkms.com^* ||www.wvrntfonizbxn.com^* ||www.qkwbygfsbfmj.com^* ||www.pzopzjlhqbkgnp.com^* ||www.oofpjjtc.com^* ||www.jcllysqtvlro.com^* ||ubvyjgbdiq.com^* ||www.ubvyjgbdiq.com^* !||wenacil.info/banners/api.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wenacil.info/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wenacil.info/banners.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||traflib36.download^* !||asideru.info/nlp/index.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||asideru.info^* ||www.asideru.info^* ||fifnonxntvaszg.com^* ||www.fifnonxntvaszg.com^* ||rsguboxyb.com^* ||www.rsguboxyb.com^* ||www.unyhjoehc.com^* ||unyhjoehc.com^* ||www.xoqkhbtpnzblh.com^* ||xoqkhbtpnzblh.com^* ||www.nwsderzo.com^* ||nwsderzo.com^* ||lmevacaixeqy.com^* ||www.lmevacaixeqy.com^* ||iizgpusp.com^* ||www.iizgpusp.com^* ||makumuvgxfogq.com^* ||www.makumuvgxfogq.com^* ||ywlaafzvnn.com^* ||www.ywlaafzvnn.com^* ||www.xbzakxofyhdy.com^* ||xbzakxofyhdy.com^* ||zrosbqwecw.com^* ||www.zrosbqwecw.com^* ||pgnjgjiwomgdmn.com^* ||www.pgnjgjiwomgdmn.com^* ||gumdeqjzclc.com^* ||vfkuauks.com^* ||okffuzmscjboad.com^* ||www.gumdeqjzclc.com^* ||www.vfkuauks.com^* ||www.okffuzmscjboad.com^* ||ehraxliuwt.com^* ||www.ehraxliuwt.com^* ||zavlamhx.com^* ||www.zavlamhx.com^* ||acwyoynw.com^* ||www.acwyoynw.com^* ||bryvvdtek.com^* ||www.bryvvdtek.com^* ||cvzixxiesyjkha.com^* ||www.cvzixxiesyjkha.com^* ||gxklbrtpqqyvy.com^* ||kvdjcnerhxzb.com^* ||ilxwlsnzhzukj.com^* ||dpnahzfbb.com^* ||www.gxklbrtpqqyvy.com^* ||www.kvdjcnerhxzb.com^* ||www.ilxwlsnzhzukj.com^* ||www.dpnahzfbb.com^* valid.x86.fr##.widget-advert ||zxaoudwcljrtig.com^* ||www.zxaoudwcljrtig.com^* ||davthnojr.com^* ||www.davthnojr.com^* ||rwalomjwgyljqj.com^* ||www.rwalomjwgyljqj.com^* ||crxhbchbd.com^* ||www.crxhbchbd.com^* ||esundpxbixeqgu.com^* ||www.esundpxbixeqgu.com^* ||siaiscphvghttd.com^* ||www.siaiscphvghttd.com^* ||jvjwaxjixypm.com^* ||www.jvjwaxjixypm.com^* ||kfyksytsx.com^* ||www.kfyksytsx.com^* ||securybrowse.com^* ||www7.securybrowse.com^* ||vtbyvtmabpclx.com^* ||www.vtbyvtmabpclx.com^* ||cgxgorslwtzlm.icu^* ||www.cgxgorslwtzlm.icu^* ||cizemeshbbc.com^* ||www.cizemeshbbc.com^* ||vsgvivozec.com^* ||www.vsgvivozec.com^* ||jkamuwyswgk.com^* ||www.jkamuwyswgk.com^* ||jheduynirrxkro.com^* ||www.jheduynirrxkro.com^* ||cqyfjodshwuici.com^* ||www.cqyfjodshwuici.com^* ||dugqbllwslqrlj.com^* ||www.dugqbllwslqrlj.com^* ||bzkmfzoxqmau.com^* ||www.bzkmfzoxqmau.com^* ||oiumoqzo.com^* ||www.oiumoqzo.com^* ||fsjvhkobubai.com^* ||www.fsjvhkobubai.com^* ||crcewevoy.com^* ||www.crcewevoy.com^* ||xtsnbxwak.com^* ||www.xtsnbxwak.com^* ||oabcufwk.com^* ||www.oabcufwk.com^* ||ads.metawraith.com^* ||adservice.aliexpress.com^* ||ad.daum.net^* ||feed.adrelayer.com^* !||co1.qualtrics.com^* !blocks surveys ||ggprfmbbl.com^* ||www.ggprfmbbl.com^* ||kiobmbncsrwc.com^* ||www.kiobmbncsrwc.com^* ||csionjbak.com^* ||www.csionjbak.com^* ||dillweqbducwi.com^* ||www.dillweqbducwi.com^* ||fytrvzettfn.com^* ||www.fytrvzettfn.com^* ||mwfzoumik.com^* ||www.mwfzoumik.com^* ||bbillwowlfur.com^* ||www.bbillwowlfur.com^* ||bocqmlgslzoo.com^* ||www.bocqmlgslzoo.com^* ||trjmgercl.com^* ||www.trjmgercl.com^* ||jractwjn.com^* ||www.jractwjn.com^* ||txyylwegpdfsda.com^* ||www.txyylwegpdfsda.com^* ||xpgcrmxejlgig.com^* ||www.xpgcrmxejlgig.com^* ||hvitcycze.com^* ||www.hvitcycze.com^* ||jiyvkdfab.com^* ||www.jiyvkdfab.com^* ||wzghuwvuyxknpv.com^* ||www.wzghuwvuyxknpv.com^* !Blocks Fanatical/BundleStars payments !||live.adyen.com^* !fake ASUS automatic update site ||asushotfix.com^* ||www.asushotfix.com^* ||ouo.io/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||native.propellerclick.com^* getfreshcould.xyz##ins[class="adsbygoogle"]:remove() ||getfreshcloud.xyz/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||getfreshcloud.xyz/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ir.ebaystatic.com/cr/v/c1/x-frame-4.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api-iam.intercom.io/messenger/web/metrics$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api-iam.intercom.io/messenger/web/ping$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||analytics.similarweb.com/swptrk.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||analytics.similarweb.com^* ||ebayinc.demdex.net^* ||www.ebay.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||secureir.ebaystatic.com/cr/v/c1/cobrowse_4.2.0/js/GlancePresenceVisitor_4.2.0M.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||secureir.ebaystatic.com/cr/v/c1/cobrowse_**/js/GlancePresenceVisitor_*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ebpr0004.glance.net/visitorws$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||myhomelifestyle.info^* ||www.myhomelifestyle.info^* ||sacatons.icu^* ||www.sacatons.icu^* ||oucywciij.com^* ||www.oucywciij.com^* ||tfjfcvhvudxf.com^* ||www.tfjfcvhvudxf.com^* ||nnvqabkpa.com^* ||www.nnvqabkpa.com^* ||svdmxetbyfyg.com^* ||www.svdmxetbyfyg.com^* ||ojntbybxh.com^* ||www.ojntbybxh.com^* !||tracking.newsmaxfeednetwork.com/pub2/widgetLoadPixel.json$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tracking.newsmaxfeednetwork.com^* ||profitrumour.com^* ||dev.dunhilltraveldeals.com/api/v1/iframe/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ebaycs.az1.qualtrics.com^* ||jacynthe.com.akey.pw^* ||rzizcnhoobxw.com^* ||www.rzizcnhoobxw.com^* ||marguvpydbrr.com^* ||www.marguvpydbrr.com^* ||qgpmtdrm.com^* ||www.qgpmtdrm.com^* ||msxmfyhwgkos.com^* ||www.msxmfyhwgkos.com^* ||zpwqnicvzi.com^* ||www.zpwqnicvzi.com^* ||arjgnqlsdo.com^* ||www.arjgnqlsdo.com^* ||ddmlzfwsb.com^* ||www.ddmlzfwsb.com^* ||dwuvmraztukg.com^* ||www.dwuvmraztukg.com^* ||knepsiwviviwed.com^* ||www.knepsiwviviwed.com^* ||hugjupzdpvuzdr.com^* ||www.hugjupzdpvuzdr.com^* ||gxpijskyqwqfjw.com^* ||www.gxpijskyqwqfjw.com^* ||iqagrsach.com^* ||www.iqagrsach.com^* ||euwyhbib.com^* ||idszrbmjvkdodt.com^* ||www.euwyhbib.com^* ||www.idszrbmjvkdodt.com^* ||hgowmgat.com^* ||www.hgowmgat.com^* ||ynoiezey.com^* ||www.ynoiezey.com^* ||gjijrevdp.com^* ||www.gjijrevdp.com^* ||tcovxxenhjke.com^* ||www.tcovxxenhjke.com^* ||sdtqotoe.com^* ||www.sdtqotoe.com^* ||bavftcgoapga.com^* ||viwsqbbvfknp.com^* ||www.bavftcgoapga.com^* ||www.viwsqbbvfknp.com^* ||zbvrqrjecs.com^* ||www.zbvrqrjecs.com^* ||ngfsciiu.com^* ||www.ngfsciiu.com^* ||zdydvjzexmp.com^* ||www.zdydvjzexmp.com^* ||oounzfsyxiuj.com^* ||www.oounzfsyxiuj.com^* ||lsooyivois.com^* ||www.lsooyivois.com^* ||xaxggjsa.com^* ||www.xaxggjsa.com^* ||uhyyacioq.com^* ||www.uhyyacioq.com^* ||pzjdrhrlzdli.com^* ||www.pzjdrhrlzdli.com^* ||vjgyxegvfrhthq.com^* ||www.vjgyxegvfrhthq.com^* ||sisyqzktimhrgo.com^* ||www.sisyqzktimhrgo.com^* ||kumjidmumktzq.com^* ||www.kumjidmumktzq.com^* ||kmypiwpbastt.com^* ||www.kmypiwpbastt.com^* ||xqkqkfszveqvm.com^* ||www.xqkqkfszveqvm.com^* ||ttgvmqdpomt.com^* ||www.ttgvmqdpomt.com^* ||rabjkklvegagrn.com^* ||www.rabjkklvegagrn.com^* ||opcyvbwkbiaqyt.com^* ||www.opcyvbwkbiaqyt.com^* ||virgbmkmear.com^* ||www.virgbmkmear.com^* ||zlahmbwm.com^* ||www.zlahmbwm.com^* ||pyllxjfkjhpjbq.com^* ||www.pyllxjfkjhpjbq.com^* ||biijdpauyvf.com^* ||www.biijdpauyvf.com^* ||jducqfnxeypyw.com^* ||www.jducqfnxeypyw.com^* ||sgxaqysyilwkiu.com^* ||www.sgxaqysyilwkiu.com^* ||yodyfofkb.com^* ||www.yodyfofkb.com^* ||pkitdifnkz.com^* ||www.pkitdifnkz.com^* ||isfxsiooyjad.com^* ||www.isfxsiooyjad.com^* ||ekxfupdlyst.com^* ||www.ekxfupdlyst.com^* ||afeeknuueaztxt.com^* ||www.afeeknuueaztxt.com^* ||msigpurubzkm.com^* ||www.msigpurubzkm.com^* ||nticqzrucdg.com^* ||www.nticqzrucdg.com^* ||kdpqydaxbxztnh.com^* ||www.kdpqydaxbxztnh.com^* ||boaawvdg.com^* ||www.boaawvdg.com^* ||btgovcuviqor.com^* ||www.btgovcuviqor.com^* pureinfotech.com##div[id^="mailmunch-topbar-iframe-"]:remove() pureinfotech.com##div[id^="mailmunch-optin-form"]:remove() pureinfotech.com##div[class="screen optin-form-screen"]:remove() pureinfotech.com##div[class="optin-form-wrapper"]:remove() ||analytics.mailmunch.co^* !||k.intellitxt.com/go/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||k.intellitxt.com^* ||znjwkwha.com^* ||www.znjwkwha.com^* ||dnftqfwycmfqrs.com^* ||www.dnftqfwycmfqrs.com^* ||snsgsqyv.com^* ||www.snsgsqyv.com^* ||ofdfinqurwpi.com^* ||www.ofdfinqurwpi.com^* ||ksihafqopndbq.com^* ||www.ksihafqopndbq.com^* ||pquuiokltzjpeg.com^* ||www.pquuiokltzjpeg.com^* ||nnmgvixuhbqju.com^* ||www.nnmgvixuhbqju.com^* ||ogisrmbhajhyam.com^* ||www.ogisrmbhajhyam.com^* ||ghomifuzhobtoo.com^* ||www.ghomifuzhobtoo.com^* ||jcjrcmaunbqxg.com^* ||www.jcjrcmaunbqxg.com^* ||znmdscnynybx.com^* ||www.znmdscnynybx.com^* ||cguvvvdxa.com^* ||www.cguvvvdxa.com^* ||hntntnfizowo.com^* ||www.hntntnfizowo.com^* ||hztjenzlrrwinq.com^* ||www.hztjenzlrrwinq.com^* ||pjbifjjtir.com^* ||www.pjbifjjtir.com^* ||iiccrpwaxmxkqm.com^* ||www.iiccrpwaxmxkqm.com^* ||iyfrmewyned.com^* ||www.iyfrmewyned.com^* ||akyscwwwttk.com^* ||www.akyscwwwttk.com^* ||ftvwoljibdwd.com^* ||www.ftvwoljibdwd.com^* ||josxzdszqaivb.com^* ||www.josxzdszqaivb.com^* ||vllwccvw.com^* ||www.vllwccvw.com^* ||qtwadryxicx.com^* ||www.qtwadryxicx.com^* ||hzwmcqlmxpdrlp.com^* ||www.hzwmcqlmxpdrlp.com^* ||jgrsqcqdfwzu.com^* ||www.jgrsqcqdfwzu.com^* ||qwuexgqmua.com^* ||www.qwuexgqmua.com^* ||fsnhesxsw.com^* ||hysnqwbokyuvsm.com^* ||vhzgmzakn.com^* ||www.fsnhesxsw.com^* ||www.hysnqwbokyuvsm.com^* ||www.vhzgmzakn.com^* ||grgxptjsgl.com^* ||www.grgxptjsgl.com^* ||shldethxhl.com^* ||www.shldethxhl.com^* ||vqkkbbivznoso.com^* ||www.vqkkbbivznoso.com^* ||tczvikamowfjte.com^* ||www.tczvikamowfjte.com^* ||zpaimilpqx.com^* ||www.zpaimilpqx.com^* ||cdn-img.ludashi.com/a/201809/05/5b8f9d13168ee.png$image windows-repair-toolbox.com##ins[class="adsbygoogle"]:remove() windows-repair-toolbox.com##.right > div > .adsbygoogle:remove() windows-repair-toolbox.com##.top > div > .adsbygoogle:remove() windows-repair-toolbox.com##.bottom > div > .adsbygoogle:remove() ||vgjwkjinwkud.com^* ||www.vgjwkjinwkud.com^* ||weepjoejkqadi.com^* ||www.weepjoejkqadi.com^* ||fhluqrhmqs.com^* ||www.fhluqrhmqs.com^* ||qefyaspzyhcb.com^* ||www.qefyaspzyhcb.com^* ||uprbleorptdghy.com^* ||www.uprbleorptdghy.com^* ||zksdztizohcfy.com^* ||www.zksdztizohcfy.com^* ||kzlmwsyftm.com^* ||www.kzlmwsyftm.com^* ||fjxssyatdwttqm.com^* ||www.fjxssyatdwttqm.com^* ||exclusiverewards12.com^* ||www.exclusiverewards12.com^* ||phyast.humulated.com !itunes phishing ||app-renews.cancelapp212909212.donatemychannel.com^* !blocks Foxit Internet accessible PDF files ||cws.connectedpdf.com^* ||dzaqzgjsot.com^* ||www.dzaqzgjsot.com^* ||uoifloesog.com^* ||www.uoifloesog.com^* ||oxzffweyw.com^* ||www.oxzffweyw.com^* ||wjwontqlqchq.com^* ||www.wjwontqlqchq.com^* ||newprofitcontrol.com^* ||www.newprofitcontrol.com^* ||basepush.com^* ||www.basepush.com^* ||muwjxxvovtb.com^* ||www.muwjxxvovtb.com^* ||unrzhgdly.com^* ||www.unrzhgdly.com^* ||yhaztdufgmw.com^* ||www.yhaztdufgmw.com^* ||dzacosgvnz.com^* ||www.dzacosgvnz.com^* ||43031aaaecd84428.com^* ||www.43031aaaecd84428.com^* ||beiven.pw^* ||www.beiven.pw^* ||uvomthuqsqx.com^* ||www.uvomthuqsqx.com^* ||deberorewhen.info^* ||www.deberorewhen.info^* ||softorsholitthis.info^* ||www.softorsholitthis.info^* ||dropapk.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||doo6pwib3qngu.cloudfront.net^* ||dropapk.com/ds1/js/clipboard.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||deloplen.com^* ||www.deloplen.com^* ||a2b108bd2461b12e.com^* ||www.a2b108bd2461b12e.com^* ||greetham.net^* ||www.greetham.net^* ||zuzodoad.com^* ||www.zuzodoad.com^* ||3585656d9351553f.com^* ||www.3585656d9351553f.com^* ||b60228e270e363f6.com^* ||www.b60228e270e363f6.com^* ||7667bab1751ff777.com^* ||www.7667bab1751ff777.com^* ||2d7bd9e6eb370143.com^* ||www.2d7bd9e6eb370143.com^* ||564d28256cddaeba.com^* ||www.564d28256cddaeba.com^* ||47f624b2e6c6072e.com^* ||www.47f624b2e6c6072e.com^* ||jpabviwck.com^* ||www.jpabviwck.com^* ||www.e7393e33565ce805.com^* ||e7393e33565ce805.com^* ||fd9523b31ff93b5c.com^* ||www.fd9523b31ff93b5c.com^* ||e6081b73afec581f.com^* ||www.e6081b73afec581f.com^* ||a1a5ab31bcd1bc68.com^* ||www.a1a5ab31bcd1bc68.com^* ||b13481647cf775c5.com^* ||www.b13481647cf775c5.com^* ||arebronthenrollet.info^* ||www.arebronthenrollet.info^* ||ae25079147984d4d.com^* ||www.ae25079147984d4d.com^* ||sihciabzm.com^* ||www.sihciabzm.com^* ||gugemfslzh.com^* ||www.gugemfslzh.com^* ||41df76c67812005c.com^* ||www.41df76c67812005c.com^* ||aa53df329975c325.com^* ||www.aa53df329975c325.com^* ||6868bbe42af8e518.com^* ||www.6868bbe42af8e518.com^* ||htlvvqlcqvq.com^* ||www.htlvvqlcqvq.com^* ||muoiuxfj.com^* ||www.muoiuxfj.com^* ||bxniyvvxufxyoy.com^* ||www.bxniyvvxufxyoy.com^* ||xnmwxndqhyt.com^* ||www.xnmwxndqhyt.com^* ||qyqbslpprlph.com^* ||www.qyqbslpprlph.com^* ||swcuxrfitmjfee.com^* ||www.swcuxrfitmjfee.com^* !||run-syndicate.com/api/c/retargeting_get_cookie_params$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||run-syndicate.com^* ||cdn.runative-syndicate.com^* ||runative-syndicate.com^* !||pixel.runative-syndicate.com/api/v1/p/p.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pixel.runative-syndicate.com^* fileflares.com###rn_ad_native_ut40d:remove() ||lkuirehx.com^* ||www.lkuirehx.com^* ||prcymjchczmbjj.com^* ||www.prcymjchczmbjj.com^* ||uwxldrvqyk.com^* ||www.uwxldrvqyk.com^* ||pismvlkq.com^* ||www.pismvlkq.com^* ||xffljxbbpy.com^* ||www.xffljxbbpy.com^* ||wuaefxberbqcv.com^* ||www.wuaefxberbqcv.com^* ||wbthdphsb.com^* ||www.wbthdphsb.com^* ||snrmqtnnlxdgdh.com^* ||www.snrmqtnnlxdgdh.com^* ||88461059da0a12ea.com^* ||www.88461059da0a12ea.com^* ||jslibrary.adserver.ai^* ||analytics.trendmicro.com^* ||iydauufqypnev.icu^* ||www.iydauufqypnev.icu^* # Amazon account phishing ||mystreetshort.com^* # Amazon account phishing ||www.mystreetshort.com^* ||login.netflix.support-activate-membership.com^* #Netflix account phishing # Netflix account phishing ||support-activate-membership.com^* ||ugoptxnm.com^* ||www.ugoptxnm.com^* ||gtnmyddlf.com^* ||www.gtnmyddlf.com^* ||xjtiqdylurgima.com^* ||www.xjtiqdylurgima.com^* ||mfgyyqqjpp.com^* ||www.mfgyyqqjpp.com^* ||pzszpntjlz.com^* ||www.pzszpntjlz.com^* grub4dos.chenall.net###before_content_widget:remove() ||sihjnaojbrs.com^* ||www.sihjnaojbrs.com^* ||immscjnenl.com^* ||www.immscjnenl.com^* ||mmpcqstnkcelx.com^* ||www.mmpcqstnkcelx.com^* ||mvqzskrnrsy.com^* ||www.mvqzskrnrsy.com^* ||czsnzyykqzcreu.com^* ||www.czsnzyykqzcreu.com^* ||mlgtlxyicweqn.com^* ||www.mlgtlxyicweqn.com^* ||fgtdzvlydqcpus.com^* ||www.fgtdzvlydqcpus.com^* !Fedex Phishing ||jadkqkkvkadiaborwbbk.icu^* ||www.jadkqkkvkadiaborwbbk.icu^* kusidate.web.fc2.com###fc2_ad_box:remove() kusidate.web.fc2.com###fc2_bottom_bnr:remove() ||zfvrrodxfb.com^* ||www.zfvrrodxfb.com^* ||rdoovrzqazvpgv.com^* ||www.rdoovrzqazvpgv.com^* ||fmcktrmnlyfjr.com^* ||www.fmcktrmnlyfjr.com^* ||gtlcgovlg.com^* ||www.gtlcgovlg.com^* ||xwonghmweu.com^* ||www.xwonghmweu.com^* ||mgouoirpayddk.com^* ||www.mgouoirpayddk.com^* ||pgpszwldfpc.com^* ||www.pgpszwldfpc.com^* ||pixel.dorehernowi.pro^* ||www.dorehernowi.pro^* ||dorehernowi.pro^* ||onhax.me/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.sendpulse.com^* 5play.org,5play.ru##.clearfix.rek-blue.rek-but:remove() 5play.org,5play.ru##input[value^="Download"]:remove-attr(onclick) 5play.org,5play.ru##+js(remove-attr, onclick, input[value^="Download"]) 5play.org,5play.ru##div[class="download-btn-group"]:style(display:inline-flex !important;) 5play.org,5play.ru##span[id="countdown"]:upward(1):remove() 5play.org,5play.ru##span[id="countdown"]:remove() 5play.org,5play.ru##div[class*="cdn-notimer"]:remove() 5play.org,5play.ru##button[class="btn btn-block s-green"]:has-text(login):remove-attr(onclick) 5play.org,5play.ru##+js(set-constant, timeleft, 0) 5play.org,5play.ru##+js(set-constant, downloadTimer, noopFunc) !||competition2056.linetotime55.agency^* ||*.linetotime55.agency^* !||nova.collect.igodigital.com/c2/100009483/track_page_view$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nova.collect.igodigital.com^* !||adspsp.com/pt/8100717/3/1/?a=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adspsp.com^* !||prod.adspsp.com/adb.8100717.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||prod.adspsp.com^* !||100009483.collect.igodigital.com/collect.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||100009483.collect.igodigital.com^* !||6286555.collect.igodigital.com/collect.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||6286555.collect.igodigital.com^* !||1060694.collect.igodigital.com^* ||*.collect.igodigital.com^* ||ylqbiljjlyq.com^* ||www.ylqbiljjlyq.com^* ||wrxivlclw.com^* ||www.wrxivlclw.com^* babeltechreviews.com###ezmobfooter:remove() ||cdn.websvn.info/wp-content/uploads/2019/05/50k-free-new.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.products.gobankingrates.com/core/js/performance_analytics.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||products.gobankingrates.com/tracking/click$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||products.gobankingrates.com/tracking/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c.track.mobi^* ||bigelowcleaning.com^* ||2q3ji.bemobtrk.com^* !||usd.caius-pal.com/zcvisitor/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||usd.caius-pal.com^* ||botudeso.com^* ||madagty.com^* ||www.best-mobile-app.club^* ||at.co-aa31.stream^* www.experts-exchange.com##.bg2.interceptBackgroundBlocker:remove() www.experts-exchange.com###promo-3363pJ1evFyaiR.postProcessed.vendorpromotion.wrapper:remove() www.experts-exchange.com###interceptPopup-interceptView:remove() www.experts-exchange.com##.bg0.interceptBackgroundBlocker:remove() ||2oksn.bemobtrk.com^* ||blog.experts-exchange.com/images/experts-exchange/solutionIntercepts/$image ||pgqpibyycasfvl.com^* ||www.pgqpibyycasfvl.com^* ||doubleclick.net/instream/ad_status.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css dl.gamemod.io##ins[class="adsbygoogle"]:remove() dl.gamemod.io##+js(abort-on-property-read, CheckAdLoad) dl.gamemod.io##+js(abort-current-script, CheckAdLoad) ||apkhdgame.com/templates/adaptiv/js/jquery.ihavecookies.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css */templates/adaptiv/js/jquery.ihavecookies.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !appandroider.com###google-captcha-popup-54673:remove() !||beta-activity.steelserve.com/activity.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||beta-activity.steelserve.com^* ||www.rabbitfiles.com/check_conversion_v2.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.rabbitfiles.com/captchalocker/popup.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.rabbitfiles.com/log_impression.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.rabbitfiles.com/captchalocker/js/captcha.js.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||getbootstrap.com/docs/4.0/assets/js/vendor/popper.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c.t.afftrackr.com^* ||jump.ogtrk.net^* ||its.tradelab.fr^* ||cdn.tradelab.fr^* yaksgames.com##ins[class="adsbygoogle"]:remove() yaksgames.com##div[class="ads_gameinfo"]:remove() yaksgames.com##div[class="WithAdBlocker"]:remove() !||yaksgames.com/js/ads-adsbygoogle.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||yaksgames.com/js/AdsNew.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||yaksgames.com/play-game-log$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||screenshotfactory.com/marketing2/monosnap/DownloadButton728x903.jpg_2019-05-08_12-24-18.png$image www.babygames.com###RightAdDiv:remove() www.babygames.com###LeftAdDiv:remove() ar.modapkdown.com##.ad-wrap:remove() www.hiapkdownload.com##.adsbygoogle:remove() ar.modapkdown.com##div[class="fot-float-box"]:remove() gamesindians.com###cookie-pop:remove() wendgames.com###fixedban:remove() wenddownloadpage.com##div[id="fixedban"]:remove() !||dolohen.com/apu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css apk4all.com##.more-link:remove() ||lefopost.com^* ||www.lefopost.com^* ||teaking-lughtness.com^* ||www.teaking-lughtness.com^* ||install.pdf-maker.com^* ||i3j3u3u9.ssl.hwcdn.net^* ||latchemt.top^* ||www.latchemt.top^* ||www.c1vk.online^* ||c1vk.online^* ||www.code313pay.com^* ||code313pay.com^* ||track.shigella.host^* ||t.afftrackr.com^* ||fcwpxsmiyy.com^* ||www.fcwpxsmiyy.com^* ||kojywvexdq.com^* ||www.kojywvexdq.com^* ||vptgnqpknpdyq.com^* ||www.vptgnqpknpdyq.com^* ||agvinhvex.com^* ||www.agvinhvex.com^* ||akhlkkdrxwav.com^* ||www.akhlkkdrxwav.com^* ||tyllfqbmny.com^* ||www.tyllfqbmny.com^* ||qagnufdwht.com^* ||www.qagnufdwht.com^* ||uzikrtotjbnq.com^* ||www.uzikrtotjbnq.com^* ||tmblaeivephb.com^* ||www.tmblaeivephb.com^* ||vulbyhxsrxcdgo.com^* ||www.vulbyhxsrxcdgo.com^* ||hlsqjrgeuw.com^* ||www.hlsqjrgeuw.com^* ||jsveretv.com^* ||www.jsveretv.com^* ||zursiicizyhd.com^* ||www.zursiicizyhd.com^* ||hsxftwpltcmil.com^* ||www.hsxftwpltcmil.com^* !||ad-delivery.net/px.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ad-delivery.net/beacon.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad-delivery.net^* ||cgjbizumzm.com^* ||www.cgjbizumzm.com^* ||bxxhbrpxqtwfq.com^* ||www.bxxhbrpxqtwfq.com^* ||jfvjtudp.com^* ||www.jfvjtudp.com^* ||ldxdpitoeox.com^* ||www.ldxdpitoeox.com^* ||recutsparrymo.pro^* ||www.recutsparrymo.pro^* ||northwaitiinst.pro^* ||www.northwaitiinst.pro^* ||pixel.northwaitiinst.pro^* ||cdnjs.cloudflare.com/ajax/libs/clipboard.js/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sama-berli.info/js/tr_page_popup.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ggbetpromo.com^* ||www.ggbetpromo.com^* ||sama-berli.info/images/bannr.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||advertisesimple.info^* ||www.advertisesimple.info^* !||99.wortexious.com^* !||1.wortexious.com^* !||23.wortexious.com^* ||*.wortexious.com^* !sama-berli.info##div[id="smartmedia-linkskin-oxybranding"]:remove() !sama-berli.info##div[id="smartmedia-oxybranding"]:remove() !sama-berli.info##div[id="smartmedia-oxybranding-frame"]:remove() !sama-berli.info##div[id="smartmedia-oxybranding-image"]:remove() !sama-berli.info##div[id="smartmedia-pushdown-oxybranding"]:remove() !sama-berli.info##div[id="smartmedia-sidebarleft-oxybranding"]:remove() !sama-berli.info##div[id="smartmedia-sidebarright-oxybranding"]:remove() sama-berli.info##div[id^="smartmedia-"]:remove() !||pushes.info/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pushes.info^* ||www.pushes.info^* ||renought.com^* ||www.renought.com^* ||media-playon.com^* ||www.media-playon.com^* mylink.love##+js(abort-on-property-read, adsbygoogle) mylink.love##+js(abort-current-script, adsbygoogle) mylink.love##ins[class="adsbygoogle"]:remove() ||dash.cutw.pro^* ||gxqotelkdra.com^* ||www.gxqotelkdra.com^* ||sqyvhynwl.com^* ||www.sqyvhynwl.com^* ||load.jsecoin.com^* ||adx.jsecoin.com^* ||api.tiledesk.com/v1/5c52f31ccee59a0016ab02c3/publicanalytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.bloomberg.com###paywall-banner:remove() ||assets.bwbx.io/s3/javelin/public/javelin/js/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||limg.imgsmail.ru/informers/abp/px.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.bloomberg.com/8FCGYgk4/xhr/api/v1/collector$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css people.com##.gallery-interstitial-container:remove() !||stat.radar.imgsmail.ru/update$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pbixcuapo.com^* ||www.pbixcuapo.com^* ||tnxiuvjtplhhdy.com^* ||www.tnxiuvjtplhhdy.com^* ||vzkyivowceqcsd.com^* ||www.vzkyivowceqcsd.com^* ||fbekvzjp.com^* ||www.fbekvzjp.com^* ||cvembcmcvrxly.com^* ||www.cvembcmcvrxly.com^* ||essjetuhfuo.com^* ||www.essjetuhfuo.com^* ||jikottnbg.com^* ||www.jikottnbg.com^* ||patlgfvxkto.com^* ||www.patlgfvxkto.com^* !||lockerdome.com/ladbid/prebid$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lockerdome.com/ladbid/prebid$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adserver.reklamstore.com^* ||zdyfbhfmdtpm.com^* ||www.zdyfbhfmdtpm.com^* ||qzaahtgpnb.com^* ||www.qzaahtgpnb.com^* ||mwhtoxix.com^* ||www.mwhtoxix.com^* ||acacexjsh.com^* ||www.acacexjsh.com^* ||jkcyrdigvx.com^* ||www.jkcyrdigvx.com^* ||pyzkbxspoon.com^* ||www.pyzkbxspoon.com^* ||lgzjsauvfv.com^* ||www.lgzjsauvfv.com^* ||ftcjcmcovx.com^* ||www.ftcjcmcovx.com^* ||iucpxetj.com^* ||www.iucpxetj.com^* ||ayyslqwrmoygf.com^* ||www.ayyslqwrmoygf.com^* ||ltjvgpxg.com^* ||www.ltjvgpxg.com^* ||iphliojn.com^* ||www.iphliojn.com^* ||sdgvzdksjbl.com^* ||www.sdgvzdksjbl.com^* ||izjguvanm.com^* ||www.izjguvanm.com^* ||adqvauwe.com^* ||www.adqvauwe.com^* ||fvwfkfzhha.com^* ||www.fvwfkfzhha.com^* ||zqseasmu.com^* ||www.zqseasmu.com^* ||amjrfmhtmoyan.com^* ||www.amjrfmhtmoyan.com^* !||mirrorfinder.xyz/getlink$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mirrorfinder.xyz^* !||pushazam.com/ntfc.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pushazam.com^* ||soagitet.net^* ||www.soagitet.net^* ||cftervwhu.com^* ||www.cftervwhu.com^* ||ysqhjwanlbhmt.com^* ||www.ysqhjwanlbhmt.com^* ||lnfujzqkydjav.com^* ||www.lnfujzqkydjav.com^* ||iuowwbrqblweoa.com^* ||www.iuowwbrqblweoa.com^* ||bmbvnmgucbk.com^* ||www.bmbvnmgucbk.com^* ||gfeaegaepsgp.com^* ||www.gfeaegaepsgp.com^* ||pwrjjvjtvmr.com^* ||www.pwrjjvjtvmr.com^* ||ofslaskeujwn.com^* ||www.ofslaskeujwn.com^* ||wiffqhum.com^* ||www.wiffqhum.com^* ||qpeczlqvv.com^* ||www.qpeczlqvv.com^* ||rlbvwdviqx.com^* ||www.rlbvwdviqx.com^* 4downfiles.org##ins[class="adsbygoogle"]:remove() ||certify.alexametrics.com^* ||imzahrwl.xyz^* ||www.imzahrwl.xyz^* ||tag.installp.com^* ||b.bnrslks.com^* apkgod.net##div[class="ads-parent"]:remove() !||mob1ledev1ces.com/r/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mob1ledev1ces.com^* ||parronnotandone.info^* ||www.parronnotandone.info^* ||therneserutybin.info^* ||www.therneserutybin.info^* www.omaredomex.org###fbox-display:remove() www.omaredomex.org###fbox-close:remove() www.omaredomex.org###fbox-background:remove() ||dvszrkspd.com^* ||www.dvszrkspd.com^* ||leszvphhnytpk.com^* ||www.leszvphhnytpk.com^* !||syndapop.com/apu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||syndapop.com^* ||www.syndapop.com^* ||www.xswsrpeeyh.com^* ||xswsrpeeyh.com^* ||www.jbqolazohwqesu.com^* ||jbqolazohwqesu.com^* ||c.top4top.net/p_984g74h31.gif$image ||d.top4top.net/p_984j39z61.png$image ||c.top4top.net/p_9844pi2h1.png$image ||i65.tinypic.com/2r6cwn6.gif$image ||dzloxwupyxw.com^* ||www.dzloxwupyxw.com^* ||wbbzegmupyl.com^* ||www.wbbzegmupyl.com^* ||ohrkrzvndwitaa.com^* ||www.ohrkrzvndwitaa.com^* ||etihenbteb.com^* ||www.etihenbteb.com^* ||vdrpwkycbla.com^* ||www.vdrpwkycbla.com^* ||www.btserve.com/render$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||skhflncik.com^* ||www.skhflncik.com^* ||rxksulmbu.com^* ||www.rxksulmbu.com^* ||bhlusdvadp.com^* ||www.bhlusdvadp.com^* ||pixel.maranhesduve.club^* !||maranhesduve.club^* !||www.maranhesduve.club^* ||uploadboy.com/analytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||authorse.com/push^* ||authorse.com^* ||www.authorse.com^* ||s-img.mgid.com^* ||cstfzgckbtrb.com^* ||www.cstfzgckbtrb.com^* ||ajcsjktzlqh.com^* ||www.ajcsjktzlqh.com^* ||vdo.ai/core/trigtent/ads_vmap.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vdo.ai/core/trigtent/adframe.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.trigtent.com/uPushSW.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.aiosearch.com###watch-now:remove() ||essedaccur.info^* ||sketsthropo.info^* ||rtclocketsun.info^* ||pixel.rtclocketsun.info^* ||landings.matbakh-app.com^* !||block.dashslesh.com/rotator/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||block.dashslesh.com/script/block.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||block.dashslesh.com^* ||ordiotharren.pro^* ||www.ordiotharren.pro^* ||tail.spyexistence.icu^* ||a2zcity.net/wp-content/uploads/2017/10/a2zcity-topwide.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||keyscity.net/wp-content/uploads/2018/08/google.png$image !||moneymakercdn.com/script/chrome.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||moneymakercdn.com^* watchsomuch.unblocked.is###modal-1:remove() watchsomuch.unblocked.is###removeThisSection:remove() ||dl.a2zcity.net/wp-content/uploads/2018/08/google.png$image ||hephenmorepron.info^* ||render.btserve.com^* ||yourfreepdfconverternow.com^* ||myornamenti.com^* ||www.myornamenti.com^* ||config.hyourfreepdfconverternowpop.com^* ||imp.hyourfreepdfconverternowpop.com^* ||hyourfreepdfconverternowpop.com^* !||pushible.com/api/ConfigImpressionAdvanced$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pushible.com/js/prompt?imp=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pushible.com^* !||appfocus.go2cloud.org/aff_i?offer_id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||appfocus.go2cloud.org^* ||cjl58f3agc.com^* ||www.cjl58f3agc.com^* ||4l7wg5kf3z.com^* ||www.4l7wg5kf3z.com^* ||mnoa6ez1eq.com^* ||www.mnoa6ez1eq.com^* ||hnnp4ixxkl.com^* ||www.hnnp4ixxkl.com^* ||l6b587txj1.com^* ||www.l6b587txj1.com^* ||0byv9mgbn0.com^* ||www.0byv9mgbn0.com^* ||gmidkz5tgm.com^* ||www.gmidkz5tgm.com^* ||yr9n47004g.com^* ||www.yr9n47004g.com^* ||16yp1ji92a.com^* ||www.16yp1ji92a.com^* ||susm0q6jys.com^* ||www.susm0q6jys.com^* ||bnsjb1ab1e.com^* ||www.bnsjb1ab1e.com^* ||track.ultimate-guitar.com^* ||ultimate-guitar-d.openx.net^* !||cdn.ustatik.com/vendor/metrica/watch.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.ustatik.com/vendor/metrica/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.ustatik.com/public/build/prebid/prebid.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.ustatik.com/public/build/prebid/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||65vk1fba34.com^* ||www.65vk1fba34.com^* ||aj1090.online^* !||naucaips.com/script.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||naucaips.com/vendor.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||naucaips.com/react.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||naucaips.com^* !||ceraitoa.com/script.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ceraitoa.com^* !||phaihoaw.net/lodash.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||phaihoaw.net^* ||gamejolt.com/sjw.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||playwire-d.openx.net^* ||cdn.playwire.com/bolt4/adtech/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.efully.info^* ||efully.info^* ||adserver.cut-urls.com^* ||prrpfmrz.com^* ||www.prrpfmrz.com^* ||tivioyfstcdlce.com^* ||www.tivioyfstcdlce.com^* ||szzzpqcuxqq.com^* ||www.szzzpqcuxqq.com^* ||vvoczokfayxwu.com^* ||www.vvoczokfayxwu.com^* ||pnkrtgea.com^* ||www.pnkrtgea.com^* ||efhseqgqgl.com^* ||www.efhseqgqgl.com^* ||3k43d.com^* ||www.3k43d.com^* ||yxvxjtupwlee.com^* ||www.yxvxjtupwlee.com^* ||cczixhwxprith.com^* ||www.cczixhwxprith.com^* ||pukzrlddw.com^* ||www.pukzrlddw.com^* ||jvinenwuarwn.com^* ||www.jvinenwuarwn.com^* ||rsuroxpotcoiq.com^* ||www.rsuroxpotcoiq.com^* ||crpmohfici.com^* ||www.crpmohfici.com^* ||gtjpkitasq.com^* ||www.gtjpkitasq.com^* ||tsupbmgacu.com^* ||www.tsupbmgacu.com^* ||pcpzhtdvtcqj.com^* ||www.pcpzhtdvtcqj.com^* ||fnprtscsvux.com^* ||www.fnprtscsvux.com^* ||kbrpiuql.com^* ||www.kbrpiuql.com^* ||sqcolqeo.com^* ||www.sqcolqeo.com^* ||iadfjbrttvgn.com^* ||www.iadfjbrttvgn.com^* ||veehdmymwvvexv.com^* ||www.veehdmymwvvexv.com^* ||tvduznfdgim.com^* ||www.tvduznfdgim.com^* ||e264q0n9r.cfotim.live^* ||cfotim.live^* ||bxravgxfkubm.com^* ||www.bxravgxfkubm.com^* ||steadfastsystem.com^* ||jzsafhhk.com^* ||www.jzsafhhk.com^* ||jivnpidyteh.com^* ||www.jivnpidyteh.com^* ||vlscykmnd.com^* ||www.vlscykmnd.com^* ||izkcesinsyz.com^* ||www.izkcesinsyz.com^* ||dhuqolbvyla.com^* ||www.dhuqolbvyla.com^* ||drjwmuwmnll.com^* ||www.drjwmuwmnll.com^* ||netflix.login.validate-user-support.com^* ||ladsreds.com^* ||www.ladsreds.com^* !||lqkfosng.regionarizona.com^* ||*.regionarizona.com^* !||ndfoe.animalphantom.us^* ||*.animalphantom.us^* ||animalphantom.us^* ||www.hideyoursearch.win/setCoockie.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cudjntck.com^* ||www.cudjntck.com^* ||sheinsz.ltwebstatic.com/she_dist/js/sdk_analysis-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s3.amazonaws.com/cdn.aimtell.com/trackpush/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.srmdata.com/performance$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lbgmmsubsxn.com^* ||www.lbgmmsubsxn.com^* ||suewgrsq.com^* ||www.suewgrsq.com^* mylink.li##+js(abort-on-property-read, enable_page_level_ads) mylink.li##+js(abort-current-script, enable_page_level_ads) mylink.li##+js(abort-on-property-read, adsbygoogle) mylink.li##+js(abort-current-script, adsbygoogle) mylink.li##ins[class="adsbygoogle"]:remove() mylink.li##+js(abort-on-property-read, COcTEURvVahKvwSKM) mylink.li##+js(abort-current-script, COcTEURvVahKvwSKM) ||www.adtival.network^* ||lwt.pw^* ||lewat.club/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adtival.com/themes/jquery.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||jhpceldehkofgj.com^* ||www.jhpceldehkofgj.com^* ||ebhytolzhum.com^* ||www.ebhytolzhum.com^* ||ogvrdxjcgzst.com^* ||www.ogvrdxjcgzst.com^* ||uyxjnuqbti.com^* ||www.uyxjnuqbti.com^* ||dlfdvyfn.com^* ||www.dlfdvyfn.com^* ||fclfmfjykupjdk.com^* ||www.fclfmfjykupjdk.com^* ||vvbmvooy.com^* ||www.vvbmvooy.com^* ||zvhwebvc.com^* ||www.zvhwebvc.com^* ||zhihrotpyphycy.com^* ||www.zhihrotpyphycy.com^* ||ufvehyxuiwe.com^* ||www.ufvehyxuiwe.com^* ||rfebbtvbojc.com^* ||www.rfebbtvbojc.com^* ||ttrwhchvj.com^* ||www.ttrwhchvj.com^* ||bhwpdezzduthrp.com^* ||www.bhwpdezzduthrp.com^* ||pswucdobdvt.com^* ||www.pswucdobdvt.com^* ||dqfpksnabgagc.com^* ||www.dqfpksnabgagc.com^* ||vzxnrtxpdnl.com^* ||www.vzxnrtxpdnl.com^* ||zpbgschpbkz.com^* ||www.zpbgschpbkz.com^* ||hemicthong.pro^* ||www.hemicthong.pro^* ||butheptesitrew.pro^* ||www.butheptesitrew.pro^* ||furtherescottom.info^* ||www.furtherescottom.info^* ||adsfast.site^* ||www.adsfast.site^* ||fastimage.site^* ||www.fastimage.site^* ||runwayvoter.cdn-cloud.club^* ||b3z29k1uxb.com^* ||www.b3z29k1uxb.com^* ||www.tut2u.com/aff_william.png$image !||page-events-ustats.udemy.com/api-2.0/visits/me/page-events/page-performance/CLP.buy-button-rendered/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||page-events-ustats.udemy.com/api-2.0/visits/me/page-events/trackclick/clp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||page-events-ustats.udemy.com/api-2.0/visits/me/page-events/trackclick/notice/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||page-events-ustats.udemy.com/api-2.0/visits/me/page-events/viewed/instructor_activity/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s.go-mpulse.net/boomerang/DZLR5-UHNSG-U6UB2-VE6H7-W42ZF$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.go-mpulse.net^* ||s2.go-mpulse.net^* !||www.udemy.com/api-2.0/visits/me/datadog-increment-logs$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.udemy.com/api-2.0/visits/me/funnel-logs/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.udemy.com/api-2.0/visits/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.zenaps.com/rclick.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.howcast.com/.bootscripts/analytics.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.howcast.com/.bootscripts/PhoenixGoogleAnalytics.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.howcast.com/.bootscripts/webcomponents/adOutstream.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.howcast.com/.bootscripts/webcomponents/ad.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.howcast.com/.bootscripts/beacon.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||saymedia-d.openx.net/w/1.0/arj$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||saymedia-d.openx.net^* ||zrcavgvtxqcbu.com^* ||www.zrcavgvtxqcbu.com^* ||hnsamgkrtliye.com^* ||www.hnsamgkrtliye.com^* ||cxxqchjb.com^* ||www.cxxqchjb.com^* ||diwtbtakcu.com^* ||www.diwtbtakcu.com^* ||iwqownwjbk.com^* ||www.iwqownwjbk.com^* ||maysrqdev.com^* ||www.maysrqdev.com^* ||gdskmueffp.com^* ||www.gdskmueffp.com^* ||zkgyibosyh.com^* ||www.zkgyibosyh.com^* ||ipfcvsxisyz.com^* ||www.ipfcvsxisyz.com^* ||udvxwimgqr.com^* ||www.udvxwimgqr.com^* ||ksukpuyqs.com^* ||www.ksukpuyqs.com^* ||xmylgmmt.com^* ||www.xmylgmmt.com^* ||go.searchlock.com^* ||searchlock.com^* ||www.searchlock.com^* ||kbtoiwayyezse.com^* ||www.kbtoiwayyezse.com^* ||srmnfxcftazj.com^* ||www.srmnfxcftazj.com^* ||sutdpikbwpvi.com^* ||www.sutdpikbwpvi.com^* ||ijhpzjzjaujpov.com^* ||www.ijhpzjzjaujpov.com^* ||www.pskajrxx.com^* ||pskajrxx.com^* ||www.onlinechatcenters.com/visitor/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.amkwvxhw.com^* ||amkwvxhw.com^* !www.thegamer.com##div[class^="ad-zone-container"]:remove() www.thegamer.com##.ad-zone-container:remove() www.thegamer.com##div[class="ad-current"]:remove() www.thegamer.com##div[class="ad-odd"]:remove() www.thegamer.com##div[id*="adsninja-ad-"]:remove() www.thegamer.com##iframe[id="rufous-sandbox"]:remove() www.thegamer.com##+js(set-constant, window.admiralScriptLocation, "") www.thegamer.com##+js(set-constant, window.admiralWorkerScriptLocation, "") www.thegamer.com##+js(set-constant, window.an_snWorkerScriptLocation, "") www.thegamer.com##+js(set-constant, window.an_snScriptLocation, "") www.thegamer.com##+js(set-constant, window.imaSDKScriptLocation, "") www.thegamer.com##+js(set-constant, window.bidderTypeLibraryPrebidScriptLocation, "") www.thegamer.com##+js(set-constant, window.bidderTypeLibraryAmazonScriptLocation, "") www.thegamer.com##+js(set-constant, googletag.pubads, noopFunc, complete) www.thegamer.com##+js(set-constant, window.adsNinjaHeaderBiddingManager, false) www.thegamer.com##+js(remove-node-text, script, /googletag\.cmd\.push\(/gm) www.thegamer.com##+js(remove-node-text, script, /var gads\s*=/gm) www.thegamer.com##+js(abort-on-property-read, gads) www.thegamer.com##+js(abort-on-property-write, gads) www.thegamer.com##+js(abort-on-property-read, AdxVastSlot) www.thegamer.com##+js(abort-on-property-write, AdxVastSlot) www.thegamer.com##+js(set-constant, valnet_hideAds, true) www.thegamer.com##+js(trusted-replace-node-text, script, /var valnet_hideAds\s?=\s?false/gm, var valnet_hideAds = true) www.thegamer.com##+js(remove-node-text, script, /window\.an_sn\.queue\.unshift\(/gm) www.thegamer.com##+js(abort-on-property-read, window.an_sn.queue) www.thegamer.com##+js(abort-on-property-write, window.an_sn.queue) www.thegamer.com##+js(remove-node-text, script, /window\.adsNinja\.queue\.unshift\(/gm) www.thegamer.com##+js(abort-on-property-read, window.adsNinja.queue) www.thegamer.com##+js(abort-on-property-write, window.adsNinja.queue) ||www1.ddl.to/js/clipboard.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www1.ddl.to/js/countdown.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ddl.to##div[class="adsBox"]:remove() ddl.to##+js(abort-on-property-read, 2628863) ddl.to##+js(abort-current-script, 2628863) ddl.to##+js(abort-on-property-read, popundersPerIP) ddl.to##+js(abort-current-script, popundersPerIP) ||www.nbylhvbswplcj.com^* ||nbylhvbswplcj.com^* ||www.kgxemdznctlmya.com^* ||kgxemdznctlmya.com^* ||ivfwajwbhiwzw.com^* ||www.ivfwajwbhiwzw.com^* ||cnutjhszkjse.com^* ||www.cnutjhszkjse.com^* ||tlagvdqrsarf.com^* ||www.tlagvdqrsarf.com^* ||wenpsnpqher.com^* ||www.wenpsnpqher.com^* ||www.ubsrvnuda.com^* ||ubsrvnuda.com^* ||www.ngmhnamtzgzabg.com^* ||ngmhnamtzgzabg.com^* ||www.mcuqjebym.com^* ||mcuqjebym.com^* ||www.yydmdsdnbtcduu.com^* ||yydmdsdnbtcduu.com^* ||www.shidvvvhi.com^* ||shidvvvhi.com^* ||www.fzyxygxa.com^* ||fzyxygxa.com^* ||www.bsqbdbtftyu.com^* ||bsqbdbtftyu.com^* ||www.uvmfrryhmaww.com^* ||uvmfrryhmaww.com^* ||prod-native.actionbutton.co^* ||xml.popmonetizer.net^* ||www.yidxvzosvwsd.com^* ||yidxvzosvwsd.com^* ||www.uezychzvo.com^* ||uezychzvo.com^* ||www.alyhlhyhaetbk.com^* ||alyhlhyhaetbk.com^* ||www.uvsxjyokgfz.com^* ||uvsxjyokgfz.com^* ||www.jbxggecaj.com^* ||jbxggecaj.com^* ||www.wclurprkyk.com^* ||wclurprkyk.com^* ||www.ifuvjvbyjir.com^* ||ifuvjvbyjir.com^* ||www.gwohimtyhbthg.com^* ||gwohimtyhbthg.com^* ||www.ltfxlxze.com^* ||ltfxlxze.com^* ||www.fbmgmcerkou.com^* ||fbmgmcerkou.com^* ||www.anyyqhtebsit.com^* ||anyyqhtebsit.com^* ||www.lvvfcuzzdor.com^* ||lvvfcuzzdor.com^* ||www.mvnyllursi.com^* ||mvnyllursi.com^* ||www.hwlykqjlytnm.com^* ||hwlykqjlytnm.com^* ||www.jjvdpetfxbjdbq.com^* ||jjvdpetfxbjdbq.com^* ||www.bqyzesmanfucq.com^* ||bqyzesmanfucq.com^* ||www.aebhdrkiybgy.com^* ||aebhdrkiybgy.com^* ||www.pzpotdmpv.com^* ||pzpotdmpv.com^* ||www.mzgqqjpnbez.com^* ||mzgqqjpnbez.com^* bjorn3d.com##div[id^="div-gpt-ad-"] ||ad.liveburst.com^* !||bjorn3d.com/wp-content/plugins/google-analyticator/external-tracking.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bjorn3d.com/wp-content/plugins/google-analyticator/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bjorn3d.com/wp-content/cache/busting/google-tracking/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css thefpsreview.com##ins[class="adsbygoogle"]:remove() thefpsreview.com##div[class*="td-g-rec-id-custom_ad_"]:remove() www.xtube.com##.cnt > .removeAds:remove() ||web.vortex.data.microsoft.com/collect/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mscom.demdex.net^* ||dc.ads.linkedin.com^* ||d.impactradius-event.com^* ||www.game-debate.com/adcode.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.game-debate.com##div[class="ad-banner"]:remove() ||www.game-debate.com/amazon/collectStats.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.game-debate.com##+js(set-constant, setAdCookie, noopFunc) www.game-debate.com##+js(set-constant, getAdCookie, noopFunc) www.game-debate.com##+js(set-constant, adPanelOpen, noopFunc) www.game-debate.com##+js(abort-current-script, adPanelOpen) www.game-debate.com##+js(abort-on-property-read, setAdCookie) www.game-debate.com##+js(abort-on-property-write, setAdCookie) www.game-debate.com##+js(abort-on-property-read, getAdCookie) www.game-debate.com##+js(abort-on-property-write, getAdCookie) ||agdvemtd.com^* ||www.agdvemtd.com^* ||www.thegatewaypundit.com/wp-content/uploads/gorilla-dream.jpg$image www.washingtonexaminer.com##div[class^="videoAdUi"]:remove() www.washingtonexaminer.com##div[class^="GoogleDfpAd"]:remove() www.washingtonexaminer.com##div[id^="googleAd"]:remove() www.washingtonexaminer.com##div[id^="dsk-banner-ad-"]:remove() www.washingtonexaminer.com##div[id^="dsk-box-ad-"]:remove() www.washingtonexaminer.com##div[id^="oop-ad-"]:remove() www.washingtonexaminer.com##div[id="tdi_40"]:remove() www.washingtonexaminer.com##div[class="mid-article-banner-ad"]:remove() www.washingtonexaminer.com##iframe[id="bp-a9-apstag-holder-"]:remove() www.washingtonexaminer.com##+js(abort-on-property-write, window.OneSignalDeferred) www.washingtonexaminer.com##+js(abort-on-property-read, window.OneSignalDeferred) www.washingtonexaminer.com##+js(remove-node-text, script, /window\.OneSignalDeferred/gm) www.washingtonexaminer.com##+js(set-constant, zephrBrowser.run, noopFunc, complete) www.washingtonexaminer.com##+js(remove-node-text, script, /zephrBrowser\.run\(\);/gm) www.washingtonexaminer.com##iframe[name]:matches-attr(name=/^__\S+Locator$/):remove() www.washingtonexaminer.com##iframe[id^="goog_"]:remove() www.washingtonexaminer.com##iframe[sandbox]:remove() www.washingtonexaminer.com##iframe[title="Advertisement"]:remove() www.washingtonexaminer.com##div[id$="_adContainer"]:remove() www.washingtonexaminer.com##+js(aeld, adEnd) www.washingtonexaminer.com##+js(aeld, adError) www.washingtonexaminer.com##+js(aeld, adErrorAnalytics) www.washingtonexaminer.com##+js(aeld, adImpression) www.washingtonexaminer.com##+js(aeld, adsCompleted) www.washingtonexaminer.com##+js(aeld, adStart) www.washingtonexaminer.com##+js(aeld, adUnitComplete) www.washingtonexaminer.com##+js(aeld, adUnitImpression) www.washingtonexaminer.com##+js(aeld, adUnitRequest) www.washingtonexaminer.com##+js(aeld, ourAdComplete) www.washingtonexaminer.com##+js(aeld, ourAdImpression) www.washingtonexaminer.com##+js(aeld, ourAdRequest) www.washingtonexaminer.com##+js(aeld, partnerAdComplete) www.washingtonexaminer.com##+js(aeld, partnerAdImpression) www.washingtonexaminer.com##+js(aeld, partnerAdRequest) www.washingtonexaminer.com##+js(aeld, requestAd) www.washingtonexaminer.com##+js(aeld, stickyAdImpression) www.washingtonexaminer.com##+js(aeld, vast.adVolumeChange) www.washingtonexaminer.com##+js(aeld, anyadFinished) www.washingtonexaminer.com##+js(aeld, beforeRequestBids) www.washingtonexaminer.com##+js(aeld, bidderImpression) www.washingtonexaminer.com##+js(aeld, bidderResponse) www.washingtonexaminer.com##+js(aeld, bidderTimeout) www.washingtonexaminer.com##+js(aeld, disableInteraction) www.washingtonexaminer.com##button[id="castingButton"][hidden]:remove-attr(hidden) www.washingtonexaminer.com##+js(remove-attr, hidden, button[id="castingButton"][hidden]) www.washingtonexaminer.com##div[id="videoPlayer"]:style(left: -8vw !important; overflow: hidden !important; --aspect-ratio: 16/9 !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; user-select: all !important; pointer-events: all !important;) www.washingtonexaminer.com##div[class="brid-holder"]:style(overflow: hidden !important; left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100% !important; width: 100% !important; max-height: 100% !important; height: 100% !important; user-select: all !important; pointer-events: all !important;) ! TODO: The following expands the video player viewport, BUT it is overlapped with a right-side column. !www.washingtonexaminer.com##div[id^="Brid_"]:style(left: -8vw !important; overflow: auto !important; --aspect-ratio: 16/9 !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; user-select: all !important; pointer-events: all !important;) ! overflow: hidden in the following rule is necessary to prevent unwanted scrollbars. www.washingtonexaminer.com##div[id^="Brid_"]:style(overflow: hidden !important; --aspect-ratio: 16/9 !important; left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100% !important; width: 100% !important; max-height: 100% !important; height: 100% !important; user-select: all !important; pointer-events: all !important;) www.washingtonexaminer.com##video[id^="Brid_"]:style(overflow: hidden !important; left: 0px !important; right: 0px !important; top: 0px !important; bottom: 0px !important; padding: 0 !important; margin: 0 !important; border: none !important; border-width: 0 !important; max-width: 100% !important; width: 100% !important; max-height: 100% !important; height: 100% !important; user-select: all !important; pointer-events: all !important;) www.washingtonexaminer.com##video[id^="Brid_"][disableremoteplayback]:remove-attr(disableremoteplayback) www.washingtonexaminer.com##+js(remove-attr, disableremoteplayback, video[id^="Brid_"][disableremoteplayback]) www.washingtonexaminer.com##video[id^="Brid_"][disablepictureinpicture]:remove-attr(disablepictureinpicture) www.washingtonexaminer.com##+js(remove-attr, disablepictureinpicture, video[id^="Brid_"][disablepictureinpicture]) www.washingtonexaminer.com##+js(trusted-set-attr, video[id^="Brid_"], x-webkit-airplay, allow) www.washingtonexaminer.com##+js(trusted-set-attr, video[id^="Brid_"], data-autoplay-mute-lock, false) www.washingtonexaminer.com##+js(trusted-set-attr, video[id^="Brid_"], controls, true) www.washingtonexaminer.com##+js(trusted-set-attr, video[id^="Brid_"], width, 100%) www.washingtonexaminer.com##+js(trusted-set-attr, video[id^="Brid_"], height, 100%) www.washingtonexaminer.com##+js(trusted-set-attr, video[id^="Brid_"], preload, metadata) !www.washingtonexaminer.com##+js(trusted-set-attr, video[id^="Brid_"], preload, none) !www.washingtonexaminer.com##+js(trusted-set-attr, video[id^="Brid_"], preload, auto) www.washingtonexaminer.com##+js(trusted-set-attr, video[id^="Brid_"], crossorigin, anonymous) www.washingtonexaminer.com##+js(trusted-set-attr, video[id^="Brid_"], playsinline, true) !www.washingtonexaminer.com##+js(trusted-set-attr, video[id^="Brid_"], playsinline, playsinline) www.washingtonexaminer.com##+js(trusted-set-attr, video[id^="Brid_"], webkit-playsinline, true) www.washingtonexaminer.com##video:style(overflow: hidden !important; left: 0px !important; right: 0px !important; top: 0px !important; bottom: 0px !important; padding: 0 !important; margin: 0 !important; border: none !important; border-width: 0 !important; max-width: 100% !important; width: 100% !important; max-height: 100% !important; height: 100% !important; user-select: all !important; pointer-events: all !important;) www.washingtonexaminer.com##video[disableremoteplayback]:remove-attr(disableremoteplayback) www.washingtonexaminer.com##+js(remove-attr, disableremoteplayback, video[disableremoteplayback]) www.washingtonexaminer.com##video[id="videoPlayer_html5"][disablepictureinpicture]:remove-attr(disablepictureinpicture) www.washingtonexaminer.com##+js(remove-attr, disablepictureinpicture, video[id="videoPlayer_html5"][disablepictureinpicture]) www.washingtonexaminer.com##+js(trusted-set-attr, video[id="videoPlayer_html5"], x-webkit-airplay, allow) www.washingtonexaminer.com##+js(trusted-set-attr, video[id="videoPlayer_html5"], data-autoplay-mute-lock, false) www.washingtonexaminer.com##+js(trusted-set-attr, video[id="videoPlayer_html5"], controls, true) www.washingtonexaminer.com##+js(trusted-set-attr, video[id="videoPlayer_html5"], width, 100%) www.washingtonexaminer.com##+js(trusted-set-attr, video[id="videoPlayer_html5"], height, 100%) www.washingtonexaminer.com##+js(trusted-set-attr, video[id="videoPlayer_html5"], preload, metadata) !www.washingtonexaminer.com##+js(trusted-set-attr, video[id="videoPlayer_html5"], preload, none) !www.washingtonexaminer.com##+js(trusted-set-attr, video[id="videoPlayer_html5"], preload, auto) www.washingtonexaminer.com##+js(trusted-set-attr, video[id="videoPlayer_html5"], crossorigin, anonymous) www.washingtonexaminer.com##+js(trusted-set-attr, video[id="videoPlayer_html5"], playsinline, true) !www.washingtonexaminer.com##+js(trusted-set-attr, video[id="videoPlayer_html5"], playsinline, playsinline) www.washingtonexaminer.com##+js(trusted-set-attr, video[id="videoPlayer_html5"], webkit-playsinline, true) ||www.washingtonexaminer.com/scripts/ad_load.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.washingtonexaminer.com/scripts/adload-freestar.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||p.brid.tv/player/build/plugins/prebid/1.1.147/brid.prebid.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||p.brid.tv/player/build/plugins/prebid/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||p.brid.tv/player/build/plugins/googleanalytics/2.1.3/brid.googleanalytics.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||p.brid.tv/player/build/plugins/googleanalytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.thepostmillennial.com##div[class*="afw_ad"]:remove() www.gamedev.tv##div[class="fixed bottom-12 left-2 right-2 z-30 rounded-[0.25rem] bg-gray-500 p-6 md:left-auto md:right-12"]:has(p:has-text(Cookies help us enhance your experience and analyze traffic.)):remove() ||amzan.azurewebsites.net^* ||postlnk.com^* ||cdn-1.oo-alidhuffarufinolhu.xyz^* !||28.securefinds2.com/adServe/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||28.securefinds2.com^* !||www.gotoapp8.com/wim/static/wi/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.gotoapp8.com^* !||gsafe.getawesome2.com/wim/static/wi/main.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||gsafe.getawesome2.com/wim/static/dist/bundle.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gsafe.getawesome2.com^* !||lp.searchmulty.com/redirect.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lp.searchmulty.com^* earn4files.com##+js(abort-on-property-read, adblockers) earn4files.com##+js(abort-on-property-read, adsbygoogle) earn4files.com##+js(abort-on-property-read, banner_ad) earn4files.com##+js(abort-on-property-read, blockadblock) earn4files.com##+js(abort-on-property-write, adblockers) earn4files.com##+js(abort-on-property-write, adsbygoogle) earn4files.com##+js(abort-on-property-write, banner_ad) earn4files.com##+js(abort-on-property-write, blockadblock) earn4files.com##ins[class="adsbygoogle"]:remove() earn4files.com##div[id="banner_ad"]:remove() ||earn4files.com/ds1/js/clipboard.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||jussithepherhers.info^* ||www.jussithepherhers.info^* !||fxp3jyzh.khufaw2.com/jr_memched.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||arymh5ub.khufaw2.com/jr_memched.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.khufaw2.com/jr_memched.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||arymh5ub.khufaw2.com/jr_prototype.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||arymh5ub.khufaw2.com/jr_jquery.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.khufaw2.com/jr_prototype.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.khufaw2.com/jr_jquery.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.canghg104.com/stadv/js/sopenx.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.canghg104.com/timev/ad_mode.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.mrelko.com/bnrs/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ch.thebtcc.xyz^* ||thebtcc.xyz^* ||www.nanoadexchange.com/script/s2iurl.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||seates-clable.com^* ||www.seates-clable.com^* ||doctopdftech.com^* ||www.doctopdftech.com^* ||static-v2.doctopdftech.com^* ||datastore.doctopdftech.com^* !||ip.webstats.bid/system-xiguacili-js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ip.webstats.bid^* ||hm.baidu.com/hm.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||three.xjsmtz2.com^* ||realcenter-mobileapps2.com^* ||analytics.analytics-egain.com^* ||ratresperheto.pro^* ||www.ratresperheto.pro^* ||dybxezbel1g44.cloudfront.net^* ||deryjobmeetin.info^* ||www.deryjobmeetin.info^* ||fullgamesforpc.com/popunder.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||deryjobmeetin.info/popunder.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pngme.ru/stat.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ggsoftware-d.openx.net^* !||27.domulinus.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.domulinus.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nameketathar.pro^* ||www.nameketathar.pro^* ||dingboronhartal.pro^* ||www.dingboronhartal.pro^* ||hits-i.iubenda.com^* ||udg.herbalphase.com^* !GoDaddy domain phishing ||shaxiahair.icu^* !||p0802.shaxiahair.icu^* ||www.charlesschaefercom.unimusic.top^* ||d1xxdi1bvp4gvz.cloudfront.net^* ||d2.consoletarget.com/i/tc/pm/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css d2.consoletarget.com​##ins[class="adsbygoogle"]:remove() ||trcklks.com^* d2.consoletarget.com##+js(abort-on-property-read, adsbygoogle) d2.consoletarget.com##+js(abort-on-property-write, adsbygoogle) ||a2.consoletarget.com/@_kgn.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a2.consoletarget.com/!_bn.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s1.musictarget.com/-ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||page-events-ustats.udemy.com/api-2.0/visits/me/page-events/trackclick/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||a.exdynsrv.com/popunder1000.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.exdynsrv.com^* ||c.klcheck.com^* ||cdn.thegamerspost.com/themes/v2/img/adblock.png$image ||mx-sh.net/js/blockadblock-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mx-sh.net/css_newTheme/adblock.css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css mx-sh.net##div[id="bannerad"]:remove() ||mx-sh.net/js/remodal.min-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css mx-sh.net##+js(abort-on-property-read, adblockinfo) mx-sh.net##+js(abort-on-property-write, adblockinfo) mx-sh.net##+js(abort-on-property-read, bannerad) mx-sh.net##+js(abort-on-property-write, bannerad) rockfile.co##ins[class="adsbygoogle"]:remove() ||watchsomuch.unblocked.to/AD/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||thevpntrustzone.xyz/get_script.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||thevpntrustzone.xyz^* ||watchsomuch.org/Tools/VC.ashx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pamela.trktnc.com^* ||get.mysecurify.com^* ||mysecurify.com^* ||www.mysecurify.com^* !||app2ads.com/ads/landing/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||app2ads.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css download.ir##div[class="fake-ads"]:remove() download.ir##div[class^="content-top-ads-box"]:remove() ||landings.frekaans.ir^* ||frekaans.ir^* ||www.frekaans.ir^* ||mqmtjoshdvlow.com^* ||www.mqmtjoshdvlow.com^* ||tracker-pm2.rioaffiliates.com^* ||rutrk.org/240x120/190726_01.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css rutracker.org##div[id="bn-top-right"]:remove() ||nolabourcontractors.co.zw^* mx-sh.net##.adblock-instruction.remodal:remove() ||uniquecaryantra.com^* ||www.uniquecaryantra.com^* elitebytes.com##.navbar-custom.navbar-fixed-bottom.navbar-inverse.navbar:remove() ||u.new4.me/img/1.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css nemo-crack.org##div[class="downloadbutton comp"]:remove() nemo-crack.org##div[class="b-popup"]:remove() ||pw.wpu.sh/ps/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||abp.smartadcheck.de/js/abpc.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||abp.smartadcheck.de^* ||www.win-raid.com/js/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cakes.noseland.icu^* ||noseland.icu^* ||www.noseland.icu^* ||tray.recessmask.pw^* ||recessmask.pw^* ||www.recessmask.pw^* ||forelatorsma.pro^* ||ledentithow.pro^* ||www.ledentithow.pro^* ||rutrk.org/800x160/190726_01.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rublacklist.net/images/rutracker_image.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rutrk.org/240x600/190809_01.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rutrk.org/240x800/190420_01.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css rutracker.org##div[class="bn-idx"]:remove() ||rutrk.org/800x160/190805_01.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||robinbob.in/images/promo_blue.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||7wuvias.website^* !||9.startimes.club^* !||8.startimes.club^* !||7.startimes.club^* !||6.startimes.club^* !||5.startimes.club^* !||4.startimes.club^* !||3.startimes.club^* !||2.startimes.club^* !||1.startimes.club^* ||*.startimes.club^* ||startimes.club^* !||app9346.falseortruerdr42.life^* ||*.falseortruerdr42.life^* ||falseortruerdr42.life^* ||netflix.login.service-scheduled.com^* ||classicartisans.co.zw^* ||www.wlrzptntiqez.com^* ||wlrzptntiqez.com^* ||iutqdjtajrhpi.com^* ||www.iutqdjtajrhpi.com^* ||tjcorfsynjppv.com^* ||www.tjcorfsynjppv.com^* !||hixpfhoon.com/Mg.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hixpfhoon.com^* !||www.hixpfhoon.com/ep.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.hixpfhoon.com^* freefilesync.org###alt-banner:remove() ||kouraija.net^* ||www.kouraija.net^* !||mybestdc.com/aS/sfclick$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mybestdc.com^* ||quedecsecurity.co.zw^* ||whistle.hairbike.info^* ||*.hairbike.info^* ||cimoghuk.net^* ||www.cimoghuk.net^* ||www.datalink.mechanicalthink.com/wp-content/uploads/ads-300-x-600-a-512x1024.png$image ||www.datalink.mechanicalthink.com/wp-content/uploads/ads-300-x-250-a.png$image www.datalink.mechanicalthink.com###custom_html-10 > .custom-html-widget.textwidget > .adsbygoogle:remove() www.datalink.mechanicalthink.com###custom_html-11 > .custom-html-widget.textwidget > .adsbygoogle:remove() www.datalink.mechanicalthink.com##.code-block-1.code-block > .adsbygoogle:remove() ||upload4earn.org/DownloadNow_files/ntfc.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||upload4earn.org/DownloadNow_files/ads.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||e.dtscout.com^* ||srchmanager.com^* ||www.srchmanager.com^* ||get1nt0p.com^* ||www.get1nt0p.com^* ||nowupdate4free.yourplayersfinetogetvideo.info^* ||www.nowupdate4free.yourplayersfinetogetvideo.info^* upload4earn.org##div[class="adsBox"]:remove() upload4earn.org##div[id="banner_ad"]:remove() !upload4earn.org##ins[class="adsbygoogle adsbygoogle-noablate"]:remove() upload4earn.org##ins[class^="adsbygoogle"]:remove() ||crack4windows.com^* ||www.crack4windows.com^* !||getfilekey.cf/download/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||getfilekey.cf^* ||www.getfilekey.cf^* ||xvucprzzwd.com^* ||www.xvucprzzwd.com^* ||www.gwywsuemmf.com^* ||gwywsuemmf.com^* ||www.paakkisuvs.com^* ||paakkisuvs.com^* ||ffiiloo0k.c0qlr.xyz^* ||bestdataresu1ts.com^* ||www.bestdataresu1ts.com^* www.cpuid.com##.widget-advert-336.widget-block > .widget-advert:remove() www.cpuid.com##.widget-advert-300.widget-block > .widget-advert:remove() ||xgrwjbui.top^* ||www.xgrwjbui.top^* ||erbjahuyn.com^* ||www.erbjahuyn.com^* ||d4b2q.com^* ||www.d4b2q.com^* ||amanda.trktnc.com^* ||www.scahqyriepu.com^* ||www.znuwbselijsmyj.com^* ||www.czcetfjlisyjh.com^* ||www.vqjphqthvfl.com^* ||www.mzmnrczlsqtlya.com^* ||scahqyriepu.com^* ||znuwbselijsmyj.com^* ||czcetfjlisyjh.com^* ||vqjphqthvfl.com^* ||mzmnrczlsqtlya.com^* ||sibewithheprep.pro^* ||www.sibewithheprep.pro^* ||d2glav2919q4cw.cloudfront.net ||lingrethertantin.pro^* ||www.lingrethertantin.pro^* ||wrontonshatbona.pro^* ||www.wrontonshatbona.pro^* ||www.dudehariw-hattma.com^* ||dudehariw-hattma.com^* ||track.chromextension.site^* ||chromextension.site^* !||rsalcch.com/performance/bdv_rd.dbm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.rsalcch.com^* ||rsalcch.com^* ||cdndownloadpr.com^* ||www.cdndownloadpr.com^* ||www.youtube-nocookie.com/ptracking$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.overclockers.com###cookieControlWrapper:remove() www.overclockers.com##.adsbygoogle:remove() ||serial4download.com^* ||www.serial4download.com^* ||nullthemedownload.com^* ||www.nullthemedownload.com^* 4downfiles.org##+js(abort-on-property-read, Histats.start) 4downfiles.org##+js(abort-on-property-read, banner_ad) 4downfiles.org##+js(abort-on-property-read, BlockAdBlock) 4downfiles.org##+js(abort-current-inline-script, BlockAdBlock) gtdb.to##+js(abort-on-property-write, adcashMacros) ||gtdb.to/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.file-up.org###subscribnow:remove() www.file-up.org###dialog:remove() ||supletcedintand.pro^* ||www.mazterize.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.broadstreetads.com/assets/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.broadstreetads.com^* ||uploadserv.com/pop-soft98.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css yaledailynews.com##.top-ad > .banner-ads.container:remove() ||cdn1.adcdnx.com^* ||parperhedtineveng.pro^* ||www.parperhedtineveng.pro^* !||uprimp.com/trk/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||uprimp.com/bnr_xload.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||uprimp.com/show.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||uprimp.com/bnr.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||uprimp.com^* ||www.uprimp.com^* full.badr4soft.com##div[class="banner__ad-info"]:remove() ||namel.net^* ||www.namel.net^* ||ylx-i.advertica-cdn2.com^* ||jaleco.srchmgrk.com^* ||srchmgrk.com^* ||www.srchmgrk.com^* ||static.srchmgrk.com^* ||static-v2.srchmgrk.com^* ||datastore.srchmgrk.com^* ||connect.scroll.com/amp/pingback$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sadbads.com^* ||www.sadbads.com^* www.uploadship.com##.cc-color-override-688238583.cc-bottom.cc-theme-classic.cc-type-info.cc-banner.cc-window:remove() ||tybwfgqq.com^* ||www.tybwfgqq.com^* ||nxtipyczkivm.com^* ||www.nxtipyczkivm.com^* ||wikedfiremedia.com^* ||www.wikedfiremedia.com^* ||t23.intelliad.de^* ! The following rule blocks legitimate redirect links. !||www.anrdoezrs.net^* !||www.anrdoezrs.net/click-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.anrdoezrs.net/links/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.anrdoezrs.net/am/7074958/include/allCj/impressions/page/am.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.anrdoezrs.net/am/7251228/include/joined/impressions/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.anrdoezrs.net/am/*/impressions/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.waucyeeziiiyul.com^* ||waucyeeziiiyul.com^* ||ch.vvallor.club^* ||www.vvallor.club^* ||vvallor.club^* ||yacurlik.com^* ||www.yacurlik.com^* ||yarlnk.com^* ||www.yarlnk.com^* ||geniusdexchange.com/jump/next.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.cplandingpage.club^* ||cplandingpage.club^* ||kerumal.com^* ||www.kerumal.com^* ||gretaith.com^* ||www.gretaith.com^* ||ywvw5laetapith.online^* ||www.ywvw5laetapith.online^* !||choogeet.net/pfe/current/standalone.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||choogeet.net/zone?pub=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||choogeet.net^* ||consting-hancessor.com^* ||news-jupiter.com^* ||t.hoood.info^* ||cdn.hoood.info^* ||notify-monad.com^* ||feed.monad-rtb.com^* ||feed.monadplug.com^* ||special-offers.online^* ||usenetoffer.download/metrika/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||usenetoffer.download/advert.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||get.topnotifications.online^* ||topnotifications.online^* ||install.notify-service.com^* ||notify-service.com^* !||served-by.pixfuture.com/www/headerbid/library/tracking/demo_track.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||served-by.pixfuture.com/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||served-by.pixfuture.com^* ||pixfuture2-d.openx.net^* !||cj.dotomi.com/* !blocks slickdeals links !||www.emjcd.com/* !blocks slickdeals links ||www.xdqodcrayeat.com^* ||xdqodcrayeat.com^* ||www.vlnaseyii.com^* ||vlnaseyii.com^* !||counter8.allfreecounter.com/private/freecounterstat.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||counter8.allfreecounter.com^* ||buthestienjo.pro^* ||www.buthestienjo.pro^* ||www.daerie.xyz^* ||daerie.xyz^* ||undhathaletold.pro^* ||www.undhathaletold.pro^* !||lp.searchdimension.com/redirection.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.vwadblujv.com^* ||vwadblujv.com^* ||fiterdiloin.pro^* ||www.fiterdiloin.pro^* www.venea.net##.ab_box:remove() www.venea.net###ag_place:remove() www.venea.net##.ag_banner_top:remove() ! Windows error reports server ||wer.microsoft.com^* ||www.ofzoxqcldl.com^* ||ofzoxqcldl.com^* ||www.fndvovywrtghk.com^* ||fndvovywrtghk.com^* ||www.ypzrannhrvhlpk.com^* ||ypzrannhrvhlpk.com^* ||sweeps3471.humusrv79.life^* ||humusrv79.life^* ||rutrk.org/800x160/190906_02.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||katie.trktnc.net^* ||a2.consoletarget.com/ii/uv/bb_uv_sillybunny.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||inv-nets.admixer.net/adxcm.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||inv-nets.admixer.net^* ||track.funnelytics.io^* !||cdn.funnelytics.io/track.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.funnelytics.io^* ||cookie-matching.mediarithmics.com^* !||collector-pxslc3j22k.perimeterx.net^* ||www.blogger.com/static/v1/jsbin/3101730221-analytics_autotrack.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !www.komando.com###sticky-footer-div-gpt-ad-1548960562476-0:remove() www.komando.com##*[id^="sticky-footer-div-gpt-ad-"]:remove() !persia144.rssing.com##center:nth-of-type(3) > .adsbyvli:remove() persia144.rssing.com##div[class="adsbyvli"]:remove() !||cm.adform.net/cookie?redirect_url=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cm.adform.net^* !||cdn.connectad.io/connectmyusers.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.connectad.io^* ||stats.bilsyndication.com^* ||zergnets.com/results/tag.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.dvedit.cn/data/cache/logging.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.googleadservices.com/measurement$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css unlockapk.com##+js(trusted-set-constant, data-adsbygoogle-status, done) unlockapk.com##+js(trusted-set-constant, detect, yes) unlockapk.com##+js(abort-on-property-read, adClasses) unlockapk.com##+js(abort-on-property-read, adsbygoogle) unlockapk.com##+js(abort-on-property-read, divalerttag) unlockapk.com##+js(abort-on-property-read, google_ad_client) unlockapk.com##+js(abort-on-property-read, opads) unlockapk.com##+js(abort-on-property-write, adClasses) unlockapk.com##+js(abort-on-property-write, adsbygoogle) unlockapk.com##+js(abort-on-property-write, divalerttag) unlockapk.com##+js(abort-on-property-write, google_ad_client) unlockapk.com##+js(abort-on-property-write, opads) unlockapk.com##+js(abort-on-property-read, g207) unlockapk.com##+js(abort-on-property-write, g207) unlockapk.com##+js(aeld, load, g207) unlockapk.com##+js(acs, divalerttag, $imgg) unlockapk.com##+js(aopr, $imgg) unlockapk.com##+js(aopw, $imgg) unlockapk.com##+js(aopr, divalerttag) unlockapk.com##+js(aopw, divalerttag) unlockapk.com##+js(aopr, pageData) unlockapk.com##+js(aopw, pageData) unlockapk.com##+js(aopr, vitag) unlockapk.com##+js(aopw, vitag) !unlockapk.com##+js(set-constant, $img, {}) !unlockapk.com##+js(set-constant, $imgg, {}) unlockapk.com##+js(set-constant, JsEvalContext, noopFunc) unlockapk.com##+js(set-constant, divalerttag, "") unlockapk.com##+js(set-constant, enable_page_level_ads, false) unlockapk.com##+js(set-constant, ga, noopFunc) unlockapk.com##+js(set-constant, g207, noopFunc) ! the following three values change/are random unlockapk.com##+js(set-constant, pPeunAUEONzGXgodpexIwaiFoKASBMLglH, 1, stay) unlockapk.com##+js(set-constant, QUtQJYUqtOqRPEHFBglvLhhsWsDaaSkv, 1, stay) unlockapk.com##+js(set-constant, XQBYnWGiHBrdguyNyYLEIHtUDCFClw, noopFunc) unlockapk.com##+js(set-constant, pageData, {}) unlockapk.com##+js(set-constant, vitag, {}) !unlockapk.com##+js(set-constant, vitag.Init, [], end) !unlockapk.com##+js(set-constant, vitag.Init, [], complete) unlockapk.com##div[data-ad-slot]:remove() unlockapk.com##div[id="alert"]:remove() uunlockapk.com##div[id="detect"]:remove() unlockapk.com##div[id="go"]:remove-attr(style) unlockapk.com##div[id="go"]:style(display: block !important;) !unlockapk.com##div[id="waitt"]:remove-attr(style) !unlockapk.com##div[id="waitt"]:style(display: block !important;) unlockapk.com##div[id="prog"]:remove-attr(style) unlockapk.com##div[id="prog"]:style(display: block !important;) unlockapk.com##ins[class="adsbygoogle"]:remove() unlockapk.com##iframe[data-aa]:remove() ! The following element names change. !unlockapk.com###OBirleurFOzwXZimaGlOonizAZjPEbBw:remove() !unlockapk.com##img[id="pPeunAUEONzGXgodpexIwaiFoKASBMLglH"]:remove() !unlockapk.com###pJJgkNhjaebCdgnHVdplQgczJWqjLkVwuz:remove() ||unlockapk.com/dl/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||d.btttag.com/analytics.rcv$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d.btttag.com^* www.uploadship.com##+js(abort-on-property-write, adsbygoogle) www.uploadship.com##ins[class="adsbygoogle"]:remove() www.uploadship.com##+js(abort-on-property-read, clipboardDemos) www.uploadship.com##+js(abort-on-property-write, clipboardDemos) ||www.uploadship.com/themes/pro/js/cookieconsent.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.chat.ecbsn.com/analytics$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.rakuten.com/static/js/loggly_js/loggly.tracker-2.1.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.rakuten.com/static/js/loggly_js/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !fossbytes.com##.ai-viewport-1.code-block-6.code-block > .ai-no-tracking.ai-adb-show:remove() !fossbytes.com##div[class="ai-adb-show ai-no-tracking"]:remove() fossbytes.com##div[class^="ai-adb-show"]:remove() fossbytes.com##div[class="ai-adb-hide"]:remove() fossbytes.com##ins[class="adsbygoogle"]:remove() fossbytes.com##div[id="banner-advert-container"]:remove() !||diradvert.ru/click/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||diradvert.ru^* ||acales.ru/nnmclub$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !www.winhelponline.com##.adtester-container-110.adtester-container.box-4.ezoic-ad:remove() !www.winhelponline.com##.adtester-container-103.adtester-container.large-leaderboard-1.ezoic-ad:remove() www.winhelponline.com##*[class*=".adtester-container-"]:remove() msguides.com##div[class^="adsbyvli"]:remove() msguides.com##ins[class="adsbygoogle"]:remove() ||get.convertowiz.com^* ||convertowiz.com^* ||eae5daf052d2673b.com^* ||www.arcaptart.site^* ||arcaptart.site^* ||adserver-eu.adtech.advertising.com^* ||www.airartapt.site^* ||airartapt.site^* ||get.streaming-time.com^* ||www.streaming-time.com^* ||streaming-time.com^* ||www.hjgft.xyz^* ||hjgft.xyz^* ||allashark.site^* ||www.allashark.site^* ||game5865.fastfreeredics33.live^* ||fastfreeredics33.live^* geo-torrent.biz##div[class="bannerss"]:remove() ||geo-torrent.biz/images/3.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mobile4576.fastfreeredics40.live^* ||fastfreeredics40.live^* !||token.createrelativechanging.com/far.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||token.createrelativechanging.com^* megafile3.top##ins[class="adsbygoogle"]:remove() megafile3.top##+js(abort-on-property-write, adsbygoogle) megafile3.top##+js(abort-on-property-read, adsbygoogle) ||www.tut2u.com/728.png$image ||www.yereyibbmudon.com^* ||yereyibbmudon.com^* ||www.n3wpr0m0.club^* ||n3wpr0m0.club^* ||repairgreatlyquickfile.icu^* ||www.repairgreatlyquickfile.icu^* ckk.ai###ni-overlay:remove() short.pe###dfp:remove() !||opgolan.com/afu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.opgolan.com^* ||opgolan.com^* ||e3.adpushup.com^* cgpeers1.rssing.com##div[class="widgetbyfreegames66"]:remove() cgpeers1.rssing.com##.adsbyvli:remove() ||i.connectad.io^* ||www.zlfgedpuxrbpgm.com^* ||zlfgedpuxrbpgm.com^* ||zijaipse.com^* ||grooksom.com^* ||gloalrie.com^* free3.filewal.com###hd_pop:remove() ||free3.filewal.com/img/bada_728x90.gif$image ||free3.filewal.com/img/yamato_728-90.gif$image ||free3.filewal.com/img/yamato_336-280.gif$image ||free3.filewal.com/img/bada_336x280.gif$image ||free3.filewal.com/img/filemaru_100.gif$image ||free3.filewal.com/img/filesun_100.gif$image ||1cash.us/js/full-page-script.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nullpk.com/wp-content/themes/list-mag-wp/images/bg.png$image !||nullpk.com/wp-content/plugins/deblocker/js/ads.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||nullpk.com/wp-content/plugins/deblocker/js/deblocker.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nullpk.com/wp-content/plugins/deblocker/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css nullpk.com##ins[class="adsbygoogle"]:remove() nullpk.com##.active.mdp-deblocker-modal:remove() nullpk.com##.mdp-deblocker-wrapper:remove() nullpk.com##.active.mdp-deblocker-blackout:remove() nullpk.com##+js(abort-on-property-write, mdp_deblocker) nullpk.com##+js(abort-on-property-read, mdp_deblocker) nullpk.com##+js(set-constant, adsBlocked, falseFunc) nullpk.com##+js(set-constant, window.mdpDeBlockerDestroyer, false) nullpk.com##+js(set-constant, disableTextSelection, noopFunc) nullpk.com##+js(set-constant, disableContextMenu, noopFunc) nullpk.com##+js(set-constant, disableHotKeys, noopFunc) nullpk.com##+js(set-constant, disableDeveloperTools, noopFunc) ||flyeragency.co.uk/images/download2.jpg$image ||secureir.ebaystatic.com/cr/v/c1/vi_show_ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.oldpcgaming.net/wp-content/uploads/2018/08/adbox_1.jpg$image ||www.oldpcgaming.net/wp-content/uploads/2018/08/adbox_2.jpg$image guidedhacking.com##.notice--cookie.notice--primary.js-notice.notice:remove() ||js.srvtrck.com^* ||hades.srvtrck.com^* ||srvtrck.com^* ||medianewtab.com^* ||expansion.wavesarch.icu^* ||d31j93rd8oukbv.cloudfront.net/metrika/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||imovepics.com/images/banners/download-15.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.hopesandaspiration.com^* ||hopesandaspiration.com^* ||www.iduroxygib.tk^* ||iduroxygib.tk^* ||ua.yektanet.com/__fake.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||unreal4.cf/cdn-cgi/apps/head/RdcXbuSarQGvtz_xRvctZOhgx1I.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css unreal4.cf##+js(abort-on-property-write, GoogleAnalyticsObject) unreal4.cf##+js(abort-on-property-read, GoogleAnalyticsObject) unreal4.cf##+js(abort-on-property-write, _client) unreal4.cf##+js(abort-on-property-read, _client) ||110380d053f716c4.com^* ||www.110380d053f716c4.com^* ||www.ucepogum.ml^* ||ucepogum.ml^* ||dormister.com^* ||www.dormister.com^* ||12dc71b7cb820f2a.com^* ||990b424f659e4e27.com^* ||cef5b491241aa0f3.com^* ||install.convertmyvid.com^* ||bumcapale.site^* ||www.bumcapale.site^* ||442d9f2ac50ca502.com^* ||2a12be6140880286.com^* ||areantaid.site^* ||www.areantaid.site^* ouou.io##span[id="msg-adblock"]:remove() ouou.io##span[class="msg-adblock"]:remove() ||ouo.io/ga/ga.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dsp-trk.eskimi.com^* ||cm.gammaplatform.com/adx/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tr.brand-display.com/tracking$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tr.brand-display.com^* ||brand-display.com^* ||hb.gammaplatform.com/adx/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adhitzads.com^* !||www.blogtraffic.de/track/track.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.blogtraffic.de/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.topblogs.de/tracker.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||herreperolsof.pro/popunder.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.larati.net/static/image/ad_top_bg2.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||media.adklick.net/banner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||media.adklick.net^* ||leadmonster.io/a/css/popup.css/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||player.vimeo.com/log/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fresnel.vimeocdn.com/add/player-stats?beacon=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.seaofads.com/Scripts/infinity.js.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.seaofads.com^* ||syndication.dynsrvtyu.com/cimp.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||keapeiros.xyz^* ||coinzillatag.com/lib/display.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||request-global.czilladx.com/serve/view.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||request-global.czilladx.com^* !||ad.bitmedia.io/js/adbybm.js/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.bitmedia.io^* !||partners.adklick.de/multiad.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||partners.adklick.de^* ||www.star-clicks.com/plugins/counter/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||godl.de/inc/w/show.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||mobile1141.wedyoulife111.live^* ||www.wedyoulife111.live^* ||wedyoulife111.live^* ||ladsblue.com^* ||track.special-promotions.online^* ||special-promotions.online^* ||www.special-offers.online^* ||www.sgycfrrkz.com^* ||sgycfrrkz.com^* ||www.ddfnykqqiexse.com^* ||ddfnykqqiexse.com^* ||a5e04df959f1af34.com^* ||www.a5e04df959f1af34.com^* ||us.y.atwola.com/adcount$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||brain.foresee.com/state/usbank/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||extract.btserve.com/log$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||extract.btserve.com/sync$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d5ssgc0nf5vml.cloudfront.net/bidthru.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vixejajywuwa.cf^* ||a2.consoletarget.com/ii/var/passion_bb_1.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ouo.io/images/nord.jpg$image ||ouo.io/images/b1.png$image ||ouo.io/images/b2.png$image ||qualigo.com/doks/iframe_banner.php$subdocument ||www.995db2642d3d852b.com^* ||995db2642d3d852b.com^* ||www.d824d7f5cbcb0e00.com^* ||d824d7f5cbcb0e00.com^* ||www.1b969cef84d93b43.com^* ||1b969cef84d93b43.com^* !||s96.cnzz.com/z_stat.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||media-sapiens.com/pu-placer.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||torvind.com/js/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||torvind.com^* !||mrelko.com/j/w.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||mrelko.com/j/s.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||mrelko.com/j/f.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||mrelko.com/c/oc.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mrelko.com^* !||jkhad.com/js/listen.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||jkhad.com^* ||t01.rbnt.org/rsc.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rbnt.org/rsc.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ufowheel.grand-casino.com^* !||send-notice.com/c/pop.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||send-notice.com/j/sd.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||send-notice.com^* ||www.b1g1w7wic0.com^* ||b1g1w7wic0.com^* ||qualigo.com/doks/ad.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.ay.gy/images/banners/adfly.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||openx.trellian.com/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||openx.trellian.com^* ||gf.wiretarget.com/aa_bb.htm$subdocument ||a1.consolebackup.com/!_lb.php$subdocument ||a1.consolebackup.com/!_bb.php$subdocument ||p21841.mycdn.co/ext/onn/mob/downw_mob_18x_en.png$image ||i.imgur.com/cMAxDsS.png$image ||i.imgur.com/fvnk6Rk.png$image ||adtrack1.club^* ||glasss.xyz^* ||9ehy8a8u6b.com^* ||trckcommerce.com^* ||salee.xyz/img/ad2.png$image ||salee.xyz/img/ad.png$image adshort.org##h3:remove() adshort.org##div.col-sm-4:nth-of-type(2) > p:remove() ||cnewvi.com^* !||a.exosrv.com/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.exosrv.com^* !||rtb.ero-advertising.com/openrtb/p_imp.go$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rtb.ero-advertising.com^* ||zap.buzz^* ||ouo.io/js/blockadblock.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||zy16eoat1w.com^* !||8ixrxa2tnr.com/pixel/purst$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||8ixrxa2tnr.com^* !||dw5zm8unyuna.info/advert.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||dwphl6ujiij6es.xyz/metrika/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dwphl6ujiij6es.xyz^* apk.suppor##div[class^="ad-box"]:remove() apk.suppor##div[class="advertisement"]:remove() apk.suppor##div[ins="adsbygoogle"]:remove() !||js.hsadspixel.net/fb.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||js.hsadspixel.net^* !||js.hsleadflows.net/leadflows.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||js.hsleadflows.net^* !||tracking.g2crowd.com/attribution_tracking/conversions/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tracking.g2crowd.com^* !||wx-analytics.cn-hongkong.log.aliyuncs.com/logstores/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||wx-analytics.cn-hongkong.log.aliyuncs.com^* ||*.log.aliyuncs.com^* ||downloadserver.club^* !||bdv.bidvertiser.com/BidVertiser.dbm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bdv.bidvertiser.com^* ||megastream.best^* ||ladsdown.com^* !||1.sethopser.com^* !||2.sethopser.com^* ||*.sethopser.com^* ||puslink.info^* !||tracktraf.com/click.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tracktraf.com^* ||zdnet2.cbsistatic.com/fly/bundles/zdnetjs/js/utils/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||asset1.cbsistatic.com/cnwk.1d/Ads/common/manta/adFunctionsD-cnet.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||asset1.cbsistatic.com/cnwk.1d/Ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||asset3.cbsistatic.com/cnwk.1d/html/rb/js/omniture/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||asset2.cbsistatic.com/cnwk.1d/html/rb/js/tron/Build/Classes/global/DW/Jlogger.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tr2.cbsistatic.com/fly/js/utils/advertisement-d41d8cd98f-rev.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tr2.cbsistatic.com/fly/js/utils/advertisement-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tr4.cbsistatic.com/fly/bundles/flyjs/js/managers/dw-tracking-1.0.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||mads.techrepublic.com/mac-ad$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mads.techrepublic.com^* ||bwp.techrepublic.com/search?ordinal=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||techrepublic.com.com/b.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.techrepublic.com/resource-library/rds/logevent$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.techrepublic.com/wp-content/themes/techrepublic-theme/js/tr-adv-ads-scripts.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.techrepublic.com##div[id="nav-ad"]:remove() www.techrepublic.com##div[data-advadstrackid]:remove() www.techrepublic.com##script[id="tr-ads-scripts-js"]:remove() www.techrepublic.com##+js(abort-on-property-write, advadsCfpQueue) www.techrepublic.com##+js(abort-on-property-read, advadsCfpQueue) www.techrepublic.com##+js(abort-on-property-write, advadsProCfp) www.techrepublic.com##+js(abort-on-property-read, advadsProCfp) www.techrepublic.com##+js(set-constant, advadsCfpAd, noopFunc) www.techrepublic.com##+js(set-constant, adID, "") ||www.sndgydifipxuui.com^* ||sndgydifipxuui.com^* ||www.rdrcgrpsakrtn.com^* ||rdrcgrpsakrtn.com^* ||www.hdcqfqnn.com^* ||hdcqfqnn.com^* www.ccn.com##div[class="i-amphtml-ad-default-holder"]:remove() www.ccn.com##div[class="GoogleActiveViewElement"]:remove() www.ccn.com##iframe[id="ad_iframe"]:remove() www.ccn.com##iframe[id^="google_ads_iframe_"]:remove() www.ccn.com##+js(abort-on-property-write, doubleclick) www.ccn.com##+js(abort-on-property-read, doubleclick) www.ccn.com##+js(abort-on-property-write, inMobileAdSdk) www.ccn.com##+js(abort-on-property-read, inMobileAdSdk) www.ccn.com##+js(abort-on-property-write, ad_container_id) www.ccn.com##+js(abort-on-property-read, ad_container_id) www.ccn.com##+js(abort-on-property-write, buildAdSlot) www.ccn.com##+js(abort-on-property-read, buildAdSlot) www.ccn.com##+js(abort-on-property-read, getAd) www.ccn.com##+js(abort-on-property-write, getAd) www.ccn.com##+js(abort-on-property-read, getAdsLength) www.ccn.com##+js(abort-on-property-write, getAdsLength) www.ccn.com##+js(abort-on-property-read, sendBeacon) www.ccn.com##+js(abort-on-property-write, sendBeacon) www.ccn.com##+js(abort-on-property-read, ad_iframe) www.ccn.com##+js(abort-on-property-write, ad_iframe) www.ccn.com##+js(abort-on-property-read, adsense-labs) www.ccn.com##+js(abort-on-property-write, adsense-labs) www.ccn.com##+js(abort-on-property-read, ad-request-start) www.ccn.com##+js(abort-on-property-write, ad-request-start) www.ccn.com##+js(abort-on-property-read, adrequeststart) www.ccn.com##+js(abort-on-property-write, adrequeststart) !www.ccn.com##+js(abort-on-property-read, googleRichMediaAd) !www.ccn.com##+js(abort-on-property-write, googleRichMediaAd) ||tpc.googlesyndication.com/sadbundle/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tpc.googlesyndication.com/pagead/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tpc.googlesyndication.com^$domain=forbes.com ||tpc.googlesyndication.com/sodar/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css gamejolt.com##div[class="bolt-ad-container"]:remove() gamejolt.com##div[class="bolt-ad-title"]:remove() ||ventax.net/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mvot.vn/url/mkt/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.ccn.com##.prev:remove() iddeas.xyz##.banner-468x60.banner:remove() ||iddeas.xyz/img/ad.png$image ||iddeas.xyz/img/ad2.png$image ||iddeas.xyz/img/ad4.png$image !||folladas.site/themes/default/player/plugins/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||folladas.site/themes/default/player/plugins/vast/ads-vast-vpaid.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||folladas.site/themes/default/js/Fingerprintjs2/fingerprint2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||folladas.site/themes/default/js/Fingerprintjs2/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||folladas.site/watch/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||folladas.site^* ||www.folladas.site^* ||dotherefores.info^* ||adshort.world/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adshort.org/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||shrtfly.net/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xml.popunder.bid^* ||volyze.com^* ||www.volyze.com^* ||www.ludovwmhazsx.com^* ||ludovwmhazsx.com^* ||www.fpkcggyczcvix.com^* ||fpkcggyczcvix.com^* ||notification-list.com^* ||exe.io/files/glasss.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css iddeas.xyz##div[class="alert alert-danger"]:remove() iddeas.xyz##ins[class="adsbygoogle"]:remove() iddeas.xyz##+js(set-constant, force_disable_adblock, 0) iddeas.xyz##+js(set-constant, cookie_notification_bar, false) iddeas.xyz##+js(abort-on-property-write, skip_ad) iddeas.xyz##+js(abort-on-property-read, skip_ad) !||iddeas.xyz/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||iddeas.xyz/vendor/clipboard.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ac-mo.com##+js(abort-current-script, adBlockClose) ac-mo.com##+js(abort-current-script, adBlockDetected) ac-mo.com##+js(abort-current-script, NativeAd) ac-mo.com##+js(abort-on-property-read, fuckAdBlock) ac-mo.com##+js(abort-on-property-write, fuckAdBlock) ac-mo.com##+js(abort-on-property-read, importFAB) ac-mo.com##+js(abort-on-property-write, importFAB) ac-mo.com##+js(abort-on-property-read, adsByPosition) ac-mo.com##+js(abort-on-property-write, adsByPosition) ac-mo.com##+js(abort-on-property-read, rn_ad_native_ttqal) ac-mo.com##+js(abort-on-property-write, rn_ad_native_ttqal) ac-mo.com##+js(abort-on-property-read, ad_idzone) ac-mo.com##+js(abort-on-property-write, ad_idzone) ac-mo.com##+js(abort-on-property-read, ad_width) ac-mo.com##+js(abort-on-property-write, ad_width) ac-mo.com##+js(abort-on-property-read, ad_height) ac-mo.com##+js(abort-on-property-write, ad_height) ac-mo.com##+js(abort-on-property-read, adConfig) ac-mo.com##+js(abort-on-property-write, adConfig) ac-mo.com##div[id="WgD"]:remove() !||ac-mo.com/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdnjs.cloudflare.com/ajax/libs/fuckadblock/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pushnevis.com/ntfc.php/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c.lazada.vn^* ||www.h3lw971ym6.com^* ||h3lw971ym6.com^* !||han69.admedit.net^* ||yakigen.online^* ||6moxhf9rmm.com^* ||badshades.com^* ||www.badshades.com^* ||delivery.yomedia.vn^* !||mvot.vn/url/mkt/728x90_2.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css techofaqs.com##.banner-468x60.banner:remove() ||techofaqs.com/img/ad.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||techofaqs.com/img/ad4.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.thedoctopdf.com^* ||datastore.thedoctopdf.com^* ||thedoctopdf.com^* ||tracking.dating-clicks.com^* ||visit.polar-track.com^* !||adshort.org/vendor/clipboard.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css adshort.org##+js(set-constant, counter_value, 0) adshort.org##+js(set-constant, force_disable_adblock, 0) adshort.org##+js(set-constant, cookie_notification_bar, false) freevideotutorialsus.com##+js(abort-on-property-write, adsbygoogle) freevideotutorialsus.com##+js(abort-on-property-read, adsbygoogle) freevideotutorialsus.com##+js(abort-on-property-write, enable_page_level_ads) freevideotutorialsus.com##+js(abort-on-property-read, enable_page_level_ads) freevideotutorialsus.com##+js(set-constant, enable_page_level_ads, false) freevideotutorialsus.com##div[id="babasbmsgx"]:remove() freevideotutorialsus.com##ins[class="adsbygoogle"]:remove() www.ftuudemy.com##+js(abort-on-property-write, adsbygoogle) www.ftuudemy.com##+js(abort-on-property-read, adsbygoogle) www.ftuudemy.com##+js(abort-on-property-write, enable_page_level_ads) www.ftuudemy.com##+js(abort-on-property-read, enable_page_level_ads) www.ftuudemy.com##+js(set-constant, enable_page_level_ads, false) www.ftuudemy.com##div[id="babasbmsgx"]:remove() www.ftuudemy.com##ins[class="adsbygoogle"]:remove() ||itteholm.site^* ||boacheeb.com^* ||upload4earn.org/DownloadNow_files/saved_resource.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||upload4earn.org/DownloadNow_files/zrt_lookup.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||kt5850pjz0.com^* ||www.installflash-s3.com^* ||installflash-s3.com^* ||tpc.googlesyndication.com/simgad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||oimcowiemc.host^* !||collecting.click/piwik.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||collecting.click^* !||af5.club/tuname.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||af5.club^* ||cdn.af5.club^* ||0wnpr0m0.com^* !||giftzs.xyz/file/search.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||giftzs.xyz^* ||neonoticon1986.getsoft2015.com^* ||api.github.com/_private/browser/stats/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.hiapkdownload.com##ins[class="adsbygoogle"]:remove() www.hiapkdownload.com##+js(abort-on-property-write, loadContentOfAdSlot) www.hiapkdownload.com##+js(abort-on-property-read, adsbygoogle) ||www.ampugi334f.com^* ||www.8s32e590un.com^* !||archive.org/components/npm/clipboard/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bordeaux-gateway.futurenet.com/api/ui/metrics$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||assets.bounceexchange.com/assets/uploads/clients/2825/creatives/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||assets.bounceexchange.com/assets/uploads/clients/*/creatives/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||user-sync.adhese.com/iframe/user_sync.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||user-sync.adhese.com^* ||funtomic-d.openx.net^* ||lps.innogamescdn.com/media/js/metrics-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads-orangegames.adhese.com^* ||plarium.com/landings/api/analytics$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tracking.plinga.de^* ||cdn15.acloudimages.com/3ac/48e/797/mc_na_09.07.2018_300x250_13_en.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ouo.io##a.dlbtns:remove() ||katie.trktnc.com^* ||techbeast.xyz/img/ad4.png$image ||techbeast.xyz/img/ad3.png$image ||techbeast.xyz/img/ad2.png$image ||techbeast.xyz/img/ad.png$image techbeast.xyz##.banner-468x60.banner:remove() ||ads.servenobid.com^* !||tagan.adlightning.com/digitaltrends/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tagan.adlightning.com/freestar/op.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tagan.adlightning.com/grvmedia/op.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tagan.adlightning.com/valnet/op.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tagan.adlightning.com^* ||voxc.org/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s3.amazonaws.com/heartbeat.pmc.com/track$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s3.amazonaws.com/heartbeat.pmc.com$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads2.servebom.com^* ||jwplayer.eb.tremorhub.com/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||siteeuwest.slgnt.eu/track$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||onclicktop.com^* !||mobile0809.nonamenba78.live^* !||www.nonamenba78.live^* !||nonamenba78.live^* ||*.nonamenba78.live^* digitechnews.net###pa-push-notification-subscription:remove() ||www.secretvideos2020.com^* ||bestgamesvault.com^* freeeducationsite.com##.theiaStickySidebar:remove() ifreecourses.com###secondary:remove() ifreecourses.com##.litespeed-loaded:remove() download-software.ru##+js(abort-on-property-write, Ya.Metrik) download-software.ru##+js(abort-on-property-read, Ya.Metrik) download-software.ru##+js(abort-on-property-write, _gaq) download-software.ru##+js(abort-on-property-read, _gaq) !||download-software.ru/images/_yandex/yandex-browser-728x90.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||download-software.ru/images/_yandex/yandex-browser-2018_240x400.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||download-software.ru/images/_yandex/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||aliadvert.ru/tapocheknet$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||aliadvert.ru^* tapochek.net##+js(abort-on-property-write, _0x7c4d) tapochek.net##+js(abort-on-property-read, _0x7c4d) ||datacygnal.io^* ||bcm-d.openx.net^* ||saambaa.com^* !||cdn.stat-rock.com/v1/log/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.stat-rock.com/v1/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.stat-rock.com^* ||api.saambaa.com^* ||events.avantisvideo.com/ad_error/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cml5egriskie.xyz^* ||promobi-shield.eu^* ||blindferret.156th.com^* ||protomobidefence.com^* ||cleverusenet.club^* ||d3vt8rc0zlnpri.cloudfront.net^* ||multinews.me^* ||50analytics.secureserver.net^* ||www.pingclock.net^* ||pingclock.net^* ||www.adnotbad.com^* ||adnotbad.com^* ||appsourceclon.com^* ||brounelink.com^* ||browfileext.com^* ||captiontxt.com^* ||clickgrandsrc.com^* ||coolpagecup.com^* ||cosmeticsrc.com^* ||extgolinktype.com^* ||ge0ip.org^* ||higedev.cool^* ||highmakeext.com^* ||imperialback.com^* ||longsrc.com^* ||loudsjack.com^* ||masyclick.com^* ||mixappdev.com^* ||profflinkgo.com^* ||progdevext.com^* ||promappdev.com^* ||renetteapp.com^* ||scrextdow.com^* ||slickfluide.com^* ||sourceapp.cool^* ||sourseadd.com^* ||srctops.com^* ||takethatad.com^* ||targetkbank.com^* ||workapplink.com^* ||workdevapp.com^* ||www.appsourceclon.com^* ||www.brounelink.com^* ||www.browfileext.com^* ||www.captiontxt.com^* ||www.clickgrandsrc.com^* ||www.coolpagecup.com^* ||www.cosmeticsrc.com^* ||www.extgolinktype.com^* ||www.ge0ip.org^* ||www.higedev.cool^* ||www.highmakeext.com^* ||www.imperialback.com^* ||www.longsrc.com^* ||www.loudsjack.com^* ||www.masyclick.com^* ||www.mixappdev.com^* ||www.profflinkgo.com^* ||www.progdevext.com^* ||www.promappdev.com^* ||www.renetteapp.com^* ||www.scrextdow.com^* ||www.slickfluide.com^* ||www.sourceapp.cool^* ||www.sourseadd.com^* ||www.srctops.com^* ||www.takethatad.com^* ||www.targetkbank.com^* ||www.workapplink.com^* ||www.workdevapp.com^* www.legendsworld.net##+js(abort-on-property-write, document.onmousedown) www.legendsworld.net##+js(abort-on-property-read, document.onmousedown) www.legendsworld.net##+js(abort-current-script, document.onmousedown) !www.legendsworld.net##+js(abort-current-script, eval) !www.legendsworld.net##+js(abort-current-script, unescape) docgod.com##.banner-captcha.banner:remove() ||www.imaginative.com.my/pcgames/buy-malaysia.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.sstunnectedothere.info^* ||sstunnectedothere.info^* ||www.barerconsenma.info^* ||barerconsenma.info^* ||www.culumunderbianwa.info^* ||www.htopensationclie.info^* ||culumunderbianwa.info^* ||htopensationclie.info^* ||www.beeashale.club^* ||beeashale.club^* ||d1r90st78epsag.cloudfront.net^* ||www.badslopes.com^* ||badslopes.com^* ||d1qggq1at2gusn.cloudfront.net^* ||www.itunessecurityusersid.com^* ||itunessecurityusersid.com^* ||lv.adocean.pl^* ||www.klljshial.com^* ||klljshial.com^* ||count.romwe.com^* ||i5iog3mlrw.com^* gamewii.net##+js(abort-on-property-write, zfgloadednative) gamewii.net##+js(abort-on-property-read, zfgloadednative) gamewii.net##+js(abort-current-script, zfgloadednative) ||e2.extreme-dm.com^* m.allfreeapk.com##._zuoxxtv:remove() ||n.naylo.top/torrent.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css n.naylo.top###__BannerId:remove() ||www.loders.club^* ||loders.club^* ||key-collector.f1h.ru^* ||plugins.f1h.ru^* ||www.thelotterystop.com^* ||thelotterystop.com^* ||banner2.kisspng.com^* ||www.88pt88download.com^* ||88pt88download.com^* !||o7f2hmf6-4db54bff64e96c5758256b9cb7f1c931377a0b33-sac.d.aa.online-metrix.net^* ||smetrics.discover.com^* !||tempest.services.disqus.com/ads-iframe/taboola/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tempest.services.disqus.com/ads-iframe/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css techsapparel.com###cookie-pop:remove() techsapparel.com##.banner-336x280.banner:remove() techsapparel.com##.banner-468x60.banner:remove() xtechstar.com###quads-ad3:remove() voxc.org###cookie-pop:remove() ||a-ads.com^* ||techsapparel.com/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adshort.club/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adshort.club/vendor/clipboard.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adshort.club/vendor/owl/owl.carousel.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||si.sftcdn.net/statics/ads.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||simonsignal.com/events/v1/collect$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||i4rsrcj6.top^* ||exe.io/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||exe.io/vendor/clipboard.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||kingassfuck.com^* ||llahnch259.com^* ||jootizud.net^* ||waincominance.info^* ||www.lcryooiliokm.com^* ||lcryooiliokm.com^* ||www.wiewsulznyncf.com^* ||wiewsulznyncf.com^* ||s.4pda.to/wLHw2qnwkb1TxTK7WoJjkZfB8Sz04geUjXPbZ6FtrJkG4erb1VwtiHmUg.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||supportantcere.info^* ||portantreadedagree.info^* ||rutrk.org/240x400/191001_01_ALL.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rutrk.org/800x160/191025_02.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css rutracker.org##div[id="bn-page-bottom-block"]:remove() ||www.jkushhov.com^* ||jkushhov.com^* www.france24.com##.m-interstitial__ad:remove() ||www.izbxxwogfufnfi.com^* ||izbxxwogfufnfi.com^* yekupload.ir###sabavision_light_box_shadow:remove() yekupload.ir##.cc-color-override-688238583.cc-bottom.cc-theme-classic.cc-type-info.cc-banner.cc-window:remove() yekupload.ir##.metaRedirectWrapperTopAds:remove() yekupload.ir###sabavision_zone_1075-Z242_plate:remove() yekupload.ir##.metaRedirectWrapperBottomAds:remove() ||mostatil.yektanet.com/media/300-250_Xivatcx_b04TPk1.gif$image salamdl.co##div[id="sidebar_ad"]:remove() salamdl.co##div[id="footer_ad"]:remove() ||www.beqkxrcgjfnc.com^* ||beqkxrcgjfnc.com^* x265movies.co##+js(abort-on-property-write, popundersPerIP) x265movies.co##+js(abort-on-property-read, popundersPerIP) salamdl.co##div[id="sabaVisionZoneBox"]:remove() salamdl.co##div[class="sabaVisionZoneBoxContentBox"]:remove() salamdl.co##div[id^="native_iframe_"]:remove() salamdl.co##div[class^="native_iframe_"]:remove() salamdl.co##div[id="iframe_ad_box"]:remove() salamdl.co##div[class="iframe_ad_box"]:remove() ||salamdl.co/tag/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.cdn.asset.aparat.com/vision-file/4d0d92f6-517b-40c0-ab5c-d952e97d0920.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css salamdl.co##div[class="sabavision_zone_box"]:remove() ||happy.superlucky.xyz^* ||xn--17921-iua.biz^* ||www.zjiktkmjyo.com^* ||zjiktkmjyo.com^* ||ampugi334f.com^* ||spolecznosci-d.openx.net^* ||s.spolecznosci.net^* ||a.spolecznosci.net^* !||spolecznosci.net/js/modules/a.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||spolecznosci.net/js/modules/app.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||spolecznosci.net/js/modules/au.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||spolecznosci.net/js/modules/hb.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||spolecznosci.net/js/modules/pcs.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||spolecznosci.net/js/modules/pp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||spolecznosci.net/js/modules/pr.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||spolecznosci.net/js/modules/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||spolecznosci.net/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||spolecznosci.mgr.consensu.org/js/cmp.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||spolecznosci.mgr.consensu.org/js/cmp.stable.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||spolecznosci.mgr.consensu.org/portal.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||spolecznosci.mgr.consensu.org^* ||7713gsefc0.com^* !||play.lzrikate.com/red/zone.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||play.lzrikate.com/red/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||img.lzrikate.com/ads/lz_loader.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||img.lzrikate.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||img.lzrikate.com^* ||pl15228345.passeura.com^* multifilemirror.com##+js(abort-current-script, adBlockDetected) multifilemirror.com##+js(abort-current-script, lz_loadads) multifilemirror.com##+js(abort-on-property-read, lz_target) multifilemirror.com##+js(abort-on-property-read, reklamstore_ad_type) multifilemirror.com##+js(abort-on-property-read, reklamstore_region_id) multifilemirror.com##+js(abort-on-property-write, lz_target) multifilemirror.com##+js(abort-on-property-write, reklamstore_ad_type) multifilemirror.com##+js(abort-on-property-write, reklamstore_region_id) multifilemirror.com##+js(set-constant, adBlockNotDetected, true) multifilemirror.com##+js(set-constant, blockAdBlock, false) multifilemirror.com##+js(abort-on-property-write, Placement_type) multifilemirror.com##+js(abort-on-property-read, Placement_type) multifilemirror.com##+js(abort-on-property-write, googletag) multifilemirror.com##+js(abort-on-property-read, googletag) multifilemirror.com##.fanxwhmgy0cu:remove() multifilemirror.com##div[class*="adContainer"]:remove() !multifilemirror.com##div[class="adContainer"]:remove() multifilemirror.com##div[class="auteosd4ewab"]:remove() multifilemirror.com##div[class="noticeContainer"]:remove() multifilemirror.com##div[class="shhiey9s1x7v"]:remove() multifilemirror.com##div[id^="ads_"]:remove() multifilemirror.com##div[id^="gpt-passback-stpd-"]:remove() ||tswmel.com/v1/sdk.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tswmel.com/ls/ufp2.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||215kd.slimsk.pro^* !||3h1gr.slimsk.pro^* ||slimsk.pro^* ||5kv261gjmq04c9.com^* ||dc.services.visualstudio.com/v2/track$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cinemark.evergage.com^* ||vltwox7zl7h1wv.com^* ||padsecs.com^* ||a.gorlalaite.com^* ||www.refersion.com/tracker/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||play9164.nonametjok63.live^* ||*.nonametjok63.live^* ||www.retailmenot.com/tng/_next/static/chunks/logger.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||retailmenot-d.openx.net^* ||mediadojo-d.openx.net^* ||s2s.aniview.com/api/adserver/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||track.vdo.ai/pixel.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||track.vdo.ai^* ||pixel.adtelligent.com^* ||s.adtelligent.com^* !||ads36.vertamedia.com^* !||ads28.vertamedia.com^* ||ads*.vertamedia.com^* !||aux-log2-sh.vertamedia.com/campaign/request$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||aux-log2-sh.vertamedia.com/campaign/error$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||aux-log2-sh.vertamedia.com^* ||aux-log.adtelligent.com^* ||k.goproad.com^* ||sdk.goproad.com^* ||ssp.lkqd.net/ad^* ||www.lethealthcare.com^* ||lethealthcare.com^* ||inpagepush.com^* !||nativeadmatch.com/code/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nativeadmatch.com^* ||logger.invoke.vision^* ||www.madcpms.com^* ||www.dmba.cn/images/3104103.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.dmba.cn/images/132636.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.dmba.cn/images/8203613.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.dmba.cn/images/2135003.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.freewarefiles.com##.dG1Ln-2i-1-:remove() ||lp.powerapp.download^* ||powerapp.download^* ||thoudroa.net^* ||blacurlik.com^* ||alz-d.openx.net^* reviews.thewindowsclub.com##.adtester-container-183.adtester-container.large-leaderboard-1.ezoic-ad:remove() ||viatepigan.com^* ||d1ks8roequxbwa.cloudfront.net^* ||6631f33cf2a1032b.com^* ||e376ef28103177cc.com^* ||6066bd8aab9d73e3.com^* ||track.tkbo.com^* ||track.traffic.club^* ||trafficclub-nde.netdna-ssl.com^* ||protect-url.net/banner_ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.traffic.club^* ||px.adhigh.net^* ||relap.io/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||anyinstalldealtheclicks.icu^* ||www.draulinehandon.info^* ||draulinehandon.info^* ||ddvfoj5yrl2oi.cloudfront.net^* ||www.ommunalspound.info^* ||ommunalspound.info^* ||www.ristintriestenforth.info^* ||ristintriestenforth.info^* ||www.musicmee.com^* ||www.55eqv.com^* ||www.00jvq.com^* ||www.ellcurvth.com^* ||www.ichecknotifyfriends.info^* ||musicmee.com^* ||55eqv.com^* ||00jvq.com^* ||ellcurvth.com^* ||ichecknotifyfriends.info^* upload.ac##+js(abort-current-script, adblockinfo) upload.ac##+js(abort-current-script, adsBox) upload.ac##+js(abort-current-script, adsbygoogle) upload.ac##+js(abort-current-script, bannerad) upload.ac##+js(abort-current-script, clipboard) upload.ac##+js(abort-on-property-read, adblockinfo) upload.ac##+js(abort-on-property-read, adsBox) upload.ac##+js(abort-on-property-read, adsbygoogle) upload.ac##+js(abort-on-property-read, bannerad) upload.ac##+js(abort-on-property-read, clipboard) upload.ac##div[id="adblockinfo"]:remove() upload.ac##ins[class="adsbygoogle"]:remove() ||upload.ac/hg/js/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||upload.ac/hg/js/clipboard.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||upload.ac/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||upload.ac/push-wrap.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css upload.ac##.btn-dl-plus:remove() ||www.usinesmycete.info^* ||usinesmycete.info^* ||dj3ce626jq2zi.cloudfront.net^* ||geethoap.com^* ||unhappingcon.info^* ||syncgreatlyrenewedproduct.icu^* ||d3hs51abvkuanv.cloudfront.net^* ||ationmultinal.info^* ||psecurzoicompa.info^* ||sociatedcounte.info^* ||doxurgeoisuniv.info^* !||metrics-prod.barclaycardus.com/eumcollector/beacons/browser/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||metrics-prod.barclaycardus.com^* greasyfork.org##.cf-wrapper:remove() !||vanilla.futurecdn.net/techradar/155679/media/shared/js/onesignal.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vanilla.futurecdn.net/*/*/media/shared/js/onesignal.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||vanilla.futurecdn.net/5gradar/cookieconsent.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||vanilla.futurecdn.net/windowscentral/media/shared/js/jwplayer-analytics.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vanilla.futurecdn.net/*/cookieconsent.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vanilla.futurecdn.net/*/media/shared/js/jwplayer-analytics.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||vanilla.futurecdn.net/techradar/media/shared/js/slide-analytics.$script ||vanilla.futurecdn.net/*/media/shared/js/slide-analytics.$script !||d3du2k8g1u832i.cloudfront.net/techradar/media/shared/js/slide-analytics.$script ||d3du2k8g1u832i.cloudfront.net/*/media/shared/js/slide-analytics.$script !||vanilla.futurecdn.net/*/*/media/shared/js/main.*.bundle.js$replace=/window\.bordeaux\.getExperimentId\(\);/null;/gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||d3du2k8g1u832i.cloudfront.net/*/*/media/shared/js/main.*.bundle.js$replace=/window\.bordeaux\.getExperimentId\(\);/null;/gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css /^https?:\/\/(?:vanilla\.futurecdn\.net|[a-zA-Z\d]+\.cloudfront\.net)\/\w+\/\d+\/media\/shared\/js\/main\.[a-zA-Z\d]+\.bundle\.js/$replace=/window\.bordeaux\.getExperimentId\(\);/null;/gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css /^https?:\/\/(?:vanilla\.futurecdn\.net|[a-zA-Z\d]+\.cloudfront\.net)\/\w+\/\d+\/media\/shared\/js\/main\.[a-zA-Z\d]+\.bundle\.js/$replace=/void 0:window\.bordeaux/void 0:void 0/gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||q6sehz699a.top/pixel/purst$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||q6sehz699a.top/pixel/pure$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||q6sehz699a.top^* ||synccurrentheavilyproduct.icu^* ||ypaletdevelspe.info^* !||firebaselogging.googleapis.com/v0cc/log$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||firebaselogging.googleapis.com^* ||hoawhaum.net^* ||coctisingudg.info^* ||terttalkinhitin.pro^* ||seriorladded.info^* ||kalilabagon.win^* www.pennlive.com##div[class*="ad--in-article"]:remove() www.pennlive.com##div[class="ad--sponsor-content"]:remove() www.pennlive.com##div[class*="ad--topRail-Below-Flex"]:remove() www.pennlive.com##div[class*="ads--no-preload"]:remove() www.pennlive.com###below-toprail:remove() ulozto.net###freeDownloadAd:remove() ulozto.net###mask:remove() ||otnolatrnup.com^* ||www.getflash-now.com^* ||getflash-now.com^* ||distinethout.info^* ||d141wsrw9m4as6.cloudfront.net^* ||ulrementpati.info^* ||ackgroupsevention.info^* www.auslogics.com##.b-cookie-policy:remove() www.heaventools.com##.cc-color-override-688238583.cc-top.cc-theme-block.cc-type-info.cc-banner.cc-window:remove() www.digitalcitizen.life###eu-cookies-consent:remove() ||www.sdbeta.com/images/qunyingyun.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.sdbeta.com/images/xianggangyun.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css uloz.to##div[class="adDetail"]:remove() uloz.to##div[class^="js-advert"]:remove() uloz.to##iframe[class="adFrame"]:remove() chomikuj.pl###acceptChomikujTermsContainer:remove() chomikuj.pl###acceptChomikujTermsOverlay:remove() marcosfranciscodesouza.blogspot.com##div[id="BiggaponArUpore"]:remove() www.armaanpc.com##.code-block-2.code-block > div > .user.button-red:remove() www.armaanpc.com##.code-block-3.code-block > div > button.user.button-red:nth-of-type(1):remove() www.armaanpc.com##button.user.button-red:nth-of-type(2):remove() www.armaanpc.com##.code-block-1.code-block > div > .user.button-red:remove() ||www.bjuodbdjluix.com^* ||bjuodbdjluix.com^* ||www.kmmtxuxow.com^* ||kmmtxuxow.com^* !||crm.platformbot.xyz/partners/pcportal/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||crm.platformbot.xyz^* www.nccgroup.trust##.cookie__reveal.cookie__consent:remove() www.mirinsoft.com###easycookieinfo:remove() ||stats.mainroll.com^* ||nnmclub.ch/forum/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||local.adguard.org^* ||octclck.xyz^* ||www.videodownloaderapp.co^* ||videodownloaderapp.co^* ||www.lcaiwpcktosp.com^* ||lcaiwpcktosp.com^* uploadev.org##ins[class="adsbygoogle"]:remove() ||www.burbibape.com^* ||burbibape.com^* free4pc.org##div:nth-of-type(2) > .user.button-red:remove() free4pc.org##.user.button-black:remove() free4pc.org##.user.button-green:remove() ||www.amparcaim.club^* ||amparcaim.club^* ||www.muzjpkel.com^* ||muzjpkel.com^* ||fxs8o.rdtk.io^* ||cweiwoydalr.com^* ||www.cweiwoydalr.com^* upload.ac##.eww:remove() ||composivel.pro^* ||cdn.jsdelivr.net/gh/johnroy-ui/up@master/download_cloud.gif$image ||cdn.jsdelivr.net/gh/johnroy-ui/up@master/download.gif$image ||wassevertorshap.pro^* ||userscloud.helpscoutdocs.com^* !userscloud.com###my_div:remove() !removes download link userscloud.com###content > .st-content > .st-content-inner > .container > .text-center.panel-default.panel > .innerTB > center > .btn-icon-stacked.btn-white.btn:remove() userscloud.com##a[href^="http://jobsetter.info/useranan"]:remove() userscloud.com##a[href^="http://websitedhoome.com/useranan/"]:remove() userscloud.com##a[href^="http://outlookreservebennet.com/"]:remove() userscloud.com##.alert-success.alert:remove() !userscloud.com##div[class="adsbox"]:remove() userscloud.com##div[class^="glx-teaser-"]:remove() userscloud.com##div[id="adblock_detected_warning"]:remove() userscloud.com##div[id="banner"]:remove() userscloud.com##input[id="adblock_detected"]:remove() userscloud.com##input[name="adblock_detected"]:remove() userscloud.com###btn_download:remove-attr(disabled) userscloud.com##button[id="btn_download"]:style(display:block !important;) userscloud.com##iframe[style="display: none;"]:remove() userscloud.com##^script:has-text(/astancerta\.fun|esusivebe\.top|dtv5loup63fac\.cloudfront\.net/):remove() userscloud.com##+js(remove-node-text, script, /astancerta\.fun|esusivebe\.top|dtv5loup63fac\.cloudfront\.net/gm) !userscloud.com##script[type="36a936178ecce1dd77e68197-text/javascript"]:remove() userscloud.com##+js(set-constant, window.__cfRLUnblockHandlers, true, stay) userscloud.com##+js(acs, decodeURIComponent) userscloud.com##+js(acs, console.clear) !userscloud.com##+js(acs, /console\.clear\(\);/) userscloud.com##+js(aopr, FingerprintJS) userscloud.com##+js(aopw, FingerprintJS) userscloud.com##:xpath(//script[contains(text(), 'VG8gY29udGludWUgd2F0Y2hpbmcgcHJlc3MgIkFsbG93Ig==')]):remove() userscloud.com##^script:has-text(VG8gY29udGludWUgd2F0Y2hpbmcgcHJlc3MgIkFsbG93Ig==):remove() userscloud.com##+js(remove-node-text, script, /VG8gY29udGludWUgd2F0Y2hpbmcgcHJlc3MgIkFsbG93Ig==/gm) userscloud.com##+js(acs, VG8gY29udGludWUgd2F0Y2hpbmcgcHJlc3MgIkFsbG93Ig==) ! TODO: The following rules with cosmetic filters are most likely randomly generated. userscloud.com###gXHq5xUuwGWkJVFh:remove() userscloud.com##a[id="lkfd4"]:remove() userscloud.com##div[id="gk7FroDRjMsV6rJF"]:remove() userscloud.com##div[id="fhlruh2"]:remove() userscloud.com###div-1507717209618:remove() userscloud.com###p_1991296:remove() ||userscloud.com//images/300x250d.png$image ||userscloud.com/fuckadblock.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||userscloud.com/i/dlnitro.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||userscloud.com/i/nitro.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||userscloud.com/images/banner_300x250.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||userscloud.com/images/download-button.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||userscloud.com/js/de.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||userscloud.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||install.tinychill.com^* ||www.tinychill.com^* ||tinychill.com^* ||www.aptashant.club^* ||aptashant.club^* ||boyaidare.club^* ||www.boyaidare.club^* ||services.bilsyndication.com/adv1/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||biltag.bilsyndication.com/jsv1/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||biltag.bilsyndication.com^* ||logs.bilsyndication.com^* ||filesupload.org/themes/flow/js/cookieconsent.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||newscoder7.com^* ||gz06x5tqlj.com^* ||fadsoks.com^* !||jsc.adskeeper.co.uk/r/l/rlslog.net.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||jsc.adskeeper.co.uk^* ||contehos.com^* ||www.contehos.com^* ||grensauy.com^* ||joorejou.net^* *##[href*="postlnk.com"]:remove() !||static.t-ru.org/pic/vpn/NordVPN-Gift-2020-bn-4.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.t-ru.org/pic/vpn/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.admitad-connect.com^* ||yandex-metrica.ru^* !||welldanius.com/js/sync?visitor_id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||welldanius.com^* ||vk.com/js/cmodules/web/ads_light.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vk.com/js/cmodules/sw/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||trendentrium.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rgmechanics.site/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dl.gmx.com/uim/bidding/consent.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rgmechanics.site/uploads/Dinero.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.bestchange.ru/images/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css rgmechanics.site##[href^="https://welldanius.com/push/xcl"]:remove() ||cdn.jsdelivr.net/gh/johnroy-ui/up@master/download.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||padspmz.com^* ||ylx-aff.advertica-cdn.com^* !||cdn.trafficbee.com/tags/downace.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.trafficbee.com^* !||terrapsps.com/t/9/fret/meow4/1585094/brt.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||terrapsps.com^* ||dc5k8fg5ioc8s.cloudfront.net^* uploadbuzz.cc##div[class="adbutton"]:remove() ||mirafaren.pw^* ||passeura.com^* !||pl15180657.passeura.com^* ||944e66f8683ac43c.com^* ||liddenlywilli.pro^* ||d3hj4iyx6t1waz.cloudfront.net^* ||societingna.info^* ||8bef5bb6b351ca5e.com^* ||wwwyoutube.com^* ||www.youtuybe.com^* !us8.proxy-youtube.com##.bounceInDown.animated.btn:remove() proxy-youtube.com##.bounceInDown.animated.btn:remove() !www.youtube.com###ad_creative_1.ad-div.mastad:remove() !www.youtube.com###results > .pyv-afc-mute.yt-section-hover-container.spf-nolink.pyv-afc-ads-container > .pyv-afc-ads-inner > div:nth-of-type(3) > .yt-lockup-tile.yt-lockup-video.yt-uix-tile.clearfix.yt-lockup:remove() !www.youtube.com##.ad-container-single-media-element-annotations:remove() !www.youtube.com##.ad-created:remove() !www.youtube.com##.ad-interrupting:remove() !www.youtube.com##.ad-showing:remove() !www.youtube.com##.branded-page-box:remove() !www.youtube.com##.ytd-player.style-scope:remove() !www.youtube.com##.ytp-ad-display-override:remove() !www.youtube.com##.ytp-ad-overlay-closed:remove() !www.youtube.com##.ytp-error-content-wrap-reason:remove() !www.youtube.com##.ytp-error-content-wrap:remove() !www.youtube.com##.ytp-error-content:remove() !www.youtube.com##.ytp-error:remove() www.youtube.com###ad_creative_1:remove() www.youtube.com##html:style(overflow:scroll !important; left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100vw !important; width: 100vw !important; max-height: 100vh !important; height: 100vh !important; user-select: all !important; pointer-events: all !important;) www.youtube.com###merch-shelf:remove() www.youtube.com###movie_player > .html5-video-container > .html5-stop-propagation.video-ads:remove() www.youtube.com###movie_player.ytp-ad-display-override.ad-interrupting.ad-showing.ytp-ad-overlay-closed.ad-created:remove() www.youtube.com###player-ads:remove() www.youtube.com###premium-yva:remove() www.youtube.com###results > .pyv-afc-mute.yt-section-hover-container.spf-nolink.pyv-afc-ads-container:remove() www.youtube.com###video-masthead:remove() www.youtube.com##*[class^="ad-container"]:remove() www.youtube.com##*[class^="ytp-error"]:remove() www.youtube.com##.ad-overlay:remove() www.youtube.com##.opened:remove() www.youtube.com##.premium-yva-:remove() www.youtube.com##.ytd-merch-shelf-renderer:remove() www.youtube.com##.ytp-ad-module.video-ads:remove() www.youtube.com##ad-badge-view-model:remove() www.youtube.com##ad-details-line-view-model:remove() www.youtube.com##badge-shape[class*="shape-wiz--ads"]:remove() www.youtube.com##div[class$="ytd-video-masthead-ad-advertiser-info-renderer"]:remove() www.youtube.com##div[class*="ytd-display-ad-renderer"]:remove() www.youtube.com##div[class*="ytd-promoted-sparkles-web-renderer"]:remove() www.youtube.com##div[class*="ytd-promoted-video-renderer"]:remove() www.youtube.com##div[class*="ytd-video-masthead-ad-primary-video-renderer"]:remove() www.youtube.com##div[id="rendering-content"][class*="ytd-in-feed-ad-layout-renderer"]:remove() www.youtube.com##div[id="banner-spacer"]:remove() www.youtube.com##div[id="masthead-ad"]:remove() www.youtube.com##div[id="show-ad"]:remove() www.youtube.com##div[id^="ad-badge"]:remove() www.youtube.com##div[id^="ad_creative_expand_btn"]:remove() www.youtube.com##dom-if[class$="ytd-video-masthead-ad-v3-renderer"]:remove() www.youtube.com##iframe[class$="ytd-video-masthead-ad-primary-video-renderer"]:remove() www.youtube.com##ytd-compact-promoted-video-renderer[class*="ytd-in-feed-ad-layout-renderer"]:remove() www.youtube.com##ytd-display-ad-renderer:remove() www.youtube.com##div[id="ads-info-button"]:remove() ! The following removes the blue "context" box from some videos. www.youtube.com##ytd-info-panel-container-renderer[background="BLUE"]:remove() www.youtube.com##ytd-thumbnail[class$="ytd-video-masthead-ad-v3-renderer"]:remove() ! +js(json-prune, , ) youtube.com##+js(json-prune, adPlacements) www.youtube.com##+js(set-constant, AD_BLOCK, 0, stay) www.youtube.com##+js(set-constant, a.displayAdBlocks_, null, stay) www.youtube.com##+js(set-constant, a.videoInstreamAdBlocks_, null, stay) www.youtube.com##+js(set-constant, chain, '', stay) www.youtube.com##+js(set-constant, f.adblock, 0, stay) www.youtube.com##+js(set-constant, this.adBlockId, 0, stay) www.youtube.com##+js(set-constant, this.displayAdBlocks_, [], stay) www.youtube.com##+js(set-constant, this.videoInstreamAdBlocks_, [], stay) www.youtube.com##+js(set-constant, window.google_ad_status, 1, stay) ! stops all settimeout functions @ youtube; also breaks youtube completely !www.youtube.com##+js(no-setTimeout-if, /^/) !www.youtube.com##+js(set-constant, ytcsi, {}) !breaks youtube completely ! Neither of the following override the original setting @ youtube.com !www.youtube.com##+js(set-constant, ytcsi.now, noopFunc, end) !www.youtube.com##+js(set-constant, ytcsi.now, noopFunc, complete) ! None of the following six rules are necessary to move the comments section to the left column on Firefox since the version 127.0b9 release. ! None of these six rules actually moved the second element anyway for some reason. !www.youtube.com##+js(ica, div[id="below"], div[id="secondary-inner"]) !www.youtube.com##+js(ica, div[id="below"], div[id="fixed-secondary"]) !www.youtube.com##+js(ica, div[id="fixed-below"], div[id="secondary-inner"]) !www.youtube.com##+js(ica, div[id="fixed-below"], div[id="fixed-secondary"]) !www.youtube.com##+js(ica, div[id="bottom-grid"], div[id="secondary-inner"]) !www.youtube.com##+js(ica, div[id="single-column-container"], div[id="secondary-inner"]) ! The following rule automatically redirects from standard "watch" video pages to the embedded video page which is just the video player. ! TODO: This rule also bypasses the age check/date since the video is embedded? ||www.youtube.com^*$uritransform=/\/watch\?v=/\/embed\//,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! Remove all source_ve_path values (only letters? No) and not just "MA". ||www.youtube.com/embed/$uritransform=/&source_ve_path=[0-9a-zA-Z]+//,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The following rule covers the unlikely scenario that source_ve_path is first parameter in the URL's query string. ||www.youtube.com/embed/$uritransform=/\?source_ve_path=[0-9a-zA-Z]+&/?/,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.youtube.com/embed/$uritransform=/&embeds_referring_euri=[^&]+//,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The following rule covers the unlikely scenario that source_ve_path is first parameter in the URL's query string. ||www.youtube.com/embed/$uritransform=/\?embeds_referring_euri=[^&]+&/?/,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! &t=xs is the current playing mark in the video, but it does not work with embedded videos. ||www.youtube.com/embed/$uritransform=/&t=\d+s//,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The following rule covers the unlikely scenario that source_ve_path is first parameter in the URL's query string. ||www.youtube.com/embed/$uritransform=/\?t=\d+s&/?/,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.youtube.com/embed/$uritransform=/&feature=[^&]+//,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The following rule covers the unlikely scenario that source_ve_path is first parameter in the URL's query string. ||www.youtube.com/embed/$uritransform=/\?feature=[^&]+&/?/,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.youtube.com/embed/$uritransform=/&pp=[a-zA-Z]+//,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The following rule covers the unlikely scenario that source_ve_path is first parameter in the URL's query string. ||www.youtube.com/embed/$uritransform=/\?pp=[a-zA-Z]+&/?/,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.youtube.com/embed/$uritransform=/&lc=[a-zA-Z0-9\-\.]+//,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The following rule covers the unlikely scenario that source_ve_path is first parameter in the URL's query string. ||www.youtube.com/embed/$uritransform=/\?lc=[a-zA-Z0-9\-\.]+&/?/,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s.youtube.com/api/stats/watchtime$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.youtube.com/yts/jsbin/www-pagead-id-vflQArhct/www-pagead-id.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.youtube.com/api/stats/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.youtube.com/stream_204?event=streamingstats$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.youtube.com/ad_frame$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.youtube.com/annotations_invideo?instream_ad=1$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.youtube.com/api/stats/ads?ad_id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.youtube.com/api/stats/ads$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.youtube.com/api/stats/atr$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.youtube.com/api/stats/atr?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.youtube.com/api/stats/watchtime?$document,subdocument,script,inline-script,inline-font,popup,popunder,other,image !||www.youtube.com/api/stats/playback?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.youtube.com/api/stats/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.youtube.com/get_midroll_info$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.youtube.com/get_video_info*&el=adunit$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.youtube.com/pagead/conversion/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.youtube.com/pagead/viewthroughconversion/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.youtube.com/ptracking$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.youtube.com/youtubei/v1/log_event$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.youtube.com/youtubei/v1/log_interaction$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The following rule only blocks outgoing post requests. ||www.youtube.com/youtubei/v1/updated_metadata?$xhr,method=post ||www.youtube.com/yts/jsbin/www-pagead-id-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.youtube.com/yva_video?adformat=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.youtube.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.youtube.com/youtubei/v1/player/ad_break?key=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.youtube.com/youtubei/v1/player/ad_break$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.youtube.com/pagead/adview$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.youtube.com/s/desktop/3d8e40b0/jsbin/www-tampering.vflset/www-tampering.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.youtube.com/s/desktop/*/jsbin/www-tampering.vflset/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.youtube.com/pagead/interaction/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.youtube.com/s/desktop/1422277c/jsbin/intersection-observer.min.vflset/intersection-observer.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.youtube.com/s/desktop/1422277c/jsbin/intersection-observer.min.vflset/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||accounts.youtube.com/_/IdentityRotateCookiesHttp/cspreport/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.youtube.com^* !||www.youtube-nocookie.com/api/stats/watchtime$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.youtube-nocookie.com/api/stats/qoe$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.youtube-nocookie.com/api/stats/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! TODO: The following is not enough by itself to reset the one-time free 20-minute preview. tv.youtube.com##+js(set-local-storage-item, /ytu\-free\-preview\-timer\:\:[\w\-]+/, $remove$) tv.youtube.com##+js(remove-cookie, VISITOR_PRIVACY_METADATA) tv.youtube.com##+js(trusted-replace-node-text, script, /['"]disableKeyboardControls['"]:\s?true/gm, 'disableKeyboardControls': false) tv.youtube.com##+js(trusted-replace-node-text, script, /['"]disableSharing['"]:\s?true/gm, 'disableSharing': false) tv.youtube.com##+js(trusted-replace-node-text, script, /['"]disableWatchLater['"]:\s?true/gm, 'disableWatchLater': false) tv.youtube.com##+js(trusted-replace-node-text, script, /['"]hideInfo['"]:\s?true/gm, 'hideInfo': false) tv.youtube.com##+js(trusted-replace-node-text, script, /['"]enableCsiLogging['"]:\s?true/gm, 'enableCsiLogging': false) tv.youtube.com##+js(trusted-replace-node-text, script, /['"]disableDial['"]:\s?true/gm, 'disableDial': false) ! Don't use the following rule as-is if it does not contain the ZIP code you want to use. tv.youtube.com##+js(trusted-replace-node-text, script, /['"]zipCode['"]:\s?7201\d/gm, 'zipCode': '72024') tv.youtube.com##+js(trusted-replace-node-text, script, /['"]YTU_UAS_USER_HAS_BASE_PACKAGE['"]:\s?false/gm, 'YTU_UAS_USER_HAS_BASE_PACKAGE': true) tv.youtube.com##+js(trusted-replace-node-text, script, /['"]YTU_UAS_HAS_LOCK_REASON_FOP['"]:\s?true/gm, 'YTU_UAS_HAS_LOCK_REASON_FOP': false) !||tv.youtube.com/api/stats/playback$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tv.youtube.com/api/stats/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tv.youtube.com/s/web/79539f6b/unplugged_polymer_remove_unused_prototype_props.vflset/unplugged_polymer_remove_unused_prototype_props.js$replace=/=\s?new fn\(['"]endFreePreviewCommand['"]\);/=null;/gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tv.youtube.com/s/web/79539f6b/unplugged_polymer_remove_unused_prototype_props.vflset/unplugged_polymer_remove_unused_prototype_props.js$replace=/this\.freePreviewUsage\s?=\s?new Map;/this.freePreviewUsage=null;/gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tv.youtube.com/youtubei/v1/log_event?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||music.youtube.com/api/stats/playback?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||music.youtube.com/api/stats/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||music.youtube.com/ptracking?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||music.youtube.com/youtubei/v1/log_event?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||music.youtube.com/api/stats/qoe?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||music.youtube.com/api/stats/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css music.youtube.com##+js(remove-node-text, script, /\.push\(\{['"]gtm\.start['"]/gm) music.youtube.com##+js(trusted-replace-node-text, script, /['"]att_web_record_metrics['"]:\s?true/gm, "att_web_record_metrics": false) music.youtube.com##+js(trusted-replace-node-text, script, /['"]H5_enable_full_pacf_logging['"]:\s?true/gm, "H5_enable_full_pacf_logging": false) music.youtube.com##+js(trusted-replace-node-text, script, /['"]disable_log_to_visitor_layer['"]:\s?false/gm, "disable_log_to_visitor_layer": true) music.youtube.com##+js(trusted-replace-node-text, script, /['"]enable_ab_report_on_errorscreen['"]:\s?true/gm, "enable_ab_report_on_errorscreen": false) music.youtube.com##+js(trusted-replace-node-text, script, /['"]enable_ab_rp_int['"]:\s?true/gm, "enable_ab_rp_int": false) music.youtube.com##+js(trusted-replace-node-text, script, /['"]enable_client_sli_logging['"]:\s?true/gm, "enable_client_sli_logging": false) music.youtube.com##+js(trusted-replace-node-text, script, /['"]enable_flow_logging_p4e['"]:\s?true/gm, "enable_flow_logging_p4e": false) music.youtube.com##+js(trusted-replace-node-text, script, /['"]enable_sponsored_ad_badge_on_ytm['"]:\s?true/gm, "enable_sponsored_ad_badge_on_ytm": false) music.youtube.com##+js(trusted-replace-node-text, script, /['"]kev_adb_pg['"]:\s?true/gm, "kev_adb_pg": false) music.youtube.com##+js(trusted-replace-node-text, script, /['"]log_click_with_layer_from_element_in_command_handler['"]:\s?true/gm, "log_click_with_layer_from_element_in_command_handler": false) music.youtube.com##+js(trusted-replace-node-text, script, /['"]log_errors_through_nwl_on_retry['"]:\s?true/gm, "log_errors_through_nwl_on_retry": false) music.youtube.com##+js(trusted-replace-node-text, script, /['"]log_gel_compression_latency['"]:\s?true/gm, "log_gel_compression_latency": false) music.youtube.com##+js(trusted-replace-node-text, script, /['"]log_heartbeat_with_lifecycles['"]:\s?true/gm, "log_heartbeat_with_lifecycles": false) music.youtube.com##+js(trusted-replace-node-text, script, /['"]disableKeyboardControls['"]:\s?true/gm, "disableKeyboardControls": false) music.youtube.com##+js(trusted-replace-node-text, script, /['"]disableRelatedVideos['"]:\s?false/gm, "disableRelatedVideos": true) music.youtube.com##+js(trusted-replace-node-text, script, /['"]enableCsiLogging['"]:\s?true/gm, "enableCsiLogging": false) music.youtube.com##+js(trusted-replace-node-text, script, /['"]disableSharing['"]:\s?true/gm, "disableSharing": false) music.youtube.com##+js(trusted-replace-node-text, script, /['"]disableWatchLater['"]:\s?true/gm, "disableWatchLater": false) music.youtube.com##+js(trusted-replace-node-text, script, /['"]enableSongOffline['"]:\s?false/gm, "enableSongOffline": true) music.youtube.com##+js(trusted-replace-node-text, script, /['"]enableIosAirplayButton['"]:\s?false/gm, "enableIosAirplayButton": true) music.youtube.com##+js(trusted-replace-node-text, script, /['"]enableQuickseekActions['"]:\s?false/gm, "enableQuickseekActions": true) music.youtube.com##+js(trusted-replace-node-text, script, /['"]enableMediaKeyActions['"]:\s?false/gm, "enableMediaKeyActions": true) ! TODO: Is AUDIO_QUALITY_HIGH in the following rule a valid setting for non-premium users? AUDIO_QUALITY_MEDIUM appears to be the highest setting. Same as "normal" under "playback"? music.youtube.com##+js(trusted-replace-node-text, script, /['"]AUDIO_QUALITY['"]:\s?"AUDIO_QUALITY_MEDIUM"/gm, "AUDIO_QUALITY": "AUDIO_QUALITY_HIGH") ! TODO: The following rule sets the setting availability or actually enabled restricted mode? ! Restricted mode hides videos and songs with potentially mature content. music.youtube.com##+js(trusted-replace-node-text, script, /['"]enableRestrictedModeSetting['"]:\s?true/gm, "hideInfo": false) ! TODO: The following rule enables "stats for nerds"? music.youtube.com##+js(trusted-replace-node-text, script, /['"]hideInfo['"]:\s?true/gm, "enableRestrictedModeSetting": false) music.youtube.com##div[class*="video-ads"]:remove() music.youtube.com##div[class*="ytp-ad-module"]:remove() music.youtube.com##div[class^="ytp-paid-content-overlay"]:remove() ! Do NOT use either of the following two rules or the download button will not work. !loader.to##a[id="downloadButton"]:remove-attr(onlick) !loader.to##+js(remove-attr, onclick, a[id="downloadButton"]) loader.to##+js(set-constant, isIframeSandboxed, falseFunc) loader.to##+js(set-constant, isSandboxed, false) loader.to##+js(trusted-replace-node-text, script, /if\s?\(isIframeSandboxed\(\)\)/gm, if (null)) !||loader.to/ajax/ad/b.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||loader.to/ajax/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css *$3p,popup,domain=loader.to ! TODO: using the following rule doesn't block popups from about:blank !/^https?:\/\/(?!-)[A-Za-z0-9-]+([\-\.]{1}[A-Za-z0-9]+)*\.[A-Za-z]{2,6}\/?\S*/$3p,popup,domain=loader.to down.ali213.net##div[id="cs_DIV_cscpvrich8388C"]:remove() ||p.gm99.com/chuangsu_api_log$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||p.gm99.com/api/chuangsu_api.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||iubenda.com^* ||www.fd7qz88ckd.com^* ||fd7qz88ckd.com^* !||fadspms.com/pixel/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fadspms.com^* !uploadbox.io##span[id="countdown"] ! blocking this prevents downloads ||uploadbox.io/js/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css uploadbox.io##+js(set-constant, enable_page_level_ads, true) uploadbox.io##+js(set-constant, ad_blocker_message, null) ||uploadbox.io/images/adblock.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css uploadbox.io##div[class="ad_block_container"]:remove() uploadbox.io##+js(abort-current-script, replaceContentWithAdBlockerContent) uploadbox.io##+js(abort-current-script, errorWhileLoadGoogleAds) uploadbox.io##+js(abort-on-property-write, ad_blocker_message) uploadbox.io##+js(abort-on-property-read, ad_blocker_message) uploadbox.io##+js(abort-on-property-write, testadblock) uploadbox.io##+js(abort-on-property-read, testadblock) !uploadbox.io##ins[class="adsbygoogle infeed"]:remove() uploadbox.io##ins[class^="adsbygoogle"]:remove() uploadbox.io##div[class="sticky-ad"]:remove() uploadbox.io##div[id="testadblock"]:remove() ||www.la1dwne9cn5c.com^* ||la1dwne9cn5c.com^* !||allowt0get.com/mms/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||allowt0get.com^* ||24-7downloads.com^* ||platform.linkedin.com/js/analytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.paypal.com/xoplatform/logger/api/logger$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.paypal.com/xoplatform/logger/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||poweredby.jads.co/adshow.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||poweredby.jads.co^* www.howtoforge.com,forum.howtoforge.com##div[id="ez-video-container"]:style(visibility: visible !important; pointer-events: all !important;) www.howtoforge.com,forum.howtoforge.com##div[id="ez-video-outstream"][class*="vjs-ad-only"]:remove-class(vjs-ad-only) www.howtoforge.com,forum.howtoforge.com##html[class*="LoggedOut"]:remove-class(LoggedOut) www.howtoforge.com,forum.howtoforge.com##+js(remove-class, LoggedOut, html[class*="LoggedOut"]) www.howtoforge.com,forum.howtoforge.com##.bsa-apiads:remove() www.howtoforge.com,forum.howtoforge.com##div[class="ez-sidebar-wall-ad"]:remove() www.howtoforge.com,forum.howtoforge.com##div[id="ezmobfooter"]:remove() www.howtoforge.com,forum.howtoforge.com##iframe[id="rufous-sandbox"]:remove() www.howtoforge.com,forum.howtoforge.com##script[data-cookieconsent]:remove() www.howtoforge.com,forum.howtoforge.com##span[class*="adtester-container"]:remove() www.howtoforge.com,forum.howtoforge.com##span[class*="ezoic-ad"]:remove() www.howtoforge.com,forum.howtoforge.com##span[id^="ezoic-pub-ad-placeholder-"]:remove() www.howtoforge.com,forum.howtoforge.com##span[data-ez-ph-id="105"]:remove() !www.howtoforge.com,forum.howtoforge.com##span[data-ez-ph-id]:remove() www.howtoforge.com,forum.howtoforge.com##span[id^="div-gpt-ad-"]:remove() www.howtoforge.com,forum.howtoforge.com##span[id^="ezoic-pub-ad-placeholder"]:remove() ! TODO: Should the following be a class or id? !www.howtoforge.com,forum.howtoforge.com##*[class^="ezoic_pub_ad_placeholder-"]:remove() www.howtoforge.com,forum.howtoforge.com##script[id="Cookiebot"]:remove() www.howtoforge.com,forum.howtoforge.com##+js(aopr, __ezaps) www.howtoforge.com,forum.howtoforge.com##+js(aopw, __ezaps) www.howtoforge.com,forum.howtoforge.com##+js(aopr, _bsa) www.howtoforge.com,forum.howtoforge.com##+js(aopw, _bsa) www.howtoforge.com,forum.howtoforge.com##+js(aopr, window.ezogetbrkey) www.howtoforge.com,forum.howtoforge.com##+js(aopw, __inScopeForCCPA) www.howtoforge.com,forum.howtoforge.com##+js(aopr, __inScopeForCCPA) www.howtoforge.com,forum.howtoforge.com##+js(aopw, window.ezogetbrkey) www.howtoforge.com,forum.howtoforge.com##+js(remove-node-text, script, /_bsa\.init\(/gm) www.howtoforge.com,forum.howtoforge.com##+js(remove-node-text, script, /var __ezHttpConsent\s?=/gm) www.howtoforge.com,forum.howtoforge.com##+js(set-constant, getEzConsentData, noopFunc) www.howtoforge.com,forum.howtoforge.com##+js(set-constant, window.ezAnalyticsStatic, false) www.howtoforge.com,forum.howtoforge.com##+js(set-constant, analyticsAddScript, noopFunc) www.howtoforge.com,forum.howtoforge.com##+js(set-constant, productAnalytics, noopFunc) www.howtoforge.com,forum.howtoforge.com##+js(remove-node-text, script, /function productAnalytics\(\)\s?\{/gm) www.howtoforge.com,forum.howtoforge.com##+js(remove-node-text, script, /function analyticsAddScript\(script\)\s?\{/gm) www.howtoforge.com,forum.howtoforge.com##+js(remove-node-text, script, /function productEzoicAds\(\)\s?\{/gm) www.howtoforge.com,forum.howtoforge.com##+js(set-constant, productEzoicAds, noopFunc) www.howtoforge.com,forum.howtoforge.com##+js(set-constant, window.google_reactive_ads_global_state, {}) www.howtoforge.com,forum.howtoforge.com##+js(remove-node-text, script, /function getEzConsentData\(\)\s?\{/gm) www.howtoforge.com,forum.howtoforge.com##+js(set-constant, getEzConsentData, noopFunc) www.howtoforge.com,forum.howtoforge.com##+js(aopr, ezTcfConsent) www.howtoforge.com,forum.howtoforge.com##+js(aopw, ezTcfConsent) ! The following rule isn't necessary since a generic rule already does this. !www.howtoforge.com,forum.howtoforge.com##+js(set-constant, gtag, noopFunc) ! The following rule blocks the main EZ ads script; it is the result of a POST XHR request not GET script so need to block xhr not script !/^https?:\/\/(?:www\.howtoforge\.com|forum\.howtoforge\.com)\/ezais\/dynamic\?cb=1/$method=post,xhr ! TODO: The following rule likely blocks videos as any video ads. /^https?:\/\/(?:www\.howtoforge\.com|forum\.howtoforge\.com)\/ezais\/dynamic\?cb=1/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css /^https?:\/\/(?:www\.howtoforge\.com|forum\.howtoforge\.com)\/ezais\/analytics\?/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The following rule blocks the main EZ ads script; it is the result of a POST XHR request not GET script so need to block xhr not script !/^https?:\/\/(?:www\.howtoforge\.com|forum\.howtoforge\.com)\/ezais\/log\?cb=1/$method=post,xhr /^https?:\/\/(?:www\.howtoforge\.com|forum\.howtoforge\.com)\/ezais\/log\?cb=1/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||14nuzznszbdp.com/pixel/purst$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||14nuzznszbdp.com/pixel/pure$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||14nuzznszbdp.com^* ||shorten.sh/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||shon.xyz/js/adframe.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||gadsats.com/58/3e/50/583e507ff22f2dba4c229fff074ba562.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gadsats.com^* !||fadskis.com/pixel/purst$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||fadskis.com/pixel/pure$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fadskis.com/pixel/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||srt.leechpremium.link/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||katerigordas.pro/v3/a/pop/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css slink.bid##div.banner-captcha:remove() voxc.org##.demo:remove() shon.xyz##.hidden-sm.hidden-xs:remove() ||www.bing.com/BingDSW.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.jazdoxthxiv.com^* ||jazdoxthxiv.com^* ||www.oefyjdykepx.com^* ||oefyjdykepx.com^* ||1337x.123unblock.pink/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||1337x.unblocked.is/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bitdownload.ir/wp-content/uploads/ban/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css bitdownload.ir##div[class="bx-ads"]:remove() !||anlcld.com/wnrw$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||anlcld.com/wnload$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||anlcld.com^* ||lnkd.demdex.net^* ||adsaturn.com/display/items.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||shortearn.eu/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sendmepush.com^* ||tags.audionews.fm/dist/ads_sticky.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tags.audionews.fm/dist/videojs.ads.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tags.audionews.fm/dist/videojs.ads.css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adsrt.org/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||netpatas.com^* ||adshort.co/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||b.klakus.com/view/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||b.klakus.com/view/$subdocument ||www.bwhkzhvq.com^* ||bwhkzhvq.com^* ||unblockit.red/b.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css unblockit.red##+js(abort-current-inline-script, runAdblock) !||appwikia.com/wp-content/plugins/onesignal-free-web-push-notifications/sdk_files/manifest.json.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css appwikia.com###efbl_popup:remove() !appwikia.com##.mfp-ready:remove() ||odrecniri.gq^* ||ads.learnviral.com^* !megafile.io##.adsbygoogle > .adsbygoogle:remove() !megafile.io##td > .adsbygoogle:remove() !megafile.io##td > table > tbody > tr:nth-of-type(1) > td:nth-of-type(1) > div > .adsbygoogle:remove() !megafile.io##td:nth-of-type(3) > div > .adsbygoogle:remove() megafile.io##div[class$="custom-ads-full"]:remove() megafile.io##div[class="ad_block_container"]:remove() megafile.io##div[class="black_overall"]:remove() megafile.io##div[class="sticky-ad"]:remove() megafile.io##ins[class^="adsbygoogle"]:remove() megafile.io##div[id*="adsbygoogle"]:remove() megafile.io##div[id="testadblock"]:remove() megafile.io##+js(set-constant, enable_page_level_ads, true) megafile.io##+js(set-constant, ad_blocker_message, null) megafile.io##+js(abort-current-script, replaceContentWithAdBlockerContent) megafile.io##+js(abort-current-script, errorWhileLoadGoogleAds) megafile.io##+js(abort-on-property-write, ad_blocker_message) megafile.io##+js(abort-on-property-read, ad_blocker_message) megafile.io##+js(abort-on-property-write, testadblock) megafile.io##+js(abort-on-property-read, testadblock) ||megafile.io/js/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s.webtrends.com/js/webtrends.hm.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.webtrends.com^* ||vpnur.com/stat/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.dsnxvnkxyimczk.com^* ||dsnxvnkxyimczk.com^* ||www.ajtctiiiaz.com^* ||ajtctiiiaz.com^* ||openstat.net/cnt.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||elp.search4moviex.com^* ||search4moviex.com^* ||static.tutsplus.com/assets/ad-pinstripe-0f2204b78e74d95ab66ac7d2fd8fb2d0.png$image code.tutsplus.com##.post__inarticle-ad-template:remove() code.tutsplus.com##.layout__sidebar-ad-2:remove() code.tutsplus.com##.layout__sidebar-ad-1:remove() code.tutsplus.com##*[class^="layout__sidebar-ad-"]:remove() ||static.linkredirect.biz/b-images/227599_lancer_streaming_rouge.png$image ||pubdirecte.com/script/banniere.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pubdirecte.com/script/pop.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||aspboxant.club^* ||weadown.com/get/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.nytimes.com##.e1x0szx60.css-16r57cp.expanded-dock.shown.MAG_web_anon_new-journey-rollout:remove() ||cdn.segment.io/analytics.js/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.segment.com/analytics.js/v1/rowk0wc1g6/analytics.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.segment.com/analytics.js/v1/4I2fAtE5IxTlczNT3F91OckHtI5wfR7g/analytics.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d296je7bbdd650.cloudfront.net/analytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.segment.com/analytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||global.fncstatic.com/static/isa/app/lib/VisitorAPI.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||global.fncstatic.com/static/isa/app/lib/omtr_code.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||global.fncstatic.com/static/v/all/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ping.chartbeat.net/ping$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ping.chartbeat.net^* !||a2.adform.net/videoad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a2.adform.net^* !||s2.adform.net/Banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s2.adform.net^* ||smetrics.foxbusiness.com^* !||79423.analytics.edgekey.net/html5/akamaihtml5-min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||79423.analytics.edgekey.net^* !||*.analytics.edgekey.net^* !||ma102-r.analytics.edgekey.net^* !||alcroconawa.com/apu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pushmejs.com/ntfc.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||alcroconawa.com^* ||pushmejs.com^* ||wacucmiy.net^* ||vempozah.net^* ||serconmp.com^* ||gloussuz.com^* ||www.gloussuz.com^* ||gfxtra.uproxy.to/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.ctrlaltdel99.com^* ||ctrlaltdel99.com^* !||b1t-nydc1.zemanta.com/t/imp/impression$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||b1t-nydc1.zemanta.com/t/imp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css webdesign.tutsplus.com##.post__inarticle-ad-template:remove() webdesign.tutsplus.com##.post__article-ad:remove() ||lowtyroguer.com^* ||downloads27136.downloadsfls.com^* ||d2px5ezy95nb1j.cloudfront.net^* ||www5.smartadserver.com^* ||ads.projectagoraservices.com^* ||topbetfast.com^* ||www.downfree4u.com/pop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.federationpitch.com/ads-async.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.federationpitch.com/js/show_ads_supp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||blog.centipedia.net/static/application.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cpm.adsolut.in^* ||cdn.adpushup.com^* ||metrics.samsclub.com^* www.fullversiondl.com##.btngreen.user:remove() ||znewswork.com^* ||kolesoxxx.pw^* ||fres-news.com^* ||goodbase.biz^* ||getcoder.me^* ||0.fres-news.com^* www.router-reset.com###ezmobfooter:remove() ||http.ps^* ||autocapital.pw^* !||hg.mozilla.org^* ||crash-reports.mozilla.com^* ||crash-stats.mozilla.org^* ||incoming.telemetry.mozilla.org^* talkerscode.com##div[class*="videoAdUi"]:remove() talkerscode.com##div[class*="ima-action-ad"]:remove() talkerscode.com##div[class="videoAdUiFloatingLayer"]:remove() ||a.vdo.ai^* !||a.vdo.ai/core/talkerscode/adframe.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||a.vdo.ai/core/talkerscode/vdo.ai.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||a.vdo.ai/core/allowed_url.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pre.glotgrx.com/impimg.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||flx907.lporirxe.com/flp/impimg.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||airtable.com/internal/stats-batch$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||airtable.com/internal/beacon$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.rh1hilm7j0ae.com^* ||rh1hilm7j0ae.com^* ||pushrev.neptuneadspush.com^* ||pushlite.neptuneadspush.com^* ||qualityspin.com/back.php?tracker=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||qualityspin.com/service_worker.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||x.secondpromo.com^* ||dropsurvey.com/js/fingerprintjs2/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dropsurvey.com/utils/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dropsurvey.com/service_worker.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||gg45erl.styuo.company^* ||*.styuo.company^* !||kq6.securessl.company^* ||*.securessl.company^* ||track.duvallo.com^* ||win.dailyhookupsuccess.com^* ||horizonprize.com^* ||i.giphy.com/media/lIbVrBqGGHUl2/giphy.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.qkspafpgg.com^* ||qkspafpgg.com^* !||adnmn.com/bc/trks.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adnmn.com^* !||collector-pxslc3j22k.px-cloud.net/api/v2/collector$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||collector-pxslc3j22k.px-cloud.net^* ||www.hizvevxvi.com^* ||hizvevxvi.com^* !||jumbitr.com/path/lp.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||jumbitr.com^* ! 32767 /0x7FFF is the highest int allowed for set-constant ! in case this trusted-set-constant rule is not in "My Filters" tab crazy4tv.mrunblock.xyz,crazy4tv.mrunlock.red##+js(set-constant, delayBetween, 32767) crazy4tv.mrunblock.xyz,crazy4tv.mrunlock.red##+js(trusted-set-constant, delayBetween, { "value": 999999 }) !crazy4tv.mrunblock.xyz,crazy4tv.mrunlock.red##+js(set-constant, default, []) !crazy4tv.mrunblock.xyz,crazy4tv.mrunlock.red##+js(set-constant, default, undefined) crazy4tv.mrunblock.xyz,crazy4tv.mrunlock.red##+js(set-constant, default, null) crazy4tv.mrunblock.xyz,crazy4tv.mrunlock.red##+js(set-constant, popundersPerIP, 0) crazy4tv.mrunblock.xyz,crazy4tv.mrunlock.red##+js(abort-current-script, popundersPerIP) crazy4tv.mrunblock.xyz,crazy4tv.mrunlock.red##+js(abort-on-property-write, popundersPerIP) crazy4tv.mrunblock.xyz,crazy4tv.mrunlock.red##+js(abort-on-property-read, popundersPerIP) crazy4tv.mrunblock.xyz,crazy4tv.mrunlock.red##+js(abort-current-script, delayBetween) crazy4tv.mrunblock.xyz,crazy4tv.mrunlock.red##+js(abort-current-script, default) crazy4tv.mrunblock.xyz,crazy4tv.mrunlock.red##+js(abort-current-script, integrity) crazy4tv.mrunblock.xyz,crazy4tv.mrunlock.red##+js(abort-on-property-write, integrity) crazy4tv.mrunblock.xyz,crazy4tv.mrunlock.red##+js(abort-on-property-read, integrity) crazy4tv.mrunblock.xyz,crazy4tv.mrunlock.red##+js(abort-on-property-write, delayBetween) crazy4tv.mrunblock.xyz,crazy4tv.mrunlock.red##+js(abort-on-property-read, delayBetween) crazy4tv.mrunblock.xyz,crazy4tv.mrunlock.red##+js(abort-on-property-write, default) crazy4tv.mrunblock.xyz,crazy4tv.mrunlock.red##+js(abort-on-property-read, default) ||api-sensors.shein.com^* ||www.clfvfumqqok.com^* ||clfvfumqqok.com^* ||ds88pc0kw6cvc.cloudfront.net^* !||ice.360yield.com/imp_pixel^* ||ice.360yield.com^* ||creative.360yield.com^* ||ieeexplore.ieee.org/assets/dist/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ieeexplore.ieee.org/assets/js/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sibautomation.com/sa.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d3rxqouo2bn71j.cloudfront.net^* ||loricalreach.info^* ||hincludingse.site^* ||11ccda709b5cdf5.com^* ||lesburghmoloki.site^* ||edlingproteb.info^* ||phsism.com^* ||pmzer.com^* ||dynamicadx.com^* !||s5n5i7t2.stackpathcdn.com/images/campaigns/creativity-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s5n5i7t2.stackpathcdn.com/images/campaigns/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||api-bts.logsss.com/gateway/shunt/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api-bts.logsss.com^* ||11a581bbb5038e.com^* ||hadskiz.com^* ||1b9dd173483.com^* ||0c9d45a04fff.com^* ||93453074ab3e3.com^* ||uthorner.info^* ||www.zekcgykv.com^* ||www.rkauzlyh.com^* ||c2af9d3d88.com^* ||www.zqydozajw.com^* ||zqydozajw.com^* ||static.uloz.to/javascript/nodus/adverts/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.uloz.to/javascript/nodus/trackingLinks.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ulozto.net##+js(set-constant, adblock_detected, false) ||b.6sc.co/v1/beacon/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||smetrics.nvidia.com^* ||forfile.xyz^* ||rowoardog.com^* ||mehebborc.com^* ||fathom.pixeldrain.com/tracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pixeldrain.com/res/img/misc/banner_as.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pixeldrain.com/api/misc/rate_limits$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css pixeldrain.com##html:style(overflow:scroll !important;) !pixeldrain.com##body[id="body"]:style(overflow:auto !important;) pixeldrain.com##div[class="sponsors"]:remove() pixeldrain.com##div[class^="sharebar"]:remove() pixeldrain.com##div[class^="banner"]:has(div[class^="socials"]):remove() pixeldrain.com##div[class^="compatibility_warning"]:remove() pixeldrain.com##div[class*="notice"]:has(a[href*="//helpukrainewin.org/"]):remove() pixeldrain.com##div[class*="ad_space"]:remove() pixeldrain.com##div[id^="div-gpt-ad-"]:remove() pixeldrain.com##div[id="sponsors"]:remove() pixeldrain.com##div[class*="support_banner"]:remove() ! TODO: The video player doesn't scroll properly to the right @ 1920x1080px without overlapping the toolbar on the left, but it is viewable. pixeldrain.com##div[class^="file_preview"]:style(left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; overflow:auto !important;user-select: all !important; pointer-events: all !important;) !pixeldrain.com##div[class^="container"]:style(left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100% !important; width: 100% !important; max-height: 100% !important; height: 100% !important; overflow:auto !important; user-select: all !important; pointer-events: all !important;) !pixeldrain.com##div[class^="container"]:style(overflow:auto !important;) pixeldrain.com##div[class^="player_and_controls"]:style(margin-left: 8.2em !important;margin-right: -8.2em !important; overflow:hidden !important;max-width: 100% !important; width: 100% !important; max-height: 100% !important; height: 100% !important;) pixeldrain.com##div[class^="player_and_controls"][class*="vjs-controls-disabled"]:remove-class(vjs-controls-disabled) pixeldrain.com##+js(remove-class, vjs-controls-disabled, div[class^="player_and_controls"][class*="vjs-controls-disabled"]) pixeldrain.com##+js(trusted-set-attr, div[class^="player_and_controls"], crossorigin, anonymous) pixeldrain.com##+js(trusted-set-attr, div[class^="player_and_controls"], preload, metadata) !pixeldrain.com##+js(trusted-set-attr, div[class^="player_and_controls"], preload, auto) !pixeldrain.com##+js(trusted-set-attr, div[class^="player_and_controls"], preload, none) pixeldrain.com##+js(trusted-set-attr, div[class^="player_and_controls"], playsinline, true) !pixeldrain.com##+js(trusted-set-attr, div[class^="player_and_controls"], playsinline, playsinline) pixeldrain.com##+js(add-class, vjs-controls-enabled, div[class^="player_and_controls"]) pixeldrain.com##+js(add-class, vjs-has-mouse, div[class^="jwplayer"]) pixeldrain.com##+js(add-class, vjs-mouse, div[class^="jwplayer"]) pixeldrain.com##+js(add-class, vjs-workinghover, div[class^="jwplayer"]) pixeldrain.com##+js(add-class, vjs-contextmenu, div[class^="jwplayer"]) pixeldrain.com##+js(add-class, vjs-contextmenu-ui, div[class^="jwplayer"]) pixeldrain.com##+js(add-class, vjs-ad-controls, div[class^="jwplayer"]) pixeldrain.com##+js(add-class, vjs-player-info, div[class^="jwplayer"]) pixeldrain.com##+js(add-class, vjs-dock, div[class^="jwplayer"]) pixeldrain.com##+js(add-class, vjs-plugins-ready, div[class^="jwplayer"]) pixeldrain.com##+js(add-class, vjs-errors, div[class^="jwplayer"]) pixeldrain.com##+js(add-class, jw-flag-cast-available, div[class^="jwplayer"]) pixeldrain.com##+js(add-class, jw-stretch-uniform, div[class^="jwplayer"]) pixeldrain.com##+js(add-class, jw-flag-aspect-mode, div[class^="jwplayer"]) ! TODO: use the following rule to add the vjs-layout-large class? Is it only for desktop PC and large tablets? !pixeldrain.com##+js(add-class, vjs-layout-large class, div[class^="jwplayer"]) pixeldrain.com##div[class^="jwplayer"][class*="vjs-vpaid-controls-disabled"]:remove-class(vjs-vpaid-controls-disabled) pixeldrain.com##+js(remove-class, vjs-vpaid-controls-disabled, div[class^="jwplayer"][class*="vjs-vpaid-controls-disabled"]) pixeldrain.com##div[class^="jwplayer"][class*="vjs-ima3-not-playing-yet"]:remove-class(vjs-ima3-not-playing-yet) pixeldrain.com##+js(remove-class, vjs-ima3-not-playing-yet, div[class^="jwplayer"][class*="vjs-ima3-not-playing-yet"]) pixeldrain.com##div[class^="jwplayer"][class*="jw-no-focus"]:remove-class(jw-no-focus) pixeldrain.com##+js(remove-class, jw-no-focus, div[class^="jwplayer"][class*="jw-no-focus"]) ! TODO: remove vjs-ima3-html5 since it is for video ads? pixeldrain.com##div[class^="jwplayer"][class*="vjs-ima3-html5"]:remove-class(vjs-ima3-html5) pixeldrain.com##+js(remove-class, vjs-ima3-html5, div[class^="jwplayer"][class*="vjs-ima3-html5"]) pixeldrain.com##video[class^="player"]:style(overflow: hidden !important; left: 0px !important; right: 0px !important; top: 0px !important; bottom: 0px !important; padding: 0 !important; margin: 0 !important; border: none !important; border-width: 0 !important; max-width: 100% !important; width: 100% !important; max-height: 100% !important; height: 100% !important; user-select: all !important; pointer-events: all !important;) pixeldrain.com##video[class^="player"]:remove-attr(disableremoteplayback) pixeldrain.com##+js(remove-attr, disableremoteplayback, video[class^="player"]) pixeldrain.com##+js(trusted-set-attr, video[class^="player"], x-webkit-airplay, allow) pixeldrain.com##+js(trusted-set-attr, video[class^="player"], data-autoplay-mute-lock, false) pixeldrain.com##+js(trusted-set-attr, video[class^="player"], controls, true) pixeldrain.com##+js(trusted-set-attr, video[class^="player"], width, 100%) pixeldrain.com##+js(trusted-set-attr, video[class^="player"], height, 100%) pixeldrain.com##+js(trusted-set-attr, video[class^="player"], crossorigin, anonymous) pixeldrain.com##+js(trusted-set-attr, video[class^="player"], preload, metadata) !pixeldrain.com##+js(trusted-set-attr, video[class^="player"], preload, auto) !pixeldrain.com##+js(trusted-set-attr, video[class^="player"], preload, none) pixeldrain.com##+js(trusted-set-attr, video[class^="player"], playsinline, true) !pixeldrain.com##+js(trusted-set-attr, video[class^="player"], playsinline, playsinline) pixeldrain.com##+js(trusted-set-attr, video[class^="player"], webkit-playsinline, true) pixeldrain.com##video[class^="player"]:remove-attr(disablepictureinpicture) pixeldrain.com##+js(remove-attr, disablepictureinpicture) !||stats.pixeldrain.com/api/event$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stats.pixeldrain.com^* ! The following four rules defuse the anti-developer tools system. hexload.com##+js(aeld, dtchange) hexload.com##+js(set-constant, mypwpsc, noopFunc) hexload.com##+js(acs, /mypwpsc\(\)/) hexload.com##+js(trusted-set-constant, dt, { isOpen: false, orientation: undefined, }) hexload.com##+js(aeld, contextmenu) ||analytics.file.cm^* file.cm##+js(abort-on-property-write, trackPageView) file.cm##+js(abort-on-property-read, trackPageView) file.cm##+js(abort-on-property-write, enableLinkTracking) file.cm##+js(abort-on-property-read, enableLinkTracking) file.cm##+js(abort-on-property-write, setTrackerUrl) file.cm##+js(abort-on-property-read, setTrackerUrl) dats.site##div[id^="gmp_rls_"][class*="invisible"]:remove-class(invisible) dats.site##+js(remove-class, invisible, div[id^="gmp_rls_"][class*="invisible"]) ||www.ftkbsddgbqt.com^* ||ftkbsddgbqt.com^* ||conjeller-chikemon.com^* ||www.jfiqsfsh.com^* ||jfiqsfsh.com^* ||www.mhviessolums.com^* ||mhviessolums.com^* ||www.cbeyywbfm.com^* ||cbeyywbfm.com^* !||feed111.me/click.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||feed111.me^* ||topcontent.space^* ||www.rfmdtsiekds.com^* ||rfmdtsiekds.com^* !||web.vortex.data.msn.com/collect/v1?$mscomCookies=false$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||web.vortex.data.msn.com/collect/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||loadadvancedintenselyapplication.icu^* ||onetouch4.com^* !||notification.tubecup.net/in/show/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||notification.tubecup.net^* !||hooify.com/winpush^* ||hooify.com^* ||smetrics.att.com^* ||www.weathfront.com^* ||qualaroo.com^* ||b0omr3wn6u4b.com^* ||b6b4rhsbdawj.com^* ||nqrkzcd7ixwr.com^* ||mjbuuxt7l18r.com^* ||pushnotifications.click^* lifehacker.com##video[title="Advertisement"]:remove() lifehacker.com##div[id="zdcFloatingBtn"]:remove() lifehacker.com##div[class*="js_ad-"]:remove() lifehacker.com##div[class^="ad-container"]:remove() lifehacker.com##ins[class="zmgad-full-width"]:remove() ||lifehacker.com/api/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||lifehacker.com/x-kinja-static/assets/new-client/ads~$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lifehacker.com/x-kinja-static/assets/new-client/ads.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lifehacker.com/x-kinja-static/assets/new-client/vendors~ads.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lifehacker.com/x-kinja-static/assets/new-client/runtime~ads.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lifehacker.com/x-kinja-static/assets/new-client/runtime~trackers.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lifehacker.com/x-kinja-static/assets/new-client/trackers.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.infocupboard.com^* ||infocupboard.com^* !||stats.videodelivery.net/cdn-cgi/beacon/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stats.videodelivery.net^* ||citgroup.112.2o7.net^* ||analytics.myfidevs.io^* ||www.deviantart.com/_adslot/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.deskofhelp.com^* ||deskofhelp.com^* !||analyticsvidhya.com^* ||www.expresvpn-private-analytics.net^* ||expresvpn-private-analytics.net^* ||vatrack.hinet.net^* ||www.loddawqst.com^* ||loddawqst.com^* ||www.ofgogoatan.com^* ||ofgogoatan.com^* ||www.dccqzsmabz.com^* ||dccqzsmabz.com^* ||www.congregorysun.site^* ||congregorysun.site^* ||www.wronwaskinthetron.pro^* ||wronwaskinthetron.pro^* ||clk.rtpdn11.com^* ||3488153.catchtheclick.com^* ||www.atpqczsqjsxvln.com^* ||atpqczsqjsxvln.com^* piratebays.win##div[id="vpnvpn"] ||ladsatz.com^* shortearn.eu##div[id^="adm-container"]:remove() shortearn.eu##+js(abort-on-property-write, zfgloadedpopup) shortearn.eu##+js(abort-on-property-read, zfgloadedpopup) shortearn.eu##div[id^="atContainer-"]:remove() shortearn.eu##div[class="ad-title"]:remove() shortearn.eu##div[class="ad-skip"]:remove() !||prebid.admedia.com/bidder/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||prebid.admedia.com^* ||www.knutenegros.pro^* ||knutenegros.pro^* ||t.riverhit.com^* ||www.q92dapm6fgp4.com^* ||q92dapm6fgp4.com^* !||cdn15.acloudimages.com/1c7/ade/502/729x90_gamemain_08.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn15.acloudimages.com/4c7/349/654/729x90_gamemain_02.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn15.acloudimages.com/*/729x90_gamemain_02.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s.optnx.com/cimp.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.optnx.com^* !||syndication.optimizesrv.com/splash.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||syndication.optimizesrv.com^* www.dirrtyremix.es###ps_ad_container www.dirrtyremix.es###ps_video www.dirrtyremix.es###ps_floater www.dirrtyremix.es###overlay_ad shortearn.eu##div.banner-captcha !||track.gaug.es/track.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||track.gaug.es/track.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||track.gaug.es^* ||ads.remix.es^* !||ads.remix.es/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.dirrtyremix.es##div[class="AdZone300"]:remove() www.dirrtyremix.es##ins[class="adsbygoogle"]:remove() ||adsolut.in^* ||falcionius.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||paragonmusic.ru/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.webfemulate.com###fanbox www.webfemulate.com###fan-exit www.webfemulate.com###fanback www.thegatewaypundit.com###Top-ad www.thegatewaypundit.com###IC1-ad www.c-sharpcorner.com##div[class^="ad-items"] www.c-sharpcorner.com##div[id^="LinkAdContainer"] ||analytics2.m2.ai^* ||monetizemore-d.openx.net^* ||adtrack.c-sharpcorner.com^* ||attyyty0py6tyll.godaddysites.com^* ||www.milkmovemoney.com^* ||milkmovemoney.com^* ||login.dognet.sk/accounts/default1/fb27g82d/00eee363.jpg$image ||login.dognet.sk/accounts/default1/fb27g82d/28b6a453.jpg$image ||thud-hold.com^* ||maroola.aditms.me^* ||www.idwebappssecure.com^* ||idwebappssecure.com^* ||dnserrorassist.att.net^* ||www.lowaihoo17.live^* ||lowaihoo17.live^* ||mobile-app-market-here1.life^* ||best.prizedea2040.info^* ||prizedea2040.info^* ||status.vuer.net^* ||www.opengreatlyrefinedfreeware.icu^* ||opengreatlyrefinedfreeware.icu^* ||www.sluchay.pw^* ||sluchay.pw^* ||staging.divebahrain.com^* ||att.inq.com/tagserver/logging/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sarah.tncrun.net^* fccid.io##div[class*="adtester-container"]:remove() fccid.io##span[id^="ezoic-pub-ad-placeholder-"]:remove() fccid.io##div[class*="ezo_ad"]:remove() 83.wt.volleyball-erbach.de##.modal-dialog:remove() 10-0-0-0-1.org###ezmobfooter:remove() ||onehack.us/assets/google-universal-analytics-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||onehack.us/stylesheets/discourse-adplugin_$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css onehack.us##div[id="data-preloaded"]:remove() !||onehack.us/javascripts/workbox/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||onehack.us/javascripts/jquery.magnific-popup.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css onehack.us##div[id="BbolhaX"] ||onehack.us/cdn-cgi/apps/head/Rw06CINsJVXpYWIuPfxhTMDuVPY.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||onehack.us/cdn-cgi/apps/body/x5HzBgBCXirqxaoRvADxA7ZTm-8.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||onehack.us/logs/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||get2.mysecurify.com^* ||www.asiaone.com/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.crwdcntrl.net^* ||adtag.sphdigital.com^* 1337x.unblocked.is##.__fp-a-show apkdot.com##.adslot.adsbygoogle apkdot.com##.advertisement-text !||go.ero-advertising.com/banner.go$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||go.ero-advertising.com^* !||www.bluehost.com/track/myaff/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.bluehost.com/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.hostmonster.com/track/myaff/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.hostmonster.com/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.imagefaq.info/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||go.hpyrdr.com/smartpop/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fixchidie.com^* !||sg2rgnza7k9t.com/pixel/purst$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sg2rgnza7k9t.com^* ||cjf25jklrwqt.com^* ||zop381q5o0q1.com^* ||padsipz.com^* ||mixloads.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||get.mirando.de/mirando.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||get.mirando.de^* ||allartand.club^* ||go.automatad.com^* ||b2cdn.automatad.com^* ||d261u4g5nqprix.cloudfront.net^* !||vaughncdn.xyz/images/campaigns/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vaughncdn.xyz^* ||econdardseeg.site^* !||scionpush.space/images/campaigns/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||scionpush.space^* ||briticatederfd.site^* ||d18mealirgdbbz.cloudfront.net^* ||www.ctx.me/r.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cache.kwork.ru/images/partner/03.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cache.kwork.ru/images/partner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static-v2.getsecuredsearch.com^* ||static.getsecuredsearch.com^* ||datastore.getsecuredsearch.com^* ||getsecuredsearch.com^* ||katie.ttnrd.com^* ||privacysearching.com^* ||websafetycheck.com^* !||6109.negleyns.com/match-6109/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||6109.negleyns.com^* ||geo.yahoo.com^* ||tr.systweak.com^* ||www.systweak.com^* ||systweak.com^* ||lp.smartdrivercare.com^* ||www.smartdrivercare.com^* ||smartdrivercare.com^* www.packtpub.com###packt_gdpr_container:remove() upload.ac##.__fp-a-show:remove() threatpost.com##.gdprPopup:remove() www.fanatical.com##div.show.collapse:remove() www.sciencemag.org###donation2020:remove() ||mooantink.com^* ||wastesshimssat.world/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||offgashah.club^* ||joyekepus.online^* !||cicero-mit.com/imp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cicero-mit.com^* www.dodears.info##+js(abort-current-inline-script, zfgloadednative) www.dodears.info##+js(abort-on-property-write, zfgloadednative) www.dodears.info##+js(abort-on-property-read, zfgloadednative) ||www.dodears.info/wp-content/plugins/wp-safelink-v3/assets/fuckadblock.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static.lalaping.com/online.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.lalaping.com^* ||www.nta1vb6cdlrl.com^* ||nta1vb6cdlrl.com^* www.magnetforensics.com##.cookie-banner:remove() subscription.packtpub.com##.cc-banner.cc-window:remove() hexupload.net##div[id^="rn_ad_native_"]:remove() hexupload.net##ins[class="adsbygoogle"]:remove() ||d22sfab2t5o9bq.cloudfront.net^* ||yy9s51b2u05z.com^* hexupload.net##+js(abort-on-property-write, createOffer) hexupload.net##+js(abort-on-property-read, createOffer) hexupload.net##+js(abort-on-property-write, adCashMacros) hexupload.net##+js(abort-on-property-read, adCashMacros) hexupload.net##+js(set-constant, adblock_detected, 0) ||stymcatddkl.com^* ||hadslimz.com^* !||ro7s8wo57qnb.com/pixel/pure$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ro7s8wo57qnb.com^* !||dnhfi5nn2dt67.cloudfront.net/sentinel.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dnhfi5nn2dt67.cloudfront.net^* ||bngpt.com^* ||cams.gratis/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||go.arminius.io^* ||kmhodhhdvulnn.com^* ||dropmefiles.com/js/video-js/videojs.ads$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stat.inetcom.ru^* dropmefiles.com##div[class="google_bnr"]:remove() www.dodears.info##div[class$="quads-ad3"]:remove() www.dodears.info##div[id="quads-ad3"]:remove() ||5db8d92zi2.com^* ||wi3brxwr2b3v.com^* hexupload.net##^script:has-text(runAdblock) hexupload.net##+js(remove-node-text, script, /runAdblock/gm) ||d1af033869koo7.cloudfront.com^* insider.espn.com##.promo-banner-container:remove() ||antirgiocub.com^* ||www.antirgiocub.com^* ||www.alwsbnvialll.com^* ||alwsbnvialll.com^* ||www.crwmqldwc.com^* ||crwmqldwc.com^* ||httpurl.blogspot.com^* liliputing.com##.adtester-container-102 liliputing.com##.adtester-container-112 liliputing.com##.ezo_ad liliputing.com###div-gpt-ad-liliputing_com-large-leaderboard-1-0 liliputing.com##.adtester-container ||www.egfqtvewksktz.com^* ||egfqtvewksktz.com^* ||www.bcuuipewdz.com^* ||bcuuipewdz.com^* ||www.celeritascdn.com^* ||celeritascdn.com^* ||record.revenuenetwork.com^* ||www.bovada.lv^* ||pro2.webtrekk-us.net^* ||backend.finalono.com^* ||totecaust-requeslie.com^* ||pl.fbzm.xyz^* ||www.fbzm.xyz^* ||fbzm.xyz^* ||www.aaoqq.site^* ||aaoqq.site^* www.linuxuprising.com##div[class="ads-posting"]:remove() www.linuxuprising.com##div[class="ezoic-adpicker-ad"]:remove() !www.linuxuprising.com##div[id="adsense-top-horiz"]:remove() www.linuxuprising.com##div[id^="adsense-"]:remove() www.linuxuprising.com##div[id^="ads-post"]:remove() www.linuxuprising.com##span[data-ez-ph-id]:remove() www.linuxuprising.com##span[class*="ezoic-ad"]:remove() www.linuxuprising.com##span[id^="div-gpt-ad-"]:remove() www.linuxuprising.com##span[id^="ezoic-pub-ad-placeholder-"]:remove() www.linuxuprising.com##+js(abort-on-property-write, ez_ad_units) www.linuxuprising.com##+js(abort-on-property-read, ez_ad_units) www.linuxuprising.com##+js(abort-on-property-write, ezAdUnits) www.linuxuprising.com##+js(abort-on-property-read, ezAdUnits) www.linuxuprising.com##+js(abort-on-property-write, adUnitCode) www.linuxuprising.com##+js(abort-on-property-read, adUnitCode) www.linuxuprising.com##+js(abort-on-property-write, getGooglePersonalization) www.linuxuprising.com##+js(abort-on-property-read, getGooglePersonalization) ||events.gfe.nvidia.com^* ||activation.gfe.nvidia.com^* web.archive.org###yt-consent-iframe:remove() web.archive.org##.yt-consent-dialog-content:remove() web.archive.org###yt-consent-dialog:remove() web.archive.org###yt-dialog-bg:remove() ||r.mradx.net^* ||limg.imgsmail.ru/informers/abp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css cloud.mail.ru##+js(acs, window.performance.memory) cloud.mail.ru##+js(acs, window.__knownBlocker) cloud.mail.ru##+js(acs, abpDetected) !cloud.mail.ru##+js(nofab) !||consentmanager.mgr.consensu.org/delivery/cmp.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||consentmanager.mgr.consensu.org/delivery/pixel.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||consentmanager.mgr.consensu.org^* !||cdn.consentmanager.mgr.consensu.org/delivery/cmp_en.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.consentmanager.mgr.consensu.org^* ||justtomake.com^* ||fnacgbik9v14.com^* ||push.adsconverts.com^* ||ladsats.com^* tutel.me##span[id^="ezoic-pub-ad-placeholder-"]:remove() tutel.me##span[id^="div-gpt-ad-tutel_me-banner-"]:remove() tutel.me##span[class*="ezoic-ad"]:remove() !||hackforums.net/uploads/mam/286.gif$image !||hackforums.net/uploads/mam/285.gif$image !||hackforums.net/uploads/mam/267.png$image !||hackforums.net/uploads/mam/266.gif$image ||hackforums.net/uploads/mam/$image ||via.placeholder.com^* ||lp.systemcleaner.online^* ||systemcleaner.online^* !||cdn.adligature.com/ucheats/prod/rules.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.adligature.com^* www.unknowncheats.me##+js(set-constant, blocked, false) www.unknowncheats.me##+js(acs, adsample) www.unknowncheats.me##+js(acs, testURL) www.unknowncheats.me##^script:has-text(adsBlocked):remove() www.unknowncheats.me##^script:has-text(adsample):remove() www.unknowncheats.me##+js(remove-node-text, script, /adsBlocked|adsample/gm) www.unknowncheats.me##div[id^="div-gpt-ad-"]:remove() www.unknowncheats.me##div[id^="ab_notice"]:remove() ||www.unknowncheats.me/forum/images/ez/iwc-hiring.gif$image news.thewindowsclub.com##span[id^="div-gpt-ad-"]:remove() news.thewindowsclub.com##span[class^="ezoic-ad"]:remove() ||theweblocker.net/video_locker/shorten/locker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css shorten.sh###cookie-pop:remove() ||ilkmawgod.site^* ||asewlfjqwlflkew.com^* ||shorten.sh/popunder/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d7016uqa4s0lw.cloudfront.net^* ||ailpielei.com^* reviews.thewindowsclub.com##+js(acs, _audins_dom) reviews.thewindowsclub.com##+js(acs, googleAdClient) reviews.thewindowsclub.com##span[id^="div-gpt-ad"]:remove() reviews.thewindowsclub.com##span[id^=".adtester-container"]:remove() reviews.thewindowsclub.com##span[id^="ezoic-pub-ad"]:remove() reviews.thewindowsclub.com##+js(aopr, googletag) reviews.thewindowsclub.com##.adtester-container:remove() ||m9m6e2w5.stackpathcdn.com/v2/1b36bc61/affiliatelinks.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css tuiskeimode.web.fc2.com##div[id="as-sys"]:remove() tuiskeimode.web.fc2.com##+js(acs, microadCompass) tuiskeimode.web.fc2.com##^script:has-text(microadCompass):remove() tuiskeimode.web.fc2.com##+js(remove-node-text, script, /microadCompass/gm) tuiskeimode.web.fc2.com##div[id="fc2_ad_box"]:remove() tuiskeimode.web.fc2.com##div[id="ad_script_box"]:remove() tuiskeimode.web.fc2.com##div[id="fc2_bottom_bnr"]:remove() !||trackad.cz/get/webgarden.cz/2006-generic/strip$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||trackad.cz/adtrack.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||trackad.cz/js/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||trackad.cz/events.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||trackad.cz^* !||hb.adscale.de/dsh$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hb.adscale.de^* ||c-ng.imedia.cz/impression?d=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||res.ads.nicovideo.jp/assets/js/ads2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||res.ads.nicovideo.jp^* www.vector.co.jp##+js(acs, adsbygoogle) www.vector.co.jp##div[id="ad_listing"]:remove() www.vector.co.jp##div[id="ad_dlsquare"]:remove() www.vector.co.jp##div[id="ad_special1"]:remove() www.vector.co.jp##div[id="v_sub"]:remove() www.vector.co.jp##div[id="vec_banner_block"]:remove() www.vector.co.jp##div[id="ad_vectorlarge"]:remove() www.vector.co.jp##ins[class="adsbygoogle"]:remove() ||www.vector.co.jp/common/css/adposchange.css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ad.jp.ap.valuecommerce.com/servlet/gifbanner$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.jp.ap.valuecommerce.com^* www.gratisgames24.ch##+js(acs, adsbygoogle) www.gratisgames24.ch##+js(acs, adscontent) www.gratisgames24.ch##+js(acs, adsense) www.gratisgames24.ch##+js(set-constant, enable_page_level_ads, false) www.gratisgames24.ch##+js(acs, google_ad_client) www.gratisgames24.ch##ins[class="adsbygoogle"]:remove() www.gratisgames24.ch##span[id="cookieconsent:desc"]:remove() www.gratisgames24.ch##div[class="cc-compliance"]:remove() www.gratisgames24.ch##+js(acs, data-ad-client) www.gratisgames24.ch##+js(set-constant, a, null) www.gratisgames24.ch##^script:has-text(DOMNodeRemoved):remove() www.gratisgames24.ch##+js(remove-node-text, script, /DOMNodeRemoved/gm) ||content.chip.de/cac/adgoal.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||content.chip.de/cac/adconfig.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adtm.chip.de/launch/chip/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adtm.chip.de^* ||adigp.com/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css adigp.com##div[class="banner banner-468x60"]:remove() adigp.com##div[class="myTestAd"]:remove() forum.xda-developers.com##.sponsor-dyn-banner:remove() ||forum.xda-developers.com/huawei-hub/images/2020/huawei_next_image_300x100.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dkyp75kj7ldlr.cloudfront.net^* ||p.zetadeo.com^* ||verifyclicksolutions.com^* !||89.41.170.226/verify.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||89.41.170.226/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tag.escalated.io^* ||techcola.com/wp-content/uploads/rs-pinger.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||measur-d.com^* ||js.mobileoffers-bn-download.com^* forum.xda-developers.com###adhesive_container ||img.contema.ru/getimage.ashx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css&adv=banner$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||j.contema.ru/main.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||j.contema.ru^* ||cdn-magiclinks.trackonomics.net^* ||propeller-tracking.com^* ||grubsoan.com^* ||www.olkrzytv.com^* ||olkrzytv.com^* !||ua.yektanet.com/__fake.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ua.yektanet.com^* knewz.com##ins[class="adsbygoogle"]:remove() rsload.net##a[href*="//go.webredir.net/"]:remove() rsload.net##a[href^="https://click.1k3web.net"]:remove() rsload.net##a[href*="//go.click2bit.net/r/"]:remove() ||rsload.net/728-90.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rsload.net/images5/dsramka.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rsload.net/images5/2019-02-14-16-30-19.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rsload.net/images5/23897422784923400.png$image ||rsload.net/images5/283964230.png$image ||rsload.net/images5/fastik.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rsload.net/images5/downasd.png$image ||rsload.net/images5/downasd1.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rsload.net/images5/51rsload5895.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rsload.net/images5/ban5479345780.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rsload.net/images5/7w389045390570.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rsload.net/images5/telamon_.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.fangthatsack.com^* ||fangthatsack.com^* ||client.trackpush.com^* ||api.trackpush.com^* ||inpage-feed.trackpush.com^* ||native-feed.trackpush.com^* ||1shortlink.com/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css 1shortlink.com##div[id="alert-required-disable-blocker"] 1shortlink.com##div[class="alert alert-danger"] !1shortlink.com##div[id="M519726ScriptRootC893151"] !1shortlink.com##div[id="M519726ScriptRootC893161"] !1shortlink.com##div[id="M462533ScriptRootC758132"] !1shortlink.com##div[id="M519726ScriptRootC882273"] !1shortlink.com##div[id="M462533ScriptRootC764182"] !1shortlink.com##div[id="M519726ScriptRootC784342"] 1shortlink.com##div[id*="ScriptRootC"] 1shortlink.com##+js(aopr, max_ads) 1shortlink.com##+js(aopw, max_ads) 1shortlink.com##+js(aopr, ads_interval) 1shortlink.com##+js(aopw, ads_interval) 1shortlink.com##+js(set-constant, isReadyToGetLink, 1) 1shortlink.com##+js(abort-current-inline-script, showAlertRequireDisableAdblocker) 1shortlink.com##+js(set-constant, letShowAds, true) ||www.pinterest.es/resource/StatsLogResource/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||1l-go.mail.ru/r/adid/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xd0wnl0adx.com^* ||adspace.pro^* ||www1.getsecurify.com^* ||www.getsecurify.com^* ||getsecurify.com^* torrentzilla.org##+js(acs, $is_ABP_whitelisted) torrentzilla.org##+js(aopr, $is_ABP_whitelisted) torrentzilla.org##+js(aopw, $is_ABP_whitelisted) ||glookalr.com^* ||mawsewtow.com^* ||brightcombid.marphezis.com^* ||src.ebay-us.com/fp/check.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||smetrics.solarwinds.com^* !||trk.techtarget.com/tracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||trk.techtarget.com^* ||api.downloadland.world/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||testupgrade.playnewvideoonnet.info^* ||playnewvideoonnet.info^* ||mr2cnjuh34jb.com^* ||offoonguser.com^* !||dataf0ral1.com/mmd/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dataf0ral1.com^* !||fileshare.good-softwares.software/api/call.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fileshare.good-softwares.software/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||testupgrade.playnowvideoonnet.info^* ||playnowvideoonnet.info^* ||u07k3pqfw5jh.com^* ||z3dmbpl6309s.com^* shorten.sh##.banner-inner ||content.googleapis.com/drive/v2internal/viewerimpressions$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||metrics.api.drift.com/monitoring/metrics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||metrics.api.drift.com^* !||targeting.api.drift.com/impressions/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||targeting.api.drift.com^* ||baidupan.cdn.bcebos.com/baidu_share.png$image www.faqforge.com###ezmobfooter:remove() www.faqforge.com##span[id^="div-gpt-ad-faqforge_com"]:remove() whatismyipaddress.com###adleft:remove() ||api.advarkads.com^* www.vrgame520.com##div[class="mianze_fixed"] www.vrgame520.com##div[class="mianze_mask"] www.vrgame520.com##div[class="a_cn"] www.vrgame520.com##div[class="a_mu"] www.vrgame520.com##div[class="y mtw"] www.vrgame520.com##ul[class="slideshow"] www.vrgame520.com##ul[class="h2o_diy_tuwen"] ||www.vrgame520.com/data/attachment/common/cf/092122oz6m553rr3qvvt1b.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.vrgame520.com/data/attachment/portal/202005/30/131012lasgs8peep58pjas.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.vrgame520.com/data/attachment/portal/202005/30/085540icsrcoo6v6bltlzl.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rutrk.org/bn/skladchik/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||titoaktop.com/1clkn/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||titoaktop.com^* ||repruggob.com^* d2.consoletarget.com##ins[class="adsbygoogle"]:remove() d2.consoletarget.com##+js(abort-current-script, AVPWCAP=) d2.consoletarget.com##+js(abort-on-property-read, AVPWCAP=) d2.consoletarget.com##+js(abort-on-property-write, AVPWCAP=) d2.consoletarget.com##^script:has-text(AVPWCAP=) d2.consoletarget.com##+js(remove-node-text, script, /AVPWCAP\s?=/gm) d2.consoletarget.com##+js(abort-current-script, adsbygoogle) d2.consoletarget.com##^script:has-text(adsbygoogle) d2.consoletarget.com##+js(remove-node-text, script, /adsbygoogle/gm) ||misspkl.com^* ||b.dombnrs.com^* ||spreement.com^* ||cdn.trafficbass.com^* ||z.cdn.trafficbass.com^* !||master-push.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||master-push.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rugames.net/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rugames.net/templates/rugames/images/bnr/ya1.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gg.wiretarget.com/aa_bb.htm$subdocument ||gg.wiretarget.com/a_b.htm$subdocument !||getfilelic.site/download/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||getfilelic.site^* ||crackreactor.org^* ||www.jyvsoft.com^* ||jyvsoft.com^* !||s.nitropay.com/ads-51.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.nitropay.com^* community.pcgamingwiki.com##^script:has-text(createAd):remove() community.pcgamingwiki.com##^script:has-text(nitroAds):remove() community.pcgamingwiki.com##+js(remove-node-text, script, /createAd|nitroAds/gm) community.pcgamingwiki.com##+js(abort-current-script, nitroAds) community.pcgamingwiki.com##+js(abort-current-script, createAd) www.sysnettechsolutions.com##.header-addition:remove() !||dxyziqqc848xj.cloudfront.net/wflfzhxm&3xnp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dxyziqqc848xj.cloudfront.net^* ||chitlurkedoaks.cam^* www.javadecompilers.com##span[class="ez-report-ad-button"]:remove() www.javadecompilers.com##span[id^="ezoic-pub-ad-placeholder-"]:remove() www.javadecompilers.com##span[id^="div-gpt-ad-javadecompilers_com"]:remove() www.javadecompilers.com##div[class^="ezmob-footer"]:remove() www.javadecompilers.com##span[class^="ezmob-footer"]:remove() ||www.javadecompilers.com/ezoic/anchorfix.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.javadecompilers.com##div[id^="div-gpt-ad-"]:remove() www.javadecompilers.com##+js(abort-current-script, isClean) www.javadecompilers.com##+js(abort-on-property-read, isClean) www.javadecompilers.com##+js(abort-on-property-write, isClean) www.javadecompilers.com##+js(abort-current-script, window.ez_ad_units) www.javadecompilers.com##+js(abort-on-property-read, window.ez_ad_units) www.javadecompilers.com##+js(abort-on-property-write, window.ez_ad_units) www.javadecompilers.com##+js(abort-current-script, window.ezslots) www.javadecompilers.com##+js(abort-on-property-read, window.ezslots) www.javadecompilers.com##+js(abort-on-property-write, window.ezslots) www.javadecompilers.com##+js(abort-current-script, window.ezsrqt) www.javadecompilers.com##+js(abort-on-property-read, window.ezsrqt) www.javadecompilers.com##+js(abort-on-property-write, window.ezsrqt) www.javadecompilers.com##+js(abort-current-script, ezcmd) www.javadecompilers.com##+js(abort-on-property-read, ezcmd) www.javadecompilers.com##+js(abort-on-property-write, ezcmd) www.javadecompilers.com##+js(abort-current-script, ez_ad_units.length) www.javadecompilers.com##+js(abort-on-property-read, ez_ad_units.length) www.javadecompilers.com##+js(abort-on-property-write, ez_ad_units.length) www.javadecompilers.com##+js(abort-current-script, window.isEZABL) www.javadecompilers.com##+js(abort-on-property-read, window.isEZABL) www.javadecompilers.com##+js(abort-on-property-write, window.isEZABL) www.javadecompilers.com##+js(abort-current-script, window.ezogetbrkey) www.javadecompilers.com##+js(abort-on-property-read, window.ezogetbrkey) www.javadecompilers.com##+js(abort-on-property-write, window.ezogetbrkey) www.javadecompilers.com##+js(abort-current-script, googleAdClient) www.javadecompilers.com##+js(abort-on-property-read, googleAdClient) www.javadecompilers.com##+js(abort-on-property-write, googleAdClient) www.javadecompilers.com##+js(abort-current-script, ezaxmns) www.javadecompilers.com##+js(abort-on-property-read, ezaxmns) www.javadecompilers.com##+js(abort-on-property-write, ezaxmns) www.javadecompilers.com##+js(abort-current-script, ezaucmns) www.javadecompilers.com##+js(abort-on-property-read, ezaucmns) www.javadecompilers.com##+js(abort-on-property-write, ezaucmns) www.javadecompilers.com##+js(abort-current-script, _0xa453) www.javadecompilers.com##+js(abort-on-property-read, _0xa453) www.javadecompilers.com##+js(abort-on-property-write, _0xa453) www.javadecompilers.com##+js(abort-current-script, adsbygoogle) www.javadecompilers.com##+js(abort-on-property-read, adsbygoogle) www.javadecompilers.com##+js(abort-on-property-write, adsbygoogle) www.javadecompilers.com##+js(abort-current-script, _ezaq) www.javadecompilers.com##+js(abort-on-property-read, _ezaq) www.javadecompilers.com##+js(abort-on-property-write, _ezaq) www.javadecompilers.com##^script:has-text(adsense):remove() www.javadecompilers.com##+js(remove-node-text, script, /adsense/gm) www.javadecompilers.com##+js(nobab) ||ahscdn.com^* desiupload.co##+js(abort-current-script, sora_base_url) desiupload.co##+js(abort-on-property-read, sora_base_url) desiupload.co##+js(abort-on-property-write, sora_base_url) desiupload.co##div[id*="ScriptRootC"]:remove() ||fryawlauk.com^* ||davidgreeninen.eklablog.com^* !||densuir.info/banners/api.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||densuir.info^* ||meanizo.top^* ||good.loadfree.pw^* ||cdn.jupican.info^* ||retailrewardsclub.net^* ||www.ledgerwallet.com/images/promo/banners/$image hothardware.com##.ad-top-billboard:remove() ||cdn.raidforums.com/i/RF_rrB5.gif$image raidforums.com##fieldset[class="advert"]:remove() ||dlfvgndsdfsn.com^* ||borntohell.com/wp-content/uploads/2020/05/Olymp-Trade-Banner-728x90-1.jpg$image rutracker.live##.ipprtcnt:remove() ||rutrk.org/240x120/200414_01.jpg$image ||rutrk.org/bn/skladchik/02/index.html$subdocument ||rutrk.org/800x160/200414_01.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rutracker.siteunblocked.net/ypo.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rutracker.siteunblocked.net/hkz$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rutracker.siteunblocked.net/&/?&$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css rutracker.siteunblocked.net##div[id="cookieConsent"]:remove() ||rutracker.siteunblocked.net/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||moowouzy.net^* ||matomo.hellohi.me^* ||zeegreen.net^* ||i99i.org/j/m/qqq.js/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||i.imgur.com/SNNHdSx.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rutracker.siteunblocked.net/hy.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mylink.vc/myadb$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mylink.vc/block-ads$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css mylink.vc##+js(abort-current-script, bmdfvtquoURL) mylink.vc##+js(abort-on-property-read, bmdfvtquoURL) mylink.vc##+js(abort-on-property-write, bmdfvtquoURL) ||ewftrgrs.com^* ||esasoud.net^* ||vimjarawl.com^* ||cogleapad.com^* www.gamesindustry.biz###onetrust-consent-sdk www.gamelife.com###ezmobfooter www.gamelife.com##.cookie-notice-container www.gamelife.com##.cookie-notice-container:remove() www.playground.ru##+js(abort-current-script, adfoxBiddersMap) www.playground.ru##+js(abort-on-property-read, adfoxBiddersMap) www.playground.ru##+js(abort-on-property-write, adfoxBiddersMap) www.playground.ru##+js(abort-current-script, adUnits) www.playground.ru##+js(abort-on-property-read, adUnits) www.playground.ru##+js(abort-on-property-write, adUnits) www.playground.ru##+js(abort-current-script, adsbygoogle) www.playground.ru##+js(abort-on-property-read, adsbygoogle) www.playground.ru##+js(abort-on-property-write, adsbygoogle) www.playground.ru##+js(set-constant, userTimeout, 0) www.playground.ru##div[id^="div-gpt-ad-"] www.playground.ru##div[id^="adfox_"] !||epl.paypal-communication.com^* !||www.paypal-communication.com^* !||paypal-communication.com^* ||offer.slgnt.eu^* dropapk.*##+js(acs, Object.defineProperty, vocabulary) dropapk.*##+js(acs, document.createElement, 'script') dropapk.*##+js(aeld, load, 2000) dropapk.*##+js(aopr, AaDetector) dropapk.*##+js(aopw, Fingerprint2) dropapk.*##+js(aopw, _pop) dropapk.*##+js(nowebrtc) ||vk77lnizckm6.com^* ||cgx68vtoprov.com^* ||ccpa-service.sp-prod.net^* ||ccpa-notice.sp-prod.net^* ||notice.sp-prod.net^* ||consent.notebookreview.com^* !||sourcepoint.mgr.consensu.org/consent/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sourcepoint.mgr.consensu.org^* !||cdn.ttgtmedia.com/cmp/sourcepoint/sp-msg.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.ttgtmedia.com/cmp/sourcepoint/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.audiencemanager.de/hb$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ccpa.sp-prod.net/ccpa.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ccpa.sp-prod.net^* !||sp-js-releases.s3.amazonaws.com/0/2.0.1083/auto_opt_in-v2.0.1083.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sp-js-releases.s3.amazonaws.com^* ||notebookreview.us.intellitxt.com^* ||xqheb9yszyrd.com^* ||datastore.thepdfexpert.com^* ||leaurned-fundonals.com^* ||l2ksixujfcg5.com^* ||mv3kosrrlxa7.com^* ||datsgirl.com^* ||esmo.pro^* ||k4bg1u10omks.com^* ||fgddl9szdof7.com^* download.ru###place117:remove() ||areasons.club^* ||sinaunrelean.info^* ||yescomition.club^* !||www1a.michellehardin.pro/am-push-cps.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.michellehardin.pro/am-push-cps.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||37.1.209.213^* ||bestprizesday2.life^* ||bgnagbnamf23.live^* !||tdsjsext1.com/ExtService.svc/getextparams$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tdsjsext1.com^* mshares.co##+js(abort-current-script, ads_block) mshares.co##+js(abort-on-property-read, ads_block) mshares.co##+js(abort-on-property-write, ads_block) mshares.co##+js(set-constant, ads_block, false) mshares.co##+js(abort-current-script, ads_script_list) mshares.co##+js(abort-on-property-read, ads_script_list) mshares.co##+js(abort-on-property-write, ads_script_list) mshares.co##div[class="yoads_network_widget"]:remove() mshares.co##div[class="ads_336"]:remove() ||mshares.co/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||sereendipit.com/push/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sereendipit.com^* !||wherently.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wherently.com^* ||kaforsingto.cf^* freedbush.site#ins[class="adsbygoogle"]:remove() freedbush.site##+js(abort-current-script, adsbygoogle) freedbush.site##+js(abort-on-property-read, adsbygoogle) freedbush.site##+js(abort-on-property-write, adsbygoogle) freedbush.site##+js(abort-current-script, app_vars) freedbush.site##+js(abort-on-property-read, app_vars) freedbush.site##+js(abort-on-property-write, app_vars) !||freedbush.site/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||producebreed.com^* ||only-soft.org/images/vk-46-1.png$image ||only-soft.org/images/vk-728.png$image shrinkme.io###cookie-pop:remove() !||tags.audionews.fm/sticky-embed.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tags.audionews.fm/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css srt.leechpremium.link###cookie-pop:remove() linksly.co###cookie-pop:remove() ||a3yqjsrczwwp.com^* ||bblhusg085sh.com^* ||static.pingit.im/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||sw.wpu.sh/ps/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||sw.wpu.sh/ps/config.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||sw.wpu.sh/ps/sworker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sw.wpu.sh^* ||easyjetset.online^* ||pornq.com^* ||st.tubecorporate.com^* ||vasgenerete.site^* ||tds.tuberl.com^* ||au79nt5wic4x.com^* ||5pr1sfzsl9.com^* slink.bid###cookie-pop:remove() stfly.me###cookie-pop:remove() ||d24ak3f2b.top^* ||dhb8psqhvz9a.com^* ||e1bl1t39c4.com^* !||cdn4ads.com/HmB.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn4ads.com/Lpf.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn4ads.com^* ||otrwaram.com^* ||russianteen.info^* ||3naked.com^* ||clickaine1.com^* ||aulingimpora.club^* ||d36zfztxfflmqo.cloudfront.net^* !||iclickcdn.com^$3p ||iclickcdn.com^* ||linksly.co/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||linksly.co/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pornq1.lisadeleeuwporn.com^* ||pornq1.marilynjessporn.com^* ||unknowlejir.club^* ||mrjb7hvcks.com^* ||optiads.org^* ||vsa74.tawk.to^* stfly.me###_hevs2tr:remove() stfly.me###p_3381275:remove() www.revouninstaller.com###consentAccepted:remove() www.onlinetutorials.org###ezmobfooter:remove() www.onlinetutorials.org##.adtester-container:remove() ||qfjherc.com^* ||coltagainst.pro^* ||unity.allfreeassets.com/wp-content/plugins/deblocker/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||unity.allfreeassets.com/wp-content/plugins/cleantalk-spam-protect/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||unity.allfreeassets.com/wp-content/plugins/google-analytics-premium/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||unity.allfreeassets.com/wp-content/plugins/ungrabber/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !unity.allfreeassets.com##.active.mdp-deblocker-blackout:remove() allfreeassets.com##.active.mdp-deblocker-blackout:remove() allfreeassets.com##+js(set-constant, adsBlocked, falseFunc) allfreeassets.com##+js(set-constant, window.mdpDeBlockerDestroyer, false) allfreeassets.com##+js(set-constant, disableTextSelection, noopFunc) allfreeassets.com##+js(set-constant, disableContextMenu, noopFunc) allfreeassets.com##+js(set-constant, disableHotKeys, noopFunc) allfreeassets.com##+js(set-constant, disableDeveloperTools, noopFunc) allfreeassets.com##+js(abort-current-script, mi_track_user) allfreeassets.com##+js(abort-on-property-read, mi_track_user) allfreeassets.com##+js(abort-on-property-write, mi_track_user) allfreeassets.com##+js(set-constant, mi_track_user, false) allfreeassets.com##+js(abort-current-script, adsbygoogle) allfreeassets.com##+js(abort-on-property-read, adsbygoogle) allfreeassets.com##+js(abort-on-property-write, adsbygoogle) allfreeassets.com##ins[class="adsbygoogle"]:remove() allfreeassets.com##+js(abort-current-script, mdp_deblocker) allfreeassets.com##+js(abort-on-property-read, mdp_deblocker) allfreeassets.com##+js(abort-on-property-write, mdp_deblocker) allfreeassets.com##+js(set-constant, mdp_deblocker, null) ||akxml.nativeadsfeed.com^* ||cdn.adx1.com^* ||givestment.club^* ||volutionwarness.site^* ||whetherecyclo.fun^* ||www1a.michellehardin.pro/am-push.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||3869630.notify6.com^* ||autoticke.xyz^* ||catlliw.xyz^* ||clearbriefing.xyz^* ||diol.site^* ||goodwincdn.xyz^* ||penguinpush.space^* ||piercedaubney.xyz^* ||purrssi.xyz^* ||pushstatus.xyz^* ||ridleycdn.xyz^* ||shelaitken.xyz^* ||tounthic.site^* ||uselnk.com^* freedbush.site##+js(set-constant, blurred, false) ||videofileconvertpro.xyz^* !||0-australiaeast1.pushp.svc.ms/socket.io^* ||0-australiaeast1.pushp.svc.ms^*document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||arklangr.com/etag$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||arklangr.com/log/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||arklangr.com/port_check/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||arklangr.com/time_visit/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||arklangr.com^* ||estoopsi.com^* ||secavpland.me^* ||vanderlisten.pro^* ||pushmejs.com^$3p ||xioodnxc1p1a.com^* ||w00ur5z9jy3a.com^* !||vanderlisten.pro/v3/a/pop/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pl15124482.passeura.com^* !||pl15531518.passtechusa.com^* !||pl15531536.passtechusa.com^* ||p*.passeura.com^* ||p*.passtechusa.com^* ||onemboaran.com^* ||inpcut.com^* ||3sk7d418al8u.com^* ||short.slink.bid/pingit/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.adstream.com.ro^* ||ads.allegro.pl^* ||ads.atmosphere.copernicus.eu^* ||ads.bigbom.com^* ||ads.brave.com^* ||ads.buscaempresas.co^* ||ads.colombiaonline.com^* ||ads.comeon.com^* ||ads.cvut.cz^* ||ads.dev.int.revelian.com^* ||ads.dollartree.com^* ||ads.elcarado.com^* ||ads.harvard.edu^* ||ads.lapalingo.com^* ||ads.lordlucky.com^* ||ads.microsoft.com^* ||ads.mobilebet.com^* ||ads.msstate.edu^* ||ads.nc^* ||ads.nimses.com^* ||ads.odesbuild.com^* ||ads.pinterest.com^* ||ads.quasaraffiliates.com^* ||ads.red^* ||ads.route.cc^* ||ads.safi-gmbh.ch/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.sk/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.snapchat.com^* ||ads.socialtheater.com^* !||win2url.com/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||oufauthy.net^* ||ladsabs.com^* ||tme2wrwzz3wh.com^* ||allmygoodlife.com^* ||yb7a1bb6k1.com^* ||www.intellipopup.com/swiper.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||zav4gln44kez.com^* ||nah9v7mdppff.com^* ||8ozhygzz5eke.com^* win2url.com###cookie-pop:remove() inksly.co##div.banner-captcha:remove() !linksly.co###container-8ae69d290a2d63adb366bce605c837cc linksly.co##div[class^="container-"]:remove() ||mamanatempsplein.com^* unityassetsfree.wordpress.com##.widget_eu_cookie_law_widget:remove() ||acceptable.a-ads.com^* ||a.republer.com^* ||adserver.otm-r.com^* ||g.adspeed.net^* ||public.advarkads.com^* ||s3.advarkads.com^* ||spylees.com/vast.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stats.seedr.com^* !||statsa.nativeroll.tv/nr/aserver/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||statsa.nativeroll.tv^* ||v.adfox.ru^* !||media1.admicro.vn/cms/Arf.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||storage.fshare.vn/images/075210082016720x300.png$image ||www.fshare.vn/js/download/jwp_adsvip.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.fshare.vn/lib/video/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.fshare.vn/media/banner_Fshare/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !www.fshare.vn###popup-eventFollowFolder !www.fshare.vn##.in.modal-backdrop www.fshare.vn###eclick_ads_frame0_ins www.fshare.vn##.topbg > .wrap.container > .padding-v-15 > .hidden-sm.ad-wrapper www.fshare.vn##div[id="showVideo"] ! TODO: ^script doesn't work with attributes since checked before DOM created? !www.fshare.vn##script[id="arf-core-js"]:remove() www.fshare.vn##+js(abort-on-property-write, stringDataAds) www.fshare.vn##+js(abort-on-property-read, stringDataAds) www.fshare.vn##+js(abort-on-property-write, Adomik.randomAdGroup) www.fshare.vn##+js(abort-on-property-read, Adomik.randomAdGroup) www.fshare.vn##+js(abort-on-property-write, window.Adomik) www.fshare.vn##+js(abort-on-property-read, window.Adomik) www.fshare.vn##+js(abort-on-property-write, googletag) www.fshare.vn##+js(abort-on-property-read, googletag) www.fshare.vn##+js(abort-on-property-write, adsbygoogle) www.fshare.vn##+js(abort-on-property-read, adsbygoogle) www.fshare.vn##div[class^="adsplay-placement"] www.fshare.vn##ins[class="adsbygoogle"]:remove() www.fshare.vn##+js(set-constant, minutes, 0) !||ads-cdn.fptplay.net/static/sdk/website/*/adsplay-banner.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads-cdn.fptplay.net^* ||ads.tiktok.com^* ||ads.toplayaffiliates.com^* ||ads.viksaffiliates.com^* ||ads.watson.ch/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.xtribeapp.com^* ||ads.yahoosmallbusiness.com^* ||gamma.cachefly.net/js/ad-exchange.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||script.tapfiliate.com/tapfiliate.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||script.tapfiliate.com^* !||adylalahb.ru/clickunder-out/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adylalahb.ru^* ||catds.net/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||catds.net/uid/pixel$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||focdn.net/js/ad.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.ni93.com##div[class="a_fl"]:remove() !unity928.rssing.com##+js(abort-on-property-write, gdprAppliesGlobally) !unity928.rssing.com##+js(abort-on-property-read, gdprAppliesGlobally) rssing.com##+js(abort-on-property-write, gdprAppliesGlobally) rssing.com##+js(abort-on-property-read, gdprAppliesGlobally) !unity928.rssing.com##div[class^="cs-header-kanner"]:remove() !unity928.rssing.com##div[class^="rs-ad"]:remove() !unity928.rssing.com##div[class$="sssticky-indx-banner"]:remove() !unity928.rssing.com##div[class="adsbyvli"]:remove() rssing.com##div[class="adsbyvli"]:remove() rssing.com##div[class^="cs-header-kanner"]:remove() rssing.com##div[class^="rs-ad"]:remove() rssing.com##div[class$="sssticky-indx-banner"]:remove() rssing.com##div[class^="rs-sticky-sidebar-ad"]:remove() ||static.vliplatform.com^* makaka.org##div[id="catapult-cookie-bar"]:remove() www.onlinefreecourse.net##+js(set-constant, adsBlocked, falseFunc) www.onlinefreecourse.net##+js(set-constant, window.mdpDeBlockerDestroyer, false) www.onlinefreecourse.net##+js(set-constant, disableTextSelection, noopFunc) www.onlinefreecourse.net##+js(set-constant, disableContextMenu, noopFunc) www.onlinefreecourse.net##+js(set-constant, disableHotKeys, noopFunc) www.onlinefreecourse.net##+js(set-constant, disableDeveloperTools, noopFunc) www.onlinefreecourse.net##+js(abort-on-property-write, betterads_screen_width) www.onlinefreecourse.net##+js(abort-on-property-read, betterads_screen_width) www.onlinefreecourse.net##+js(abort-on-property-write, betterads_el_width) www.onlinefreecourse.net##+js(abort-on-property-read, betterads_el_width) www.onlinefreecourse.net##+js(abort-on-property-write, mdpDeBlocker) www.onlinefreecourse.net##+js(abort-on-property-read, mdpDeBlocker) www.onlinefreecourse.net##div[class*="ads_styling_"]:remove() www.onlinefreecourse.net##div[id="mdp-deblocker-ads"]:remove() www.onlinefreecourse.net##ins[class="adsbygoogle"]:remove() ||admixer.co.kr/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css sourcecodehubs.wordpress.com###eu-cookie-law:remove() ||udemycoursedownloader.net/wp-content/uploads/2017/12/green-icon-button-stripes-download-click-300x150.png$image !||cdn.advg.agency/static/offer/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.advg.agency^* !||betsonsport.ru/b/lend3.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||betsonsport.ru^* ||bankcomat.org/res/bankomat/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||esf397vsf1nk.com^* ||catwenbat.com^* ||www.freecoursesonline.me/wp-content/uploads/ad-inserter/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rugiomyh2vmr.com^* ||2cnjuh34jbpoint.com^* ||ulukaris.com/ssp/req/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tlp-05.kameleoon.com/visit.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css open3dmodel.com##.active.mdp-deblocker-blackout:remove() !||open3dmodel.com/wp-content/plugins/deblocker/js/deblocker.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||open3dmodel.com/wp-content/plugins/deblocker/js/ads.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||open3dmodel.com/wp-content/plugins/deblocker/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css open3dmodel.com##div[id="mdp-deblocker-ads"]:remove() open3dmodel.com##ins[class="adsbygoogle"]:remove() open3dmodel.com##+js(set-constant, adsBlocked, falseFunc) open3dmodel.com##+js(set-constant, window.mdpDeBlockerDestroyer, false) open3dmodel.com##+js(set-constant, disableTextSelection, noopFunc) open3dmodel.com##+js(set-constant, disableContextMenu, noopFunc) open3dmodel.com##+js(set-constant, disableHotKeys, noopFunc) open3dmodel.com##+js(set-constant, disableDeveloperTools, noopFunc) open3dmodel.com##+js(abort-on-property-write, mdp_deblocker) open3dmodel.com##+js(abort-on-property-read, mdp_deblocker) open3dmodel.com##+js(abort-on-property-write, adsbygoogle) open3dmodel.com##+js(abort-on-property-read, adsbygoogle) www.producerloops.com##span[id="cookieconsent:desc"]:remove() www.producerloops.com##div[aria-label="cookieconsent"]:remove() switowski.com##span[id="cookieconsent:desc"]:remove() switowski.com##div[aria-label="cookieconsent"]:remove() !||d3jaymjyiads5d.cloudfront.net/tracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d3jaymjyiads5d.cloudfront.net^* www.boredpanda.com##+js(set-constant, loadAds, noopFunc) www.boredpanda.com##+js(set-constant, window.initAdserver, noopFunc) www.boredpanda.com##+js(abort-on-property-write, loadAds) www.boredpanda.com##+js(abort-on-property-read, loadAds) www.boredpanda.com##+js(abort-on-property-write, window.adnet) www.boredpanda.com##+js(abort-on-property-read, window.adnet) www.boredpanda.com##+js(abort-on-property-write, googletag.pubadsReady) www.boredpanda.com##+js(abort-on-property-read, googletag.pubadsReady) www.boredpanda.com##+js(abort-on-property-write, m2hb.initAdserverSet) www.boredpanda.com##+js(abort-on-property-read, m2hb.initAdserverSet) www.boredpanda.com##+js(abort-on-property-write, m2hb.initAdserver) www.boredpanda.com##+js(abort-on-property-read, m2hb.initAdserver) www.boredpanda.com##+js(abort-on-property-write, window.initAdserver) www.boredpanda.com##+js(abort-on-property-read, window.initAdserver) www.w3docs.com##amp-user-notification[class^="cookie-disclaimer"]:remove() www.gearbest.com##div[class="cookiePolicy"]:remove() ||get.sportstream-search.com^* ||ptoushoa.com^* ||zofile.com/xFileSharingTemplates-js/analytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||zofile.com/xFileSharingTemplates-js/atrk.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css zofile.com##+js(abort-on-property-write, adsbygoogle) zofile.com##+js(abort-on-property-read, adsbygoogle) zofile.com##+js(set-constant, timeout, 0) zofile.com##+js(set-constant, enable_page_level_ads, false) ||yeaonesad.com^* ||padslims.com^* 000webhostapp.com##div[id="wpwrap"] ||000webhostapp.com/wp-content/plugins/google-analytics-for-wordpress/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.maketecheasier.com###incontent-ad1 ||cdn.000webhost.com/000webhost/logo/footer-powered-by-000webhost-white2.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css origin.80.lv##div[class="_2-Oc1"] !||datagather.xsolla.com/hit/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||datagather.xsolla.com^* ||hitfile.net/ajax/fdlogger/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.site2unblock.com##+js(abort-on-property-write, adsbygoogle) www.site2unblock.com##+js(abort-on-property-read, adsbygoogle) www.site2unblock.com##+js(abort-on-property-write, window.adsbygoogle) www.site2unblock.com##+js(abort-on-property-read, window.adsbygoogle) www.site2unblock.com##ins[class="adsbygoogle"]:remove() !||dsh7ky7308k4b.cloudfront.net/autoads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dsh7ky7308k4b.cloudfront.net^* ||ad.doubleclick.net/favicon.ico$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css service.unblock123.com##div[class="proxy_footer_box"] www.hostinger.com##div[id="cookie-consent"]:remove() www.hostinger.com##div[id="gdpr-consent"]:remove() www.hostinger.com##div[class*="gdpr-bottom-banner"]:remove() www.hostinger.com##+js(remove-node-text, script, /\.push\(\{['"]gtm\.start['"]/gm) www.hostinger.com##+js(remove-node-text, script, /function\(h\,o\,t\,j\,a\,r\)/gm) www.hostinger.com##script[id="ga-gtag"]:remove() debrid-file.com##div[class^="cookie-consent-popup"]:remove() ||tag.readserver.net^* ||onlinecoursebay.com/wp-content/plugins/deblocker/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css onlinecoursebay.com##div[id="mdp-deblocker-ads"]:remove() onlinecoursebay.com##ins[class="adsbygoogle"]:remove() onlinecoursebay.com##+js(set-constant, adsBlocked, falseFunc) onlinecoursebay.com##+js(set-constant, window.mdpDeBlockerDestroyer, false) onlinecoursebay.com##+js(set-constant, disableTextSelection, noopFunc) onlinecoursebay.com##+js(set-constant, disableContextMenu, noopFunc) onlinecoursebay.com##+js(set-constant, disableHotKeys, noopFunc) onlinecoursebay.com##+js(set-constant, disableDeveloperTools, noopFunc) onlinecoursebay.com##+js(abort-on-property-write, mdpDeBlocker) onlinecoursebay.com##+js(abort-on-property-read, mdpDeBlocker) onlinecoursebay.com##+js(abort-on-property-write, adsbygoogle) onlinecoursebay.com##+js(abort-on-property-read, adsbygoogle) uplod.net##+js(set-constant, adsBlocked, falseFunc) uplod.net##+js(set-constant, window.mdpDeBlockerDestroyer, false) uplod.net##+js(set-constant, disableTextSelection, noopFunc) uplod.net##+js(set-constant, disableContextMenu, noopFunc) uplod.net##+js(set-constant, disableHotKeys, noopFunc) uplod.net##+js(set-constant, disableDeveloperTools, noopFunc) uplod.net##+js(abort-on-property-write, mdpDeBlocker) uplod.net##+js(abort-on-property-read, mdpDeBlocker) !||www.redditstatic.com/ads/pixel.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.redditstatic.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.maketecheasier.com##ins[class="adsbygoogle"]:remove() www.maketecheasier.com##div[class$="ad-slot"]:remove() www.maketecheasier.com##div[class^="ad-slot"]:remove() ||mb.moatads.com^* ||px.moatads.com^* ||oo.moatads.com^* ||geo.moatads.com^* !||svastx.moatads.com/swf/moatwrapper.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||svastx.moatads.com^* !||vastx.moatads.com/swf/moatwrapper.swf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||vastx.moatads.com/bonniervpaid*/moatwrapper.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||vastx.moatads.com/bonniervpaid*/template.xml$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vastx.moatads.com^* !||apx.moatads.com/pixel.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||apx.moatads.com^* ||dbg52463.moatads.com^* ||moatads.com^$domain=forbes.com !||video.moatads.com/pixel.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||video.moatads.com^* !||pixel.moatads.com/pixel.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pixel.moatads.com^* !||v3.moatads.com/pixel.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||v3.moatads.com^* !||js.moatads.com/*/moatad.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||js.moatads.com/vidible7053834/moatad.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||js.moatads.com^* ||video.moatads.com/pixel.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s.moatads.com/forbes949SzQW17/moatcontent.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.moatads.com^* !||v4.moatads.com/pixel.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||v4.moatads.com^* !||z.moatads.com/condevideo847938582/moatvideo.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||z.moatads.com/onscrolldisplay537464193061/moatad.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||z.moatads.com/cbsprebidheader506831276743/moatheader.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css <- allow so zdnet and other cbs network websites videos will play ||z.moatads.com^* ||turbocap.net^* ||tb.turbocap.net^* srt.leechpremium.link##.BannerInner:remove() srt.leechpremium.link##._wg0rrdv:remove() srt.leechpremium.link###_ueg54uh:remove() srt.leechpremium.link###p_3422182:remove() ||baysexthy.com^* !||securepubads.g.doubleclick.net/gampad/ads$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||securepubads.g.doubleclick.net/pcs/view?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||securepubads.g.doubleclick.net/gpt/pubads_impl_*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||securepubads.g.doubleclick.net/static/glade.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||securepubads.g.doubleclick.net/tag/js/gpt.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||securepubads.g.doubleclick.net^* ||pubads.g.doubleclick.net/activity;$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pubads.g.doubleclick.net/gampad/ads$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pubads.g.doubleclick.net/gampad/adx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pubads.g.doubleclick.net/gampad/live/ads$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pubads.g.doubleclick.net/gampad/clk$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pubads.g.doubleclick.net/pagead/adview$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pubads.g.doubleclick.net/pagead/interaction/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pubads.g.doubleclick.net/pagead/conversion/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! TODO: Why is the following rule not used? !||pubads.g.doubleclick.net^* !||cdn.cookielaw.org/consent/$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.cookielaw.org/opt-out/otCCPAiab.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.cookielaw.org^$important,3p ||cdn.cookielaw.org^* www.onlinecourses.ooo##span[id^="div-gpt-ad-"]:remove() www.onlinecourses.ooo##span[id^="ezoic-pub-ad-placeholder"]:remove() www.onlinecourses.ooo##span[class="ezoic-adpicker-ad"]:remove() www.onlinecourses.ooo##span[class^="ezo_ad"]:remove() www.onlinecourses.ooo##div[class*="ezo_ad"]:remove() www.onlinecourses.ooo##.adtester-container:remove() ||rsalcau.com^* ||laininvitableim.club^* ||nscollectureob.info^* ||ulyssianeq.club^* www.clo3d.com##div[class="banner info"] ||2baksa.net/download/getmybrowser.png$image www.binaryfortress.com##div[id="CookieConsentDiv"]:remove() www.fbackup.com##div[id="cookie-gdpr"]:remove() www.backup4all.com##div[id="cookie-gdpr"]:remove() eu.hidester.com##+js(abort-on-property-write, adcashMacros) eu.hidester.com##+js(abort-on-property-read, adcashMacros) eu.hidester.com##div[id^="beacon_"] ||ad-cdn.technoratimedia.com^* ||thisiswaldo.com/new-impression$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s2s.rtk.io/setuid?bidder=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s2s.rtk.io^* ||bidder.rtk.io^* !||prebid.technoratimedia.com/openrtb/bids/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||prebid.technoratimedia.com^* !||prebid-match.dotomi.com/prebid/match?rurl=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||prebid-match.dotomi.com/match/bounce/current?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||prebid-match.dotomi.com^* !||eb2.3lift.com/getuid?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||eb2.3lift.com/sync?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||eb2.3lift.com^* ||img.3lift.com^* !||ib.3lift.com/rev/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ib.3lift.com/ttj?inv_code=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ib.3lift.com^* ||cdn.3lift.com/msn_infopane.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tlx.3lift.com/header/auction?lib=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tlx.3lift.com^* !||pdmp.dcapi.dmp.3lift.com/web/visit?$xhr,method=post ||pdmp.dcapi.dmp.3lift.com^* ||tru.am/page_views$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tru.am/scripts/custom/valnet.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tru.am/scripts/custom/mcclatchy.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tru.am/scripts/custom/cbsinteractive.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tru.am/scripts/custom/salon.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tru.am/scripts/custom/nbcuniversal.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tru.am/scripts/ta-pagesocial-sdk.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sync.rtk.io^* ||khg97644rvbg.com^* !||ntdload.com/click.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ntdload.com^* ||beonixom.com^* ||install.search-converter.com^* mirrored.to##+js(alert-buster.js) www.mirrored.to##.bottom-sticky-g:remove() www.mirrored.to##div[id="modal-bg"]:remove() www.mirrored.to##div[class^="dialog-javascript"]:remove() www.mirrored.to##style[id="antiClickjack"]:remove() www.mirrored.to##+js(abort-on-property-write, chain) www.mirrored.to##+js(abort-on-property-read, chain) www.mirrored.to##+js(abort-on-property-write, blockAdBlock) www.mirrored.to##+js(abort-on-property-read, blockAdBlock) www.mirrored.to##+js(abort-on-property-write, pageTracker) www.mirrored.to##+js(abort-on-property-read, pageTracker) www.mirrored.to##+js(abort-on-property-write, adb) www.mirrored.to##+js(abort-on-property-read, adb) www.mirrored.to##+js(abort-on-property-write, navigator.cookieEnabled) www.mirrored.to##+js(abort-on-property-read, navigator.cookieEnabled) www.mirrored.to##+js(abort-on-property-write, window.dataLayer) www.mirrored.to##+js(abort-on-property-read, window.dataLayer) www.mirrored.to##+js(set-constant, ab, 0) www.mirrored.to##+js(set-constant, adb, 0) www.mirrored.to##+js(set-constant, interval, 1) www.mirrored.to##+js(set-constant, pageTracker, noopFunc) www.mirrored.to##+js(acs, pageTracker) www.mirrored.to##+js(abort-on-property-read, aiptag.cmd.display) www.mirrored.to##+js(abort-on-property-write, aiptag.cmd.display) www.mirrored.to##+js(abort-on-property-read, window.aiptag) www.mirrored.to##+js(abort-on-property-write, window.aiptag) www.mirrored.to##+js(set-constant, adBlockDetected, falseFunc) www.mirrored.to##+js(set-constant, adBlockNotDetected, trueFunc) www.mirrored.to##+js(set-constant, blockAdBlock, false) ! remove existing cookie first www.mirrored.to##+js(remove-cookie, ab) ! TODO: need to reload page with cookie set? www.mirrored.to##+js(set-cookie, ab, 0, /) ! TODO: Do NOT use reload with set-cookie on this website as it will cause the page to continually reload. !www.mirrored.to##+js(set-cookie, ab, 0, , reload, 1) !www.mirrored.to##+js(set-cookie, ab, 0, /, reload, 1) www.mirrored.to##+js(trusted-set-constant, document.cookie, ab=0; path=/;) ||www.mirrored.to/_offer.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.mirrored.to/js/sweetalert.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.mirrored.to/js/bab.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The following rule blocks the list of files. !||www.mirrored.to/mirstats.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||oosl6q5prri3.com^* ||hidester.postaffiliatepro.com^* www.diskpart.com##div[class="ensureCookie"]:remove() !||pl15393000.passtechusa.com^* !||pl15255091.passeura.com^* ||torrindex.net/images/epv/468.png$image ||torrindex.net/images/epv/728t.png$image ||torrindex.net/images/epv/160.png$image ||torrindex.net/images/epv/120.png$image ||torrindex.net/images/epv/300.png$image ||torrindex.net/images/epv/728f.png$image !||downloadtorrentfile.com/js/chunk-vendors.*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css downloadtorrentfile.com##div[class$="__wrap"]:remove() ||pb5oqguywycj.com^* ||u2htfd3bvwvl.com^* ||embeds.driftcdn.com^* !softwareengineering.stackexchange.com##div[id="js-gdpr-consent-banner"]:remove() stackexchange.com##div[id="js-gdpr-consent-banner"]:remove() !||s3.amazonaws.com/webengage-files/webengage/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s3.amazonaws.com/webengage-files/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css service.bypass123.com##div[class="proxy_footer_box"]:remove() !||cdn.jsdelivr.net/npm/lozad/dist/lozad.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.jsdelivr.net/npm/lozad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cs.admanmedia.com/sync/cufjd$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cs.admanmedia.com^* !||louchees.net/apu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||louchees.net^* ||s3.eu-central-1.amazonaws.com/adlocis.linkvertise.links/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tag.targeting.unrulymedia.com^* ru-ru.facebook.com###u_0_6m:remove() www.facebook.com##.egoOrganicColumn.q_7vilt8dou.pagelet:remove() www.facebook.com##._6i_i:remove() www.facebook.com###u_0_1s._4-u2:remove() www.facebook.com###u_0_1s._5ctm:remove() www.facebook.com###u_0_1s._4-u8:remove() www.facebook.com##.ego_column:remove() www.facebook.com###u_0_c:remove() www.facebook.com###u_0_e:remove() www.facebook.com###pagelet_growth_expanding_cta:remove() www.facebook.com###u_0_0:remove() www.facebook.com###u_0_2i._4-u2:remove() www.facebook.com###u_0_2i._5ctm:remove() www.facebook.com###u_0_2i._4-u8:remove() www.facebook.com###u_0_4h:remove() www.facebook.com###u_0_i:remove() www.facebook.com##div[class="hybvsw6c i09qtzwb rlt63pii rq0escxv i3j981x3 d1544ag0 m7u2wfa4 tw6a2znq poy2od1o j9ispegn k4urcfbm asf1osic"]:remove() ! TODO: The following rule to remove the login bar at the bottom of the page is likely randomnly generated class names. www.facebook.com##div[class="x78zum5 xdt5ytf x2lah0s x193iq5w x2bj2ny x1ey2m1c xayqjjm x9f619 xds687c x1xy6bms xn6708d x1s14bel x1ye3gou xixxii4 x17qophe x1u8a7rm"]:remove() ||facebook.com/security/hsts-pixel.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.facebook.com/ai.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.facebook.com/offsite_event.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.facebook.com/ajax/bz?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.facebook.com/connect/ping?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.facebook.com/platform/plugin/page/logging/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.facebook.com/plugins/likebox.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.facebook.com/plugins/like.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.facebook.com/tr?id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.facebook.com/tr/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.facebook.com^* ||an.facebook.com^* ||analytics.facebook.com^* ||apps.facebook.com/pioneertrail/tracks.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css connect.facebook.net##*:style(-webkit-user-select:text; -moz-user-select:text; -ms-user-select:text; user-select:text !important;) ||connect.facebook.net/favicon.ico?&expandable_ad_$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||connect.facebook.net/en_US/fbds.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||connect.facebook.net/en_US/fbevents.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||connect.facebook.net/en_US/sdk.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||connect.facebook.net/en_US/all.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||graph.facebook.com^* ||pixel.facebook.com^* ||a2a.counters.facebook.cb1/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.nexusmods.com/Contents/Scripts/advert.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||get.pdfconverters-search.com/log$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||get.pdfconverters-search.com^* ||get.kzgdy.com^* !||webrv.yellowblue.io/webrv-acuity^* ||webrv.yellowblue.io^* !||cs.yellowblue.io/list^* ||cs.yellowblue.io^* !||sync.1rx.io/csync/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||sync.1rx.io/usersync2/underdogmedia$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||sync.1rx.io/usersync2/ironsource$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sync.1rx.io^* ||peethobo.com^* ||joobuste.com^* bitsum.com##div[id="eu_cookie_law_widget-2"]:remove() bitsum.com##div[class$="widget_eu_cookie_law_widget"]:remove() !||survey.g.doubleclick.net/async_survey?site=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css flutter.dev##div[class$="site-banner-bw"]:remove() www.sketchup.com##div[class^="optanon-alert-box-wrapper"]:remove() httpstatus.io##div[class="notices is-bottom"]:remove() themehunt.com##div[id="sp-cookie-consent"]:remove() !||crrepo.com/extban/208189020/creatives/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||upgulpinon.com^* ||www.dexpredict.com/a/display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dexpredict.com/a/display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.dexpredict.com/script/i.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.veryload.com##div[aria-label="cookieconsent"]:remove() fhscript.com##div[aria-describedby="cookieconsent:desc"]:remove() yetishare.com##div[id="cookie-bar"]:remove() nulledfree.pw##div[id="cookie-law-info-bar"]:remove() !||www.adplugg.com/apusers/autoins/A48215214/js/1.0/jsonp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adplugg.com/apusers/autoins/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adplugg.com/apusers/serve/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.adplugg.com/track/atb/A48215214/atb.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adplugg.com/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn1.adplugg.io/apusers/serve/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css code.tutsplus.com##.post__article-ad:remove() nulleb.com##+js(set-constant, triggerAlert, false) nulleb.com##+js(abort-on-property-write, window.location.hash) nulleb.com##+js(abort-on-property-read, window.location.hash) nulleb.com##+js(abort-on-property-write, adsbygoogle) nulleb.com##+js(abort-on-property-read, adsbygoogle) nulleb.com##+js(abort-on-property-write, adblockDetectedAlert) nulleb.com##+js(abort-on-property-read, adblockDetectedAlert) nulleb.com##+js(abort-on-property-write, t.adblock) nulleb.com##+js(abort-on-property-read, t.adblock) nulleb.com##+js(set-constant, adsBlocked, falseFunc) nulleb.com##+js(set-constant, window.mdpDeBlockerDestroyer, false) nulleb.com##+js(set-constant, disableTextSelection, noopFunc) nulleb.com##+js(set-constant, disableContextMenu, noopFunc) nulleb.com##+js(set-constant, disableHotKeys, noopFunc) nulleb.com##+js(set-constant, disableDeveloperTools, noopFunc) nulleb.com##+js(abort-on-property-write, mdpDeBlocker) nulleb.com##+js(abort-on-property-read, mdpDeBlocker) nulleb.com##ins[class="adsbygoogle"]:remove() nulleb.com##div[class="adace-disclaimer"]:remove() nulleb.com##div[class="adace-slot"]:remove() nulleb.com##div[class^="adace_ad_"]:remove() nulleb.com##div[class^="adace-popup"]:remove() nulleb.com##div[class^="adace-detector-"]:remove() nulleb.com##div[class="adace-show-popup-detector"]:remove() nulleb.com##div[id="mdp-deblocker-js-disabled"]:remove() !||cpm-ad.com/serve/show.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cpm-ad.com/serve/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css phpscriptsandtemplate.blogspot.com##.overlay:remove() ||ayelads.com/display/items.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ayelads.com/page/image/logo_ad1.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ayelads.com/page/image/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||nulljungle.com/wp-content/plugins/dh-anti-adblocker/assets/js/showads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nulljungle.com/wp-content/plugins/dh-anti-adblocker/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||nulleb.com/wp-content/plugins/5f956ab1bdbcf35cd680708dc15609ca-plugin//includes/adblock-detector/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nulleb.com/wp-content/plugins/*/adblock-detector/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !m.doniaweb.cloud##div[aria-label="cookieconsent"]:remove() doniaweb.cloud##div[aria-label="cookieconsent"]:remove() !m.doniaweb.cloud##span[id="cookieconsent:desc"]:remove() doniaweb.cloud##span[id="cookieconsent:desc"]:remove() pydio.com##div[id="fermerCookiePolicy"]:remove() pydio.com##div[class="cookiePolicyCustom"]:remove() gplcanyon.com##div[class="cookie-notice-container"]:remove() gplcanyon.com##div[id="cookie-notice"]:remove() learning.postman.com##div[id="CookieDiv"]:remove() ||www.proxy-service.de/main.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.proxy-service.de##div[id="mid3"]:remove() www.neowin.net###global_below_community_activity:remove() ||pl15392224.passtechusa.com^* ||www.w3counter.com/tracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.proxysite.com##ins[class^="adsbygoogle"]:remove() www.proxysite.com##+js(abort-on-property-write, google_ad_slot) www.proxysite.com##+js(abort-on-property-read, google_ad_slot) www.proxysite.com##+js(abort-on-property-write, adsbygoogle) www.proxysite.com##+js(abort-on-property-read, adsbygoogle) www.4everproxy.com##ins[class="adsbygoogle"]:remove() www.4everproxy.com##+js(abort-on-property-write, adsbygoogle) www.4everproxy.com##+js(abort-on-property-read, adsbygoogle) blog.syscloud.com##div[id="hs-eu-cookie-confirmation"]:remove() !||www.itechtics.com/ezoic/anchorfix.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.itechtics.com/ezoic/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.itechtics.com##span[id^="div-gpt-ad"]:remove() www.itechtics.com##span[class^="ezoic-ad"]:remove() www.itechtics.com##span[class*="adtester-container-"]:remove() www.itechtics.com##aside[id^="adswidget1-quick-adsense"]:remove() www.itechtics.com##aside[id^="adswidget2-quick-adsense"]:remove() www.itechtics.com##aside[id^="adswidget3-quick-adsense"]:remove() www.itechtics.com##+js(abort-on-property-write, window.ez_ad_units) www.itechtics.com##+js(abort-on-property-read, window.ez_ad_units) www.itechtics.com##+js(set-constant, window.isEZABL, false) www.itechtics.com##+js(abort-on-property-write, window.isEZABL) www.itechtics.com##+js(abort-on-property-read, window.isEZABL) www.itechtics.com##+js(abort-on-property-write, ezaxmns) www.itechtics.com##+js(abort-on-property-read, ezaxmns) www.itechtics.com##+js(abort-on-property-write, googleAdClient) www.itechtics.com##+js(abort-on-property-read, googleAdClient) ||log.outbrainimg.com^* ||www.itechtics.com/ezossp/https/stats.wp.com$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||outbrain.ezoic.net^* ||smetrics.ubi.com^* ||app.infinityfree.net/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css app.infinityfree.net##div[class="alert alert-secondary bg-grey fundingNotice"]:remove() ||infinityfree.net/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css infinityfree.net##div[class="uk-grid cookie-message"]:remove() infinityfree.net##ins[class="adsbygoogle"]:remove() infinityfree.net##+js(abort-on-property-write, adsbygoogle) infinityfree.net##+js(abort-on-property-read, adsbygoogle) !||jill.fc.yahoo.com/v1/ads/js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||jill.fc.yahoo.com/v1/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nunhoefey.com^* www.wonderplugin.com##div[class="wonderplugin-box-top"]:remove() www.wonderplugin.com##div[class="wonderplugin-box-bottom"]:remove() www.hideoxy.com##ins[class="adsbygoogle"]:remove() www.hideoxy.com##+js(abort-on-property-read, adsbygoogle) www.hideoxy.com##+js(abort-on-property-write, adsbygoogle) ! TODO: ^script doesn't work with attributes since checked before DOM created? www.hideoxy.com##script[id="cookiebanner"]:remove() www.unblockvid.com##+js(abort-on-property-read, google_ad_client) www.unblockvid.com##+js(abort-on-property-write, google_ad_client) www.unblockvid.com##+js(abort-on-property-read, google_ad_slot) www.unblockvid.com##+js(abort-on-property-write, google_ad_slot) ! TODO: ^script doesn't work with attributes since checked before DOM created? www.unblockvid.com##script[id="cookiebanner"]:remove() ||www.unblockvid.com/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.cultofmac.com##+js(abort-on-property-read, __ez) www.cultofmac.com##+js(abort-on-property-write, __ez) www.cultofmac.com##+js(abort-on-property-read, processGoogleToken) www.cultofmac.com##+js(abort-on-property-write, processGoogleToken) www.cultofmac.com##+js(abort-on-property-read, window.ezogtk) www.cultofmac.com##+js(abort-on-property-write, window.ezogtk) www.cultofmac.com##+js(abort-on-property-read, _ebcids) www.cultofmac.com##+js(abort-on-property-write, _ebcids) www.cultofmac.com##+js(abort-on-property-read, window.ez_ad_units) www.cultofmac.com##+js(abort-on-property-write, window.ez_ad_units) www.cultofmac.com##+js(abort-on-property-read, ezrpos) www.cultofmac.com##+js(abort-on-property-write, ezrpos) www.cultofmac.com##+js(abort-on-property-read, epbjsRequestAdUnits) www.cultofmac.com##+js(abort-on-property-write, epbjsRequestAdUnits) www.cultofmac.com##+js(abort-on-property-read, gads.src) www.cultofmac.com##+js(abort-on-property-write, gads.src) www.cultofmac.com##+js(abort-on-property-read, __ez.ssaf) www.cultofmac.com##+js(abort-on-property-write, __ez.ssaf) www.cultofmac.com##div[id^="div-gpt-ad"]:remove() www.cultofmac.com##span[id^="div-gpt-ad"]:remove() www.cultofmac.com##+js(abort-on-property-read, adUnitName) www.cultofmac.com##+js(abort-on-property-write, adUnitName) www.cultofmac.com##div[id="ezmobfooter"]:remove() www.cultofmac.com##div[class^="ezmobfooter"]:remove() www.cultofmac.com##+js(abort-on-property-read, pl_beacon) www.cultofmac.com##+js(abort-on-property-write, pl_beacon) www.cultofmac.com##+js(abort-on-property-read, googleAdClient) www.cultofmac.com##+js(abort-on-property-write, googleAdClient) www.cultofmac.com##section[class="header-ad-region"]:remove() www.cultofmac.com##span[id^="ezoic-pub-ad-placeholder-"]:remove() www.cultofmac.com##span[class^="ezoic-ad"]:remove() ||www.cultofmac.com/ads-beacon.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.cultofmac.com/utilcave_com/inc/ezcl.webp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dk98ddgl0znzm.cloudfront.net^* ||go.ezoic.net^* ||petiteumbrella.com^* www.hidemyass.com##div[class="js-cookie-bar cookie-bar visible"]:remove() ||a.optmnstr.com^* www.unblock123.com##ins[class="adsbygoogle"]:remove() www.unblock123.com##+js(abort-on-property-read, adsbygoogle) www.unblock123.com##+js(abort-on-property-write, adsbygoogle) www.unblock123.com##script[id="cookiebanner"]:remove() www.unblockdomain.com##script[id="cookiebanner"]:remove() www.unblockdomain.com##+js(abort-on-property-write, google_ad_client) www.unblockdomain.com##+js(abort-on-property-read, google_ad_client) www.hidebux.com##ins[class="adsbygoogle"]:remove() www.hidebux.com##+js(abort-on-property-write, adsbygoogle) www.hidebux.com##+js(abort-on-property-read, adsbygoogle) ||www.unblockstreaming.com/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.myipbanned.com##ins[class="adsbygoogle"]:remove() www.myipbanned.com##+js(abort-on-property-read, adsbygoogle) www.myipbanned.com##+js(abort-on-property-write, adsbygoogle) zend2.com##+js(abort-on-property-read, adsbygoogle) zend2.com##+js(abort-on-property-write, adsbygoogle) zend2.com##ins[class="adsbygoogle"]:remove() www.videounblocker.net##ins[class="adsbygoogle"]:remove() www.videounblocker.net##+js(abort-on-property-read, adsbygoogle) www.videounblocker.net##+js(abort-on-property-write, adsbygoogle) webproxy.to##+js(abort-on-property-read, adsbygoogle) webproxy.to##+js(abort-on-property-write, adsbygoogle) webproxy.to##+js(abort-on-property-read, _gaq) webproxy.to##+js(abort-on-property-write, _gaq) webproxy.to##+js(abort-on-property-read, cookieChoices.showCookieConsentBar) webproxy.to##+js(abort-on-property-write, cookieChoices.showCookieConsentBar) webproxy.to##ins[class="adsbygoogle"]:remove() !||cdn.hbplatform.com/adfill/tags/2/1034/adfill.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.hbplatform.com/adfill/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.userreport.com/userreport.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css unblockvideos.com##+js(abort-on-property-read, adsbygoogle) unblockvideos.com##+js(abort-on-property-write, adsbygoogle) unblockvideos.com##+js(abort-on-property-read, adblock) unblockvideos.com##+js(abort-on-property-write, adblock) unblockvideos.com##ins[class="adsbygoogle"]:remove() unblockvideos.com##+js(abort-on-property-read, adblock_on) unblockvideos.com##+js(abort-on-property-write, adblock_on) unblockvideos.com##+js(set-constant, adblock_on, 0) ||stats.platformadmin.de^* debrid-file.com##div[class="cookie-consent-popup open"]:remove() debrid-file.com##+js(abort-on-property-read, window.cookieConsent) debrid-file.com##+js(abort-on-property-write, window.cookieConsent) leech360.com##div[id="cookie-required"]:remove() nextcloud.com##div[class="cookiewarning"]:remove() nextcloud.com##div[id="cookieConsent"]:remove() www.genmirror.com##ins[class="adsbygoogle"]:remove() www.genmirror.com##+js(abort-on-property-read, adsbygoogle) www.genmirror.com##+js(abort-on-property-write, adsbygoogle) www.genmirror.com##div[class="ad2 text-center"]:remove() www.s7a.it##div[class="annoying-container"]:remove() ||ikunselt.com^* ||ptaulrou.net^* ||graizoah.com^* ||edampeci.com^* ||uk.proxfree.com/hit$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||uk.proxfree.com/imp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.proxfree.com##div[class="pfleftads"]:remove() www.proxfree.com##div[class="pfad3"]:remove() www.proxfree.com##ins[class="adsbygoogle"]:remove() www.proxfree.com##div[class="pfad2"]:remove() www.proxfree.com##div[class="pftopad"]:remove() www.proxfree.com##div[class="pflrgAds"]:remove() www.proxfree.com##div[class="pfad4"]:remove() tx.proxfree.com###ticker:remove() tx.proxfree.com##div[class="pfad4"]:remove() tx.proxfree.com##div[class="pfad3"]:remove() tx.proxfree.com##div[class="pfad2"]:remove() proxfree.com##+js(abort-on-property-read, adsbygoogle) proxfree.com##+js(abort-on-property-write, adsbygoogle) www.abandonware-france.org##ins[class="adsbygoogle"]:remove() www.abandonware-france.org##div[id="barritaloca"]:remove() www.rapidtables.com##div[id="ban-ad"]:remove() www.rapidtables.com##ins[class="adsbygoogle adslot_3"]:remove() www.rapidtables.com##ins[class="adsbygoogle adslot_2"]:remove() theisozone.com##div[class="cookie-notice-container"]:remove() www.oneangrygamer.net##div[id="fb-root"]:remove() www.oneangrygamer.net##div[id^="amzn-assoc-ad-"]:remove() !www.oneangrygamer.net##+js(abort-on-property-read, cli_cookiebar_settings) !www.oneangrygamer.net##+js(abort-on-property-write, cli_cookiebar_settings) www.oneangrygamer.net##div[id="cookie-law-info-bar"]:remove() www.oneangrygamer.net##div[class="cli-modal"]:remove() www.oneangrygamer.net##div[class="adsbyvli"]:remove() www.oneangrygamer.net##+js(abort-on-property-read, amzn_assoc_enable_interest_ads) www.oneangrygamer.net##+js(abort-on-property-write, amzn_assoc_enable_interest_ads) www.oneangrygamer.net##+js(set-constant, amzn_assoc_enable_interest_ads, false) www.oneangrygamer.net##+js(abort-on-property-read, adElemSticky) www.oneangrygamer.net##+js(abort-on-property-write, adElemSticky) www.oneangrygamer.net##div[id="vi-sticky-ad"]:remove() www.oneangrygamer.net##div[id="vi-ad"]:remove() retrozone.co##ins[class="adsbygoogle"]:remove() gamejolt.com##div[class^="cookie-banner"]:remove() ||cdn.otnolatrnup.com^* www.oneangrygamer.net##div[id="fwn_videos"]:remove() !||www.oneangrygamer.net/wp-content/plugins/cookie-law-info/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css */wp-content/plugins/cookie-law-info/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dzubavstal.com^* ||megajs1.win^* !||varway.info/banners.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||varway.info/banners/api.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||varway.info^* www.atozproxy.com##ins[class="adsbygoogle"]:remove() www.atozproxy.com##div[class="ad2 text-center"]:remove() ||servecontent.net/content/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pl15277361.passeura.com^* ||xr.kgtcm.club^* www.arachnosoft.com##+js(abort-on-property-read, adsbygoogle) www.arachnosoft.com##+js(abort-on-property-write, adsbygoogle) ||passback.free.fr/pub/pp_120x600.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||passback.free.fr/pub/pp_300x250.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||usd.engel-eva.com/zcredirect$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||usd.engel-eva.com/zcvisitor/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||usd.engel-eva.com^* www.arachnosoft.com##.left-menu:remove() www.arachnosoft.com##.right-menu:remove() community.spiceworks.com##div[class="zd-privacy-content"]:remove() !www.vpnbook.com##div[class="align-left adsense"]:remove() www.vpnbook.com##div[class$="adsense"]:remove() www.vpnbook.com##ins[class="adsbygoogle"]:remove() www.vpnbook.com##+js(abort-on-property-read, adsbygoogle) www.vpnbook.com##+js(abort-on-property-write, adsbygoogle) !||flow.aquaplatform.com/lg.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||flow.aquaplatform.com/asyncjs.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||flow.aquaplatform.com^* proxite.ws##+js(abort-on-property-read, scJsHost) proxite.ws##+js(abort-on-property-write, scJsHost) www.seagullscientific.com##div[aria-label="cookieconsent"]:remove() support.seagullscientific.com##div[id="cookie-popper"]:remove() ||mypenny.xyz^* !||d1gwclp1pmzk26.cloudfront.net/agile/stats/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !horizondatasys.com##+js(abort-on-property-read, Agile_API) !horizondatasys.com##+js(abort-on-property-write, Agile_API) ||asoulrox.com^* ||gcxjczooe.com^* ||www.gcxjczooe.com^* ||traff6.com^* ||stats2.agilecrm.com^* giga-down.com##ins[class="adsbygoogle"]:remove() giga-down.com##+js(abort-on-property-read, adsbygoogle) giga-down.com##+js(abort-on-property-write, adsbygoogle) giga-down.com##+js(abort-on-property-read, _atrk_opts) giga-down.com##+js(abort-on-property-write, _atrk_opts) giga-down.com##+js(abort-on-property-read, chain) giga-down.com##+js(abort-on-property-write, chain) giga-down.com##div[class="adsbox"]:remove() !giga-down.com##+js(abort-current-script, /\$\('\.adsbox'\)/) giga-down.com##+js(abort-current-script, $('.adsbox')) giga-down.com##+js(set-constant, adblock_detected, 0) giga-down.com##+js(set-constant, remaining, 0) giga-down.com##+js(set-constant, speed, 1) giga-down.com##input[name="adblock_detected"]:remove() giga-down.com##center:nth-of-type(3) > .btn-dow.btn:remove() giga-down.com##div.download-option-btn:nth-of-type(3) > .btn-success.btn:remove() giga-down.com##div.download-option-btn:nth-of-type(2) > .btn-success.btn:remove() ||cdn.simpleanalytics.io^* ||api.simpleanalytics.io^* www.3dflow.net##div[id="cookie-notice"]:remove() www.tenforums.com##div[class="adunit ad-bottom-sticky-overall"]:remove() ||www.bbnfcfrvjs.com^* ||bbnfcfrvjs.com^* !||www.premiumvertising.com/mmenu.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.premiumvertising.com^* ||d2j042cj1421wi.cloudfront.net^* superuser.com##div[id="js-gdpr-consent-banner"]:remove() ||stat.first-world.info^* da-software.net##div[aria-label="cookieconsent"]:remove() ||oksy.cloud^* www.dualshockers.com##.afw_ad:remove() multifilemirror.com##+js(abort-on-property-read, window.googletag) multifilemirror.com##+js(abort-on-property-write, window.googletag) multifilemirror.com##div[class="9qbvd1u5962m"] multifilemirror.com##div[class="blockContainer"] multifilemirror.com##div[class="adContainer"]:remove() multifilemirror.com##+js(abort-on-property-read, blockAdBlock) multifilemirror.com##+js(abort-on-property-write, blockAdBlock) www.r-studio.com##div[id="pp-info"]:remove() ||d3v3bqdndm4erx.cloudfront.net^* ||prosumsit.com^* www.popsci.com##div[class="arcAdsContainer "]:remove() www.paypal.com##div[id="ccpaCookieBanner"]:remove() www.selenium.dev##div[id="banner-blm"]:remove() esportsobserver.com##div[id="hs-eu-cookie-confirmation"]:remove() esportsobserver.com##div[class="jeg_ad jeg_ad_top jnews_header_top_ads"]:remove() esportsobserver.com##+js(abort-on-property-read, ga_options) esportsobserver.com##+js(abort-on-property-write, ga_options) esportsobserver.com##+js(abort-on-property-read, advadsCfpAd) esportsobserver.com##+js(abort-on-property-write, advadsCfpAd) esportsobserver.com##+js(abort-on-property-read, advads_items) esportsobserver.com##+js(abort-on-property-write, advads_items) esportsobserver.com##div[class^="ads-wrapper"]:remove() ||www.zuyejecgb.com^* ||zuyejecgb.com^* ||sperans-beactor.com^* ||www.kozoysnsx.com^* ||kozoysnsx.com^* ||vovsoft.com/js/cookieconsent.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vovsoft.com/cookie-ajax.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css vovsoft.com##div[aria-label="cookieconsent"]:remove() ||mediaappletree.com^* www.nulledteam.com##div[class="uix_noticeInner"]:remove() www.nulledteam.com##ul[class="notices notices--floating js-notices"]:remove() www.wiredproductions.com##div[aria-label="cookieconsent"]:remove() rpcs3.net##div[class="menu-con-cookies"]:remove() ||dw7nrwnn2bkh1.cloudfront.net^* ||d3821qbxooayyy.cloudfront.net^* ||smetrics.tmz.com^* www.nchsoftware.com##div[id="bubbletip"]:remove() w3snoop.com##div[class="cookie-consent-container"]:remove() w3snoop.com##div[class="ez-sidebar-wall-ad"]:remove() w3snoop.com##div[id="ezmobfooter"]:remove() w3snoop.com##div[id="appCookieConsent"]:remove() w3snoop.com##span[class="ezoic-adpicker-ad"]:remove() w3snoop.com##span[id^="div-gpt-ad-"]:remove() w3snoop.com##span[id^="ezoic-pub-ad-placeholder-"]:remove() w3snoop.com##span[data-ez-ph-id]:remove() ! TODO: Should the following be a class or id? w3snoop.com##*[class^="ezoic_pub_ad_placeholder-"]:remove() w3snoop.com##+js(aeld, ezVigImpression) w3snoop.com##+js(set-constant, window.ezDisableAds, true) w3snoop.com##+js(trusted-replace-node-text, script, /if\s?\(window\.ezDisableAds\s?===\s?true\)/gm, if (true)) w3snoop.com##+js(trusted-replace-node-text, script, /enable_page_level_ads:\s?true/gm, enable_page_level_ads: false) w3snoop.com##+js(trusted-replace-node-text, script, /bottom:\s?true/gm, bottom: false) w3snoop.com##+js(set-constant, _reloadAds, noopFunc) w3snoop.com##+js(trusted-replace-node-text, script, /_reloadAds\(\);/gm, null;) w3snoop.com##+js(trusted-replace-node-text, script, /setTimeout\(_reloadAds\,\s?\d+\);/gm, null;) w3snoop.com##+js(set-constant, tcdata.gdprApplies, false) w3snoop.com##+js(trusted-replace-node-text, script, /if\s?\(\!tcdata\.gdprApplies\)/gm, if (true)) w3snoop.com##+js(trusted-replace-node-text, script, /['"]AdUnit['"]:\s?['"]w3snoop_com\-outstream\-video\-\d['"]/gm, "AdUnit": null) ! Uncaught TypeError: cannot declare global binding 'analyticsAddScript': property must be configurable or both writable and enumerable !w3snoop.com##+js(set-constant, analyticsAddScript, noopFunc) w3snoop.com##+js(set-constant, window.ezAnalyticsStatic, false) w3snoop.com##+js(trusted-replace-node-text, script, /window\.ezAnalyticsStatic\s?=\s?true/gm, window.ezAnalyticsStatic = false) w3snoop.com##+js(trusted-replace-node-text, script, /analyticsAddScript\(xhr\.response\);/gm, null;) w3snoop.com##+js(trusted-replace-node-text, script, /"vastURL":\s?"[^\"]+"/gm, "vastURL":"") w3snoop.com##+js(trusted-replace-node-text, script, /"skippable":\s?false/gm, "skippable": true) w3snoop.com##+js(trusted-replace-node-text, script, /"skip":\s?false/gm, "skip": true) w3snoop.com##+js(trusted-replace-node-text, script, /"skip":\s?\d/gm, "skip": 1) w3snoop.com##+js(trusted-replace-node-text, script, /__ez\.queue\.addFunc\(['"]productAnalytics['"]\,\s?['"]productAnalytics['"]\,/gm, __ez.queue.addFunc(null\,null\,) w3snoop.com##+js(trusted-replace-node-text, script, /ezapsFetchBids\(__ezapsVideo\,\s?['"]video['"]\);/gm, null;) w3snoop.com##+js(trusted-replace-node-text, script, /ezapsFetchBids\(__ezaps\);/gm, null;) w3snoop.com##+js(remove-node-text, script, /var \w\s?=\s?newEzVignette\(vc\);/gm) ||w3snoop.com/ezais/log?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||w3snoop.com/ezais/analytics?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css filesupload.org##+js(set-constant, countdownTimer, 0) *##div[id="cookie-law-info-bar"]:remove() ||staitchu.com^* ||ushoofop.com^* downace.com##.ace-download-panel.uk-margin-remove.tm-primary.uk-panel-box-primary.uk-panel-box.uk-panel > .uk-grid > .uk-text-center.uk-width-1-1 > a[href^="http://bvn-inv.com/ref"]:remove() downace.com##a[href^="http://chachatool.com/sst/"]:remove() ||downace.com/themes/ace/*/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||downace.com/themes/ace/*/popunder.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||downace.com/themes/ace/assets/img/819880e6740bac2d431d71bab5cc2410.png$image ||downace.com/themes/ace/assets/img/KydIF8Oug6McFLbS5ZrGNL.png$image ||downace.com/themes/ace/assets/img/KydIF8Oug6McFLbS5ZrGr33n.jpg$image ||downace.com/themes/ace/assets/img/QeMiUuHpiQFYSJeFQL6l.png$image ||downace.com/themes/ace/assets/img/do6YfCeerdbHWqzsDkAa0L.png$image ||downace.com/themes/ace/js/clipboardjs/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||downace.com/themes/ace/js/zeroClipboard/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !bethesda.net##div[class="RiotWrapper-cookie-policy-RiotWrapper-cookie-policy2"]:remove() bethesda.net##div[class^="RiotWrapper-cookie-policy"]:remove() sonicfangameshq.com##li[class="notice js-notice notice--primary notice--cookie"]:remove() www.nationalreview.com##div[class^="bcpNotificationBar"]:remove() ||dxz454z33ibrc.cloudfront.net^* ||catastrophetray.com^* ||linkedgraceless.com^* www.davidesperalta.com##div[id="cookies-note"]:remove() www.fnac.com##aside[class="consent-notice js-consent-notice"]:remove() dl.tech-story.net##div[id="cookie-pop"]:remove() dl.tech-story.net##div[class="ad-banner"]:remove() dl.tech-story.net##ins[class="adsbygoogle"]:remove() ||dl.tech-story.net/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css dl.tech-story.net##+js(set-constant, this.interval, 1) dl.tech-story.net##+js(set-constant, Bt, 1) ||nssyawqyj.com^* ||brydhoye.com^* ||analytics.brave.com^* ||communits.club^* ||d3c3uihon9kmp.cloudfront.net^* ||exee.io/ad-m.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||exee.io/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||madsans.com^* ||opsoomet.net^* ||preparedjuxtapose.com^* ||ridferbad.com^* ||rityalthoutei.club^* ||vipicmou.net^* ||zoaheeth.com^* ||udookrou.com^* simplywall.st##*:style(filter: blur(0px) !important; -webkit-filter: blur(0px) !important;) ||www.umfxefqtqd.com^* ||umfxefqtqd.com^* ||www.ufmmtncv.com^* ||ufmmtncv.com^* ||js.hs-banner.com^* www.skylinesoft.com##div[id="hs-eu-cookie-confirmation"]:remove() ||file-download.info^* ||i1.wp.com/goo.gl/kud8Zc$image ||dntcl.qualaroo.com^* ||66f5e092-a897-4fb4-9b4f-0303d097e22c.us.u.fastly-insights.com^* ||astral-v4.pops.fastly-insights.com^* ||bos-v4.pops.fastly-insights.com^* ||den-v4.pops.fastly-insights.com^* ||dub-v4.pops.fastly-insights.com^* ||lga-v4.pops.fastly-insights.com^* ||mia-v4.pops.fastly-insights.com^* ||pdata.pops.fastly-insights.com^* ||quic-v4.pops.fastly-insights.com^* ||tyo-v4.pops.fastly-insights.com^* chromeenterprise.google##section[class="ce-cookie-banner visible"]:remove() chromeenterprise.google##div[class^="ce-cookie-banner"]:remove() ||www.gstatic.com/external_hosted/intersectionobserver_polyfill/intersection-observer.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||img.scupio.com/html/ad.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css benchlife.info##.scupioadslot:remove() chrunos.com##div[id="cookie-notice"]:remove() chrunos.com##div[class="cookie-notice-container"]:remove() !||statsf-tm.everesttech.net/stats/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||statsf-tm.everesttech.net^* ||a.adsrvr.org^* ||scripps.demdex.net^* www.searchpeoplefree.com##+js(abort-on-property-read, ad_cw) www.searchpeoplefree.com##+js(abort-on-property-write, ad_cw) www.searchpeoplefree.com##+js(abort-on-property-read, ad_mobile) www.searchpeoplefree.com##+js(abort-on-property-write, ad_mobile) www.searchpeoplefree.com##+js(abort-on-property-read, ad_tablet) www.searchpeoplefree.com##+js(abort-on-property-write, ad_tablet) www.searchpeoplefree.com##+js(abort-on-property-read, ad_desktop) www.searchpeoplefree.com##+js(abort-on-property-write, ad_desktop) www.searchpeoplefree.com##+js(abort-on-property-read, googletag) www.searchpeoplefree.com##+js(abort-on-property-write, googletag) www.searchpeoplefree.com##+js(abort-on-property-read, $googleAds) www.searchpeoplefree.com##+js(abort-on-property-write, $googleAds) !www.searchpeoplefree.com##div[class="s-ad-f d-block d-md-none"]:remove() !www.searchpeoplefree.com##div[class="s-ad s-ad-w d-md-none"]:remove() !www.searchpeoplefree.com##.s-ad-w:remove() www.searchpeoplefree.com##div[class^="s-ad"]:remove() www.searchpeoplefree.com##div[id^="div-gpt-ad-"]:remove() www.searchpeoplefree.com##div[class^="google-ad"]:remove() www.searchpeoplefree.com##div[class="cookie-terms-block"]:remove() www.searchpeoplefree.com##div[class="cookie-terms"]:remove() howtechhack.com##div[id="cookie-notice"]:remove() ||lgmsekxqwxe.com^* ||www.lgmsekxqwxe.com^* ||api.github.com/_private/browser/stats$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.tuneskit.com##div[class="cookie-privacy"]:remove() ||vortex.data.microsoft.com/collect/v1$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.drwkzkncihwygw.com^* ||drwkzkncihwygw.com^* ||i1.wp.com/www.sadeempc.com/wp-content/uploads/2017/06/download_green_secure_direct.png$image www.sadeempc.com##[href="javascript:void(0);"] > strong:remove() www.msp360.com##div[class^="use-cookie"]:remove() ||www.xgubafscfsf.com^* ||xgubafscfsf.com^* ||resupposer.club^* ||familinger.club^* ||nmentsim.club^* ||dq3yxnlzwhcys.cloudfront.net^* www.hhdsoftware.com##div[class="cookie default-internal"]:remove() ||amanda.ttnrd.com^* pynative.com##div[id="cookie-notice"]:remove() pynative.com##div[class="cookie-notice-container"]:remove() pynative.com##div[class*="adthrive-"]:remove() pynative.com##script[id^="cls-disable-ads-"]:remove() pynative.com##+js(abort-on-property-read, window.adthriveCLS.siteAds) pynative.com##+js(abort-on-property-write, window.adthriveCLS.siteAds) pynative.com##+js(set-constant, window.adthriveCLS, {}, complete) pynative.com##+js(set-constant, window.adthriveCLS.siteAds, {}, complete) pynative.com##+js(abort-on-property-read, w.adthrive) pynative.com##+js(abort-on-property-write, w.adthrive) pynative.com##+js(set-constant, w.adthrive, {}, complete) pynative.com##+js(set-constant, cls_disable_ads, trueFunc) pynative.com##^script:has-text(.adthrive):remove() pynative.com##+js(remove-node-text, script, /\.adthrive/gm) pynative.com##:xpath(//script[contains(text(), '.adthrive')]):remove() techgenix.com##.adtester-container:remove() ||www.vggxxhton.com^* ||vggxxhton.com^* ||www.rpjzlykhkdc.com^* ||rpjzlykhkdc.com^* ||d38itq6vdv6gr9.cloudfront.net^* ||s-img.adskeeper.co.uk^* ||www.treaturesfg.club^* ||treaturesfg.club^* !||euncoordi.club/popunder.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.euncoordi.club^* ||euncoordi.club^* gamesmojo.com##.adsense:remove() gamesmojo.com##div[class="gdpr-block-wrap slide-up"]:remove() ||get.vid-search.com^* ||get.zazqx.com^* ||www.registshhg.club^* ||registshhg.club^* ||the-eighth-d.openx.net^* news.xbox.com##div[id="msccBanner"] www.gamasutra.com##div[id="gdpr_banner"]:remove() www.gamasutra.com##div[id="cookie"]:remove() www.gamasutra.com##div[class="gdpr-popup-border"]:remove() !www.gamasutra.com##div[id="iribbon-container"]:remove() ||ileokscsawzzrh.com^* ||www.ileokscsawzzrh.com^* ||www.wvahelphpfnhyx.com^* ||wvahelphpfnhyx.com^* ||www.qhkhchjqawst.com^* ||qhkhchjqawst.com^* ||www.lfendascra.club^* ||lfendascra.club^* ||tablebehav.club^* silk.com##div[id="cookie-bar"]:remove() silk.com##div[class="cookiealert show"]:remove() free-proxysite.com##div[id="ad1sector"]:remove() free-proxysite.com##div[id="ad2sector"]:remove() free-proxysite.com##+js(abort-on-property-read, sc_project) free-proxysite.com##+js(abort-on-property-write, sc_project) onemonth.com##div[class="supreme-container blur"]:remove() onemonth.com##div[class="modal-backdrop fade show"]:remove() onemonth.com##div[style*="visibility: hidden"]:remove() onemonth.com##div[class="ub-emb-container"]:remove() ||d3dcc53t14pv6.cloudfront.net/assets/application-b68d798197e3a860c80b84c7602a59ed2080f5b0cdd2189c695766a20a830849.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||o0iaaucapi.eoapxl.com^* ||d1e28xq8vu3baf.cloudfront.net^* ||www.fiferentsdr.club^* ||fiferentsdr.club^* ||www.edcreptors.club^* ||edcreptors.club^* ||www.apestsagai.club^* ||apestsagai.club^* ||www.rsaltsjt.com^* ||rsaltsjt.com^* ||networkn-d.openx.net^* ||ww7.getlink4u.info^* ||6.adsco.re^* ||www.creativepro.club^* ||creativepro.club^* ||www.sharpguard.club^* ||sharpguard.club^* ||oh.getlink4u.info^* ||www.neddifficec.club^* ||neddifficec.club^* www.vox.com##.m-ad__athena:remove() www.vox.com##*[data-native-ad-id]:remove() www.vox.com##div[class*="native-ad-"]:remove() www.vox.com##div[data-concert="tablet_leaderboard"]:remove() www.vox.com##div[data-concert="desktop_leaderboard_variable"]:remove() www.vox.com##div[data-concert="outbrain_post_tablet_and_desktop"]:remove() www.vox.com##+js(set-local-storage-item, memberful_tracking_params, $remove$) www.vox.com##+js(set-local-storage-item, vox_article_readcount_count, $remove$) www.vox.com##+js(set-local-storage-item, vox_article_readcount_reset_date, $remove$) ||concertads-configs.vox-cdn.com^* !||cdn.concert.io/lib/concert-ads/v2-latest/concert_ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.concert.io/lib/concert-ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.vox-cdn.com/packs/js/concert_ads-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cm.smadex.com^* !||nep.advangelists.com/xp/user-sync^* ||nep.advangelists.com^* www.whoishostingthis.com##div[class="disclosure disclosure-footer"]:remove() www.icann.org##div[class="cookie-notification"]:remove() www.host-tracker.com##div[class="cookiePolicyMessage"]:remove() ||www.highlianimo.club^* ||highlianimo.club^* ||www.mastedyel.club^* ||mastedyel.club^* ||idx.listrakbi.com/1/xv3sl1/pixel.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||collector-pxu6b0qd2s.px-cloud.net/api/v2/collector$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||collector-pxu6b0qd2s.px-cloud.net^* ||www.lowancein.club^* ||lowancein.club^* ||www.saredithere.club^* ||saredithere.club^* !gofile.io##.swal2-popup:remove() !gofile.io##.swal2-backdrop-show:remove() ||www.dicalnatur.club^* ||dicalnatur.club^* www.nytimes.com##.e1x0szx60.css-4su5jw.expanded-dock.shown.MAG_web_anon_new-journey-rollout:remove() ydns.io##div[class="cookie-notice-outer"]:remove() www.securepoint.de##div[class="cc_banner-wrapper "]:remove() www.home.neustar##div[class="cookie-message"]:remove() ||sdk.privacy-center.org^* www.pingdom.com##div[class="sw19b-cookie-banner sw19s-force-hide show"]:remove() www.pingdom.com##div[class="sw19-alert-box cookie-consent"]:remove() www.swanndvr.net##div[class="bodgd"]:remove() www.swanndvr.net##div[id="bodgd"]:remove() love2dev.com##div[class^="gdpr-prompt"]:remove() ||server.ethicalads.io^* jsbin.com##div[id="ea-wrapper"]:remove() filesupload.org##div[class="footerAds"]:remove() stackabuse.com##.ad.content:remove() stackabuse.com##div[class="content ad"]:remove() stackabuse.com##+js(abort-on-property-read, w.Repixel) stackabuse.com##+js(abort-on-property-write, w.Repixel) ||sdk.repixel.co/r.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdnjs.cloudflare.com/ajax/libs/autotrack/1.0.1/autotrack.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdnjs.cloudflare.com/ajax/libs/autotrack/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stackabuse.com/assets/js/highlight-worker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css u.pcloud.link##div[class="cookie_consent_holder"]:remove() ||www.steammovies.space^* ||steammovies.space^* ||www.nalleryrootl.club^* ||nalleryrootl.club^* ||bishpolicen.club^* ||www.bishpolicen.club^* ||d21rudljp9n1rr.cloudfront.net^* www.aspsnippets.com##div[id="dvCookie"]:remove() www.aspsnippets.com##div[class="leaderboard_ad hidden-xs leader_float"]:remove() ||matomo.gofile.io^* !www.educative.io##div[class="styles__BannerStyled-sc-14k2cl6-0 ddHKTm commonBanner-enter-done"]:remove() www.educative.io##div[class$="commonBanner-enter-done"]:remove() x265movies.cc##div[class^="mysticky-welcomebar-"]:remove() !||slckg-2p3vy.ads.tremorhub.com^* !||slckg-qrmhc.ads.tremorhub.com^* !||0v5a3-dp2n6.ads.tremorhub.com^* !||nra8q.ads.tremorhub.com/ad/tag$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||nra8q.ads.tremorhub.com^* !||slckg-kqe2e.ads.tremorhub.com^* !||slckg-4znyf.ads.tremorhub.com^* !||qds0l-mcpdh.ads.tremorhub.com^* ||*.ads.tremorhub.com^* ||achilles-ena.com/imp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||targetemsecure.blob.core.windows.net^* ||www.stokehovemade.work^* ||stokehovemade.work^* !||easternpush.xyz/images/campaigns/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||easternpush.xyz^* !||htlb.casalemedia.com/cygnus?s=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||htlb.casalemedia.com^* ||www.speedsagesleepy.com^* ||speedsagesleepy.com^* !||www.ps7894.com/exit.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.ps7894.com/intent/get$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.ps7894.com/p1.0-SNAPSHOT.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.ps7894.com/InterYield/bindevent.do$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.ps7894.com^* !||grid.bidswitch.net/hbnm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||grid.bidswitch.net^* ||www.thwhilecom.club^* ||thwhilecom.club^* ||api.nostromedia.com/imp?token=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d2cmh8xu3ncrj2.cloudfront.net^* !||eleastsessm.space/popunder.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.eleastsessm.space^* ||eleastsessm.space^* ||www.fsisolpouupevs.com^* ||fsisolpouupevs.com^* forum.torrminatorr.com##div[aria-label="cookieconsent"]:remove() www.konstantinkanin.com##div[id="catapult-cookie-bar"]:remove() ||exchange.buzzoola.com/adv/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css avr.i-trailer.ru##+js(abort-on-property-read, adspgpmd) avr.i-trailer.ru##+js(abort-on-property-write, adspgpmd) avr.i-trailer.ru##+js(abort-on-property-read, adspektr) avr.i-trailer.ru##+js(abort-on-property-write, adspektr) avr.i-trailer.ru##+js(abort-on-property-read, otm3) avr.i-trailer.ru##+js(abort-on-property-write, otm3) avr.i-trailer.ru##+js(abort-on-property-read, otm2) avr.i-trailer.ru##+js(abort-on-property-write, otm2) avr.i-trailer.ru##+js(abort-on-property-read, otm1) avr.i-trailer.ru##+js(abort-on-property-write, otm1) avr.i-trailer.ru##+js(abort-on-property-read, advarkads) avr.i-trailer.ru##+js(abort-on-property-write, advarkads) avr.i-trailer.ru##+js(abort-on-property-read, advarkads2) avr.i-trailer.ru##+js(abort-on-property-write, advarkads2) avr.i-trailer.ru##+js(abort-on-property-read, advark) avr.i-trailer.ru##+js(abort-on-property-write, advark) avr.i-trailer.ru##+js(abort-on-property-read, advark2) avr.i-trailer.ru##+js(abort-on-property-write, advark2) ||www.ciqguphollyj.com^* ||ciqguphollyj.com^* ||www.tdugvspdnq.com^* ||tdugvspdnq.com^* ||marketplace.visualstudio.com/_apis/customerintelligence/Events$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.samsclub.com/px/PXsLC3j22K/xhr/api/v2/collector$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.samsclub.com/akam/13/pixel_$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||d10lpsik1i8c69.cloudfront.net/w.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d10lpsik1i8c69.cloudfront.net^* ||faigroas.net^* ||historyzapper.com^* ||jautouze.net^* ||oavaidan.com^* ||shostobs.net^* ||thaickoo.net^* ||track.traffic.name^* www.filehippoapp.com##div[id="cookie-notice"]:remove() ur-files.com##div[class="cookieinfo"]:remove() byet.host##div[class="cookieinfo"]:remove() !||cookieinfoscript.com/js/cookieinfo.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cookieinfoscript.com^* fex.net##div[class="layout__cookies-policy-notification"]:remove() fex.net##div[id^="epom-"]:remove() ||www.wgrjizeaimbxx.com^* ||wgrjizeaimbxx.com^* www.mp3tag.de##div[aria-label="cookieconsent"]:remove() passwordsgenerator.net##div.ProxyBtn:remove() lookup.icann.org##rwc-cookie-notification:remove() ||stat.media/counter/api$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||hb.spotim.market/adunit/tracking$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hb.spotim.market/adunit/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css filewhopper.com##div[class="cl i-bem"]:remove() filewhopper.com##div[class="cl_visible"]:remove() filewhopper.com##div[class="cl i-bem cl_js_inited cl_visible"]:remove() afterlogic.com##div[aria-label="cookieconsent"]:remove() www.ugx-mods.com##div[id="ugx_cookie_info_bar"]:remove() www.onenote.com##div[id="msccBanner"]:remove() winaero.com##div[id="cookieNotice"]:remove() jelastic.com##div[class="jelastic-cookie-bar"]:remove() ||www.atticgamez.com/contents/videos_screenshots/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css developer.microsoft.com##div[id="uhfCookieAlert"]:remove() ||d1ybdlg8aoufn.cloudfront.net^* ||eredincreaso.club^* ||choinsiden.club^* ||notifier.rarlab.com^* ||tag.sp.advertising.com^* ||insectadvertisesecretly.com^* ||aanqylta.com^* ||judgementinvincible.com^* ||problogger.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||t.r-tb.com/imp^* ||t.r-tb.com^* !||socialbars-web4.com/sb/notifications/software/us/windows/flash-all/1/js/script.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||socialbars-web4.com^* ||load.sumo.com^* !||cdn2.wpbeginner.com/wp-content/plugins/google-analytics-premium/assets/js/frontend.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn2.wpbeginner.com/wp-content/plugins/google-analytics-premium/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tag.rightmessage.com^* ! The following rule removes num=x from the query string if not only at the end of the URL. ||www.google.com/search?$uritransform=/&num=\d+&/&/,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The following rule removes num=x from the query string in the rare case that it is at the start of the URL. ||www.google.com/search?$uritransform=/\?num=\d+&/?/,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The following rule adds &num=9999 to the end of the Google search results if not already there since by default the number of results is not included and defaults to only 10 results. ||www.google.com/search?$uritransform=/(?!&num=\d+)$/&num=9999/,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The following rule expands the number of search results returns per page. The limit appears to be less than 9999. ! The maximum number of digits matched in the following rule must be the same as the number replaced, or extra digit(s) will be added. ||www.google.com/search?$uritransform=/num=\d{1,4}/num=9999/,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! TODO: The subsequent pages query string element (&start=\d) doesn't work either for some reason. !||www.google.com/js/th/*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.google.com/ads/measurement/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.google.com/ads/popudner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.google.com/ads/search/module/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.google.com/adsense/domains/caf.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.google.com/adsense/search/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.google.com/adsense/search/async-ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.google.com/adsense/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.google.com/afs/ads$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.google.com/afsonline/show_afs_ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.google.com/client_204^* ||www.google.com/images/cleardot.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.google.com/js/gweb/analytics/autotrack.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.google.com/js/gweb/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.google.com/pagead/1p-user-list/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.google.com/pagead/drt/ui$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.google.com/pagead/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.google.com/s2/favicons$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.google.com/uds/?file=ads$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.google.com/uds/api/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.google.com/uds/stats$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.google.com/velog/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.google.com^* !||adservice.google.com.au/adsid/integrator.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adservice.google.com/adsid/google/ui$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adservice.google.com/adsid/integrator.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adservice.google.com^* ||adservice.google.com.au^* ! TODO: For some reason the following rule is not blocking POST requests. ||analytics.google.com^* ||analytics.google.com^*$important,3p,xhr,method=post|options !||cse.google.com/adsense/search/async-ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cse.google.com/adsense/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||clients2.google.com/service/update2/crx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||clients2.google.com/service/update2/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||clients2.google.com/service/update2$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||clients5.google.com/ads/measurement/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||clients5.google.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||clients5.google.com/pagead/drt/dn/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||clients5.google.com/pagead/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||docs.google.com/*/logimpressions?$xmlhttprequest,domain=docs.google.com ||drive.google.com/drive/logImpressions$domain=drive.google.com ||inputtools.google.com/ping?cs=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||support.google.com/chrome/bin/stats$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.google.com##img[src^="/logos/doodles/2023/celebrating-willi-ninja-"]:remove() www.google.com##div[aria-label="Celebrating Willi Ninja"]:remove() www.google.com##div[class="szppmdbYutt__middle-slot-promo"]:remove() www.google.com##*[class*="chr-cookie-banner"]:remove() www.google.com###tads:remove() google.com##div[id="bottomads"]:remove() google.com##*[data-label="Racial Equity"]:remove() mail.google.com##.Zs:remove() mail.google.com##.oM:remove() mail.google.com##.u5:remove() !||video.google.com/ad/shoppingsyndication$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||video.google.com/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pushwelcome.com/domains.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pushwelcome.com^* ||a.opmnstr.com^* ! TODO: ^script doesn't work with attributes since checked before DOM created? www.prodad.com##script[data-consent_id="google_analytics"]:remove() www.prodad.com##div[class="cookie_consent"]:remove() !www.actalis.it##div[id="cookiesdirective"]:remove() !extrassl.actalis.it##div[id="cookiesdirective"]:remove() actalis.it##div[id="cookiesdirective"]:remove() www.nvidia.co.uk##div[id="cookiePolicy-layer"]:remove() freehostingnoads.net##div[id="cookieChoiceInfo"]:remove() ||freehostingnoads.net/js/cookiechoices.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.rewasd.com##div[class="cookies_banner"]:remove() ||thoughtminuteschool4.live^* www.connection.com##div[class="cookie-check hidden-print"]:remove() www.softpedia.com##div[id="cookienotif"]:remove() ukie.org.uk##div[class="cookie-policy js-cookie-policy is-visible"]:remove() www.designcise.com##aside[data-vendor="carbonads"]:remove() ! TODO: ^script doesn't work with attributes since checked before DOM created? www.designcise.com##script[id="_carbonads_js"]:remove() !||bgn2zqlce1eiya.icu/metrika/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bgn2zqlce1eiya.icu^* www.nvidia.com##div[id="cookiePolicy-layer"]:remove() ||delivery.adrecover.com^* ||mol16.biz^* ||link.bestoffersx.com^* ||noseangerspend8.live^* ||eomsey.dimurq.com^* ||bnmjjwinf292.com^* ||xbno.silitaly.it^* ||propermedia-d.openx.net^* www.hongkiat.com##div[id="promote-bottom"]:remove() !www.usatoday.com##div[id^="ad-slot-"]:remove() !www.usatoday.com##div[id^="\~ad-slot-"]:remove() www.usatoday.com##div[id*="ad-slot-"]:remove() www.usatoday.com##aside[aria-label="advertisement"]:remove() www.usatoday.com##+js(aeld, error) !www.usatoday.com##div[class="gnt_xbr"]:has(a[aria-label="Close"]):remove() www.usatoday.com##div[class="gnt_xbr"] > a[aria-label="Close"]:upward(1):remove() !www.usatoday.com##video[disableremoteplayback]:watch-attr(disableremoteplayback):remove-attr(disableremoteplayback) !www.usatoday.com##video[disablepictureinpicture]:watch-attr(disablepictureinpicture):remove-attr(disablepictureinpicture) !www.usatoday.com##+js(remove-attr, disableremoteplayback[disableremoteplayback], video, stay) !www.usatoday.com##+js(remove-attr, disablepictureinpicture, video[disablepictureinpicture], stay) www.usatoday.com##video[disableremoteplayback]:remove-attr(disableremoteplayback) www.usatoday.com##+js(remove-attr, disableremoteplayback, video[disableremoteplayback]) www.usatoday.com##video[disablepictureinpicture]:remove-attr(disablepictureinpicture) www.usatoday.com##+js(remove-attr, disablepictureinpicture, video[disablepictureinpicture]) www.usatoday.com##+js(trusted-set-attr, video, width, 100%) www.usatoday.com##+js(trusted-set-attr, video, height, 100%) www.usatoday.com##+js(trusted-set-attr, video, x-webkit-airplay, allow) www.usatoday.com##+js(set-attr, video, data-autoplay-mute-lock, false) !www.usatoday.com##+js(trusted-set-attr, video, data-autoplay-mute-lock, false) www.usatoday.com##+js(set-attr, video, controls, true) !www.usatoday.com##+js(trusted-set-attr, video, controls, true) www.usatoday.com##+js(set-attr, video, playsinline, true) !www.usatoday.com##+js(trusted-set-attr, video, playsinline, true) !www.usatoday.com##+js(trusted-set-attr, video, playsinline, playsinline) www.usatoday.com##+js(set-attr, video, webkit-playsinline, true) !www.usatoday.com##+js(trusted-set-attr, video, webkit-playsinline, true) www.usatoday.com##+js(trusted-set-attr, video, preload, metadata) !www.usatoday.com##+js(trusted-set-attr, video, preload, none) !www.usatoday.com##+js(trusted-set-attr, video, preload, auto) ! TODO: Setting the muted attribute to false or removing the muted attribute does NOT unmute the volume if the video player is set to mute the audio. !www.usatoday.com##+js(set-attr, video, muted, false) !www.usatoday.com##+js(trusted-set-attr, video, muted, false) !www.usatoday.com##video[muted]:remove-attr(muted) !www.usatoday.com##+js(remove-attr, muted, video[muted]) ftw.usatoday.com##div#ad--sidebar:remove() !||www.usatoday.com/pbd/openrtb2/auction$xhr,method=post ||www.usatoday.com/pbd/openrtb2/auction$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.usatoday.com/pbd/cookie_sync$xhr,method=post ||www.usatoday.com/pbd/cookie_sync$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||qds0l-hvw7s.ads.tremorhub.com^* ||www.slrviazqkilu.com^* ||slrviazqkilu.com^* ||www.mxjptfrxqaavdc.com^* ||mxjptfrxqaavdc.com^* ||bestaryua.com^* ||d3m4hp4bp4w996.cloudfront.net^* ||overkirliaan.com^* ||tedstocktails.club^* ||purrenches.top^* ||greemeek.net^* ||10.trackints.com^* ||beta.infopicked.com^* ||btpnative.com^* ||upadserver.com^* ||fw.dnslink.com^* ||www.dcdilhaybpzkvj.com^* ||dcdilhaybpzkvj.com^* ||inabsolor.com^* ||agafurretor.com^* ||expresentc.top^* !||cdn.snigelweb.com/adconsent/adconsent.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.snigelweb.com/adconsent/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.snigelweb.com/adengine/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.zvmldjxh.com^* ||zvmldjxh.com^* ||www.movebaystar.com^* ||gdmconvtrck.com^* ||linknutracking.net^* ||secureconv-dl.com^* ||track.adclickbyte.com^* ||track.traynstrack.com^* ||www.emjcd.com^* ||www.kqzyfj.com^* ||wwyfcalkqahi.com^* !||cndoiz6oef.myepicwinners.com^* ||myepicwinners.com^* ||pskidsqhsbfi.com^* !||factoring.ltd/traffic2$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||factoring.ltd/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.startos.win^* ||gbfeexoyo.com^* !||www.displayvertising.com/jquery.row-grid.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.displayvertising.com/jquery.complexify.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.displayvertising.com/repo.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.displayvertising.com/index.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.displayvertising.com^* ||displayvertising.com^* ||ratesphospit.club^* ||jientlysome.top^* ||workedlew.top^* ||set.connectingtobestsoftware.com^* ||connectingtobestsoftware.com^* ||hcxwy.prograph.club^* ||prograph.club^* ||horiticalagen.club^* ||eevidespre.top^* ||www.paqiqqjmmo.com^* ||paqiqqjmmo.com^* ||www.ntadnddfgogpse.com^* ||ntadnddfgogpse.com^* ||whusebsu.com^* ||saumooly.net^* ||vaia06o630os.com^* ||vashoaft.net^* *##iframe[class="padPreload"]:remove() ||www.ngumyydbupv.com^* ||ngumyydbupv.com^* ||www.jnctgldbxc.com^* ||jnctgldbxc.com^* ||ferentshugge.top^* ||d1ukp4rdr0i4nl.cloudfront.net^* ||stsunfulnoth.top^* ||freshcode.club^* ||gamecococo.com^* ||www.egxlbyokjk.com^* ||egxlbyokjk.com^* ||upload.back2host.com^* ||www.iomppdwwmbvq.com^* ||iomppdwwmbvq.com^* ||www.pnhtmagmhbu.com^* ||pnhtmagmhbu.com^* ||track.ecampaignstats.com^* ||track.godigitaltargetedemail.com^* ||www.etlcrfkkfl.com^* ||etlcrfkkfl.com^* ||www.myemailtracking.com/out.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||houtrelen.top^* ||ericalmessar.club^* ||gjrswtzjn.com^* ||bestcond1tions.com^* ||mocmubse.net^* ||www.umyijmhalvbk.com^* ||umyijmhalvbk.com^* ||nfetch.yektanet.com^* ||cdn.yektanet.com^* www.tutorialrepublic.com##ins[class="adsbygoogle"]:remove() www.tutorialrepublic.com##div[class="ad-label"]:remove() www.tutorialrepublic.com##div[class^="skyscraper"]:remove() www.tutorialrepublic.com##div[class^="bottom-ad"]:remove() www.tutorialrepublic.com##.ad-container:remove() ||app.najva.com/static/js/scripts/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||coyseyirely.club^* ||d3n3a4vl82t80h.cloudfront.net^* ||dcrecycle.top^* grabify.link##div[class="mobile_sticky_ad"]:remove() grabify.link##footer[class="text-center footer-cookie"]:remove() grabify.link##div[class="alert alert-dismissible text-center cookiealert show"]:remove() nordvpn.com##div[aria-label="cookieconsent"]:remove() !||api.purpleads.io/x/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||api.purpleads.io/x/partners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.purpleads.io^* ||cdn.purpleads.io^* ! TODO: ^script doesn't work with attributes since checked before DOM created? ubuntudde.com##script[id="google_gtagjs-js-after"]:remove() ubuntudde.com##script[id="purpleads-client"]:remove() ubuntudde.com##script[id="ai-adb-ga"]:remove() ubuntudde.com##script[id="ai-adb-mn"]:remove() ubuntudde.com##script[id="ai-adb-ads"]:remove() ubuntudde.com##script[id="ai-adb-sponsors"]:remove() ubuntudde.com##div[id="cookie-law-info-bar"]:remove() ubuntudde.com##div[id="banner-advert-container"]:remove() ubuntudde.com##div[class="ad-inserter infolinks-ad"]:remove() ubuntudde.com##img[id="adsense"]:remove() ubuntudde.com##img[class="SponsorAds adsense"]:remove() ubuntudde.com##img[id="ai-adb-adnxs"]:remove() ubuntudde.com##+js(set-constant, ai_js_code, false) ubuntudde.com##+js(abort-on-property-write, ai_js_code) ubuntudde.com##+js(abort-on-property-read, ai_js_code) !||ubuntudde.com/wp-content/plugins/ad-inserter/images/ads.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ubuntudde.com/wp-content/plugins/ad-inserter/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ubuntudde.com/wp-content/plugins/ad-inserter/js/sponsors.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ubuntudde.com/wp-content/plugins/ad-invalid-click-protector/assets/js/aicp.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ubuntudde.com/wp-content/plugins/ad-invalid-click-protector/assets/js/jquery.iframetracker.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ubuntudde.com/wp-content/plugins/ad-invalid-click-protector/assets/js/js.cookie.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ubuntudde.com/wp-content/plugins/ad-inserter/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ubuntudde.com/wp-content/plugins/ad-invalid-click-protector/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.aidjodlthdaxq.com^* ||aidjodlthdaxq.com^* ||scnlog.me/forum/service_worker.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||scnlog.me/wp-content/themes/scnlog/js/pa.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||scnlog.me/analytics/piwik.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||scnlog.me/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||scnlog.me/cdn-cgi/apps/head/oOeNXYuAlgjdygJugMEgBqaJzrM.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||scnlog.me/cdn-cgi/pe/bag2?r$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||scnlog.me/cdn-cgi/pe/bag2$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||scnlog.me/wp-content/cache/busting/google-tracking/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||scnlog.me/wp-content/cache/busting/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||scnlog.me/xmlrpc.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css scnlog.me##.post-764980.post.type-post.status-publish.format-standard.sticky.hentry.category-advertising:remove() scnlog.me##.at_a11y:remove() ! The following rule breaks the hcaptcha iframe on the forum registration page. !scnlog.me##+js(abort-current-script, atob) scnlog.me##+js(abort-current-script, charCodeAt) scnlog.me##+js(abort-on-property-read, charCodeAt) scnlog.me##+js(abort-on-property-read, 2318171) scnlog.me##+js(abort-current-script, 2318171) scnlog.me##+js(abort-current-script, popundersPerIP) scnlog.me##+js(abort-on-property-read, _paq) scnlog.me##+js(abort-current-script, _paq) scnlog.me##iframe[class="padPreload"]:remove() scnlog.me##div.z9hqY8TBSowQ:remove() !||d3mzokty951c5w.cloudfront.net/scripts/usb-admin-2.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||d3mzokty951c5w.cloudfront.net/images/vangular-google-analytics.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||d3mzokty951c5w.cloudfront.net/assets/vjs-signals.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d3mzokty951c5w.cloudfront.net^* elements.heroku.com##div[id="heroku-cookie-banner"]:remove() www.heroku.com##span[class="salesforce-blue"]:remove() www.heroku.com##div[id="heroku-cookie-banner"]:remove() www.heroku.com##div[class="heroku-cookie-banner"]:remove() www.heroku.com##div[class="general-info-banner"]:remove() signup.heroku.com##div[class="heroku-cookie-banner"]:remove() ||static.hotjar.com^* ||ttoc8ok.com^* ||terlaby.com^* ||zbdvvwpia.com^* ||erevtljvo.com^* !mirrorace.com,mirrorace.org##.uk-open.uk-modal:remove() !mirrorace.com,mirrorace.org##.uk-modal-dialog:remove() mirrorace.com,mirrorace.org##.uk-card-secondary:has-text(VPN):remove() mirrorace.com,mirrorace.org##.uk-text-center.uk-padding:remove() mirrorace.com,mirrorace.org##.uk-text-center.uk-margin-bottom.uk-width-1-1:nth-of-type(2):remove() mirrorace.com,mirrorace.org##[href*="search/"]:remove() mirrorace.com,mirrorace.org##a[href^="http://nottoke.com/ref"]:remove() mirrorace.com,mirrorace.org##div[class="uk-width-1-1 uk-margin-bottom uk-text-center uk-visible@m"]:remove() mirrorace.com,mirrorace.org##div[id^="rn_ad_native_"]:remove() mirrorace.com,mirrorace.org##iframe[class="padPreload"]:remove() mirrorace.com,mirrorace.org##iframe[data-aa]:remove() mirrorace.com,mirrorace.org##+js(popads-dummy.js) mirrorace.com,mirrorace.org##[href^="https://fastspeedtest.ml/search/"]:remove() mirrorace.com,mirrorace.org##+js(abort-on-property-read, _0x4a8e) mirrorace.com,mirrorace.org##+js(abort-on-property-write, _0x4a8e) mirrorace.com,mirrorace.org##+js(abort-on-property-read, blockAdBlock) mirrorace.com,mirrorace.org##+js(abort-on-property-write, blockAdBlock) mirrorace.com,mirrorace.org##+js(acs, RegExp, _0x) mirrorace.com,mirrorace.org##+js(acs, String.fromCharCode, 'shift') mirrorace.com,mirrorace.org##+js(aeld, click, _0x) mirrorace.com,mirrorace.org##+js(aopr, AaDetector) mirrorace.com,mirrorace.org##+js(aopw, _pop) mirrorace.com,mirrorace.org##+js(popads-dummy) mirrorace.com,mirrorace.org##+js(trusted-set-constant, blockAdBlock, off) mirrorace.com,mirrorace.org##+js(abort-on-property-read, _0x319d) mirrorace.com,mirrorace.org##+js(abort-on-property-read, _0xc10e) mirrorace.com,mirrorace.org##+js(abort-on-property-read, d9e4130f7e4791eddb39599c3ff75271) mirrorace.com,mirrorace.org##+js(abort-on-property-write, _0x319d) mirrorace.com,mirrorace.org##+js(abort-on-property-write, _0xc10e) mirrorace.com,mirrorace.org##+js(abort-on-property-write, d9e4130f7e4791eddb39599c3ff75271) mirrorace.com,mirrorace.org##^script:has-text(/UIkit\[/):remove() mirrorace.com,mirrorace.org##+js(remove-node-text, script, /UIkit\[/gm) !mirrorace.com,mirrorace.org##^script:has-text(document.createElement('script')):remove() ||mirrorace.com/m/undefined$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mirrorace.org/m/undefined$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mirrorace.com/themes/mirrorace/assets/img/Jk37VcagIiqrKUtDsT1L.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mirrorace.org/themes/mirrorace/assets/img/Jk37VcagIiqrKUtDsT1L.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.curve-digital.com##div[id="onetrust-banner-sdk"]:remove() ||www.aqpjyujihpbggj.com^* ||aqpjyujihpbggj.com^* ||www.xlfhttdeordzp.com^* ||xlfhttdeordzp.com^* ||bcfabscdt.com^* ||lutcdiimmeze.com^* ||www.bcfabscdt.com^* ||www.erevtljvo.com^* ||www.lutcdiimmeze.com^* ||www.zbdvvwpia.com^* www.cbr.com##div[class*="ad-zone-container"]:remove() ||hipfowlzeal.icu^* ||whimsoplynx.com^* !||caradstag.casa/cuid/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||caradstag.casa^* x1337x.ws##div[id*="ScriptRootC"]:remove() x1337x.ws##^script:has-text(ScriptRootC):remove() x1337x.ws##+js(remove-node-text, script, /ScriptRootC/gm) domainr.com##a[href*="blacklivesmatter.com"]:remove() ||ad.yieldlab.net^* ||b184.s240.meetrics.net !||cdn.adrtx.net/adrtxtag.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.adrtx.net^* ||cdn.xplosion.de/adp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s.adadapter.netzathleten-media.de/API-1.0/NA-827979-1/naMediaAd.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.adadapter.netzathleten-media.de^* ||tag.md-nx.com^* ||conditionstray.com^* ||myuploadedpremium.de/vendor/js.cookie.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||perfunctorytalentcompute.com/pixel/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pl15693112.profitablegate.com^* !||pl15693138.profitablegate.com^* ||profitablegate.com^* ||r.mobifortune.com^* fortune.com##+js(remove-class, paywallActive, div) fortune.com##+js(remove-class, paywall-selector, div) fortune.com##+js(remove-class, paywall, div) fortune.com##iframe[title="fortune-gtm"]:remove() fortune.com##script[id="gtm"]:remove() fortune.com##script[id="piano-id"]:remove() fortune.com##div[class^="sc-"]:has(div[id="Leaderboard0"]):remove() ! TODO: The class names in the following two rules vary, so the rule is ineffective. fortune.com##div[class="sc-43b83f9c-7 dEaCrX own"]:has(div[class="sc-6815f0ad-0 gMhYwB"]):remove() fortune.com##div[class="sc-1567168f-0 jeAOni"]:remove() ||rtb.us4post.com/metrics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s2s.braintb.com/rtp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s2s.braintb.com^* ||squeezedthoughtfully.com^* !||tremblingkeyboardassistant.com/pxf.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tremblingkeyboardassistant.com^* ||d.smopy.com^* xneelo.co.za##div[id="catapult-cookie-bar"]:remove() ||analytics.ovh.com^* www.kimsufi.com##div[id="tc-privacy-wrapper"]:remove() www.kimsufi.com##div[class*="tc-privacy-wrapper"]:remove() myuploadedpremium.de##div[id="banner_ad"]:remove() !||admel.xyz/click.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||admel.xyz^* ||bainushe.com^* ||check.fraudscore.mobi^* !||cookieanalyze.info/getCookie.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cookieanalyze.info^* !||directsearchapp.com/setCookie.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||directsearchapp.com^* ||occupantrookpurely.com^* !||popblockplus.com/setCookie.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||popblockplus.com^* ||product.directpower.download^* !||api-js.datadome.co/js/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api-js.datadome.co^* !||js.datadome.co/tags.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||js.datadome.co^* !||lightstep.medium.systems/api/v0/reports$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lightstep.medium.systems^* ||spiteaside.com^* ||mwgol.com^* ||onepiece-api.de/ad_banner_4free.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css myuploadedpremium.de##div[id="babasbmsgx"]:remove() myuploadedpremium.de##ins[class="adsbygoogle"]:remove() myuploadedpremium.de##^script:has-text(banner_ad):remove() myuploadedpremium.de##+js(remove-node-text, script, /banner_ad/gm) myuploadedpremium.de##^script:has-text(atob('Lm1haW4tY29udGVudA==')):remove() myuploadedpremium.de##+js(remove-node-text, script, /atob\(['"]Lm1haW4tY29udGVudA==['"]\)/gm) ||tacklesuggestindoors.com^* ||hypermusk.com/dsp-stats/impression/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||socialbars-web2.com/sb/notifications/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||socialbars-web2.com^* !||web-bars.com/sb/notifications/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||web-bars.com^* myuploadedpremium.de##body > script:nth-child(22):remove() ||independentdespisedevolution.com^* ||pretencejailscore.com^* ||mypushz.com^* myuploadedpremium.de##+js(abort-on-property-read, window.atob) myuploadedpremium.de##+js(abort-on-property-write, window.atob) ||fundingchoicesmessages.google.com^* ||colab.research.google.com/analytics$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.gfftsqrc.com^* ||gfftsqrc.com^* ||www.ecsqyotk.com^* ||ecsqyotk.com^* !||code4us.com/clients/target36/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||code4us.com/clients/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bf12394bze.bf.dynatrace.com^* !||fordlincolnbuyfordnow.mpeasylink.com/mpel/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fordlincolnbuyfordnow.mpeasylink.com^* !||js-cdn.dynatrace.com/jstag/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||js-cdn.dynatrace.com^* !||na.fps.ford.com/fps/api/personalization_1_8/get$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||na.fps.ford.com^* ||smetrics.ford.com^* ||ww2.mediamarketstream.com^* ||ww3.mediamarketstream.com^* ||ww5.mediamarketstream.com^* !||www.buyfordnow.com/mpel/mpel_storage.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.buyfordnow.com/mpel/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.ford.com/services/fps/checkFPSXDC.json$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||red.mediamarketsstream.com^* login.wirecard.com##div[id="cookie-message"]:remove() www.sega60th.com##div[aria-label="Cookie Preferences"]:remove() ! TODO: ^script doesn't work with attributes since checked before DOM created? steamworkshopdownloader.io##script[src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"]:remove() ||geelfone.xyz^* www.sadeempc.com##button:nth-of-type(2):remove() www.sadeempc.com##button:nth-of-type(1):remove() ||www.advinci.uno^* amistacx.com##div[id="catapult-cookie-bar"]:remove() ||kqaoe.ritishdeliv.top^* ||ritishdeliv.top^* ||s3.us-east-2.amazonaws.com/triumphantdownloadapps/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d227cncaprzd7y.cloudfront.net^* ||hinatorhypoc.top^* ||acquirestreamslaunch.best^* ||jhasisinvolvo.top^* ||rsjehandse.club^* ||www.pqxadekhqotwkv.com^* ||pqxadekhqotwkv.com^* ||lqeevjgkjjwi.com^* www.freep.com##aside[aria-label="advertisement"]:remove() www.digitalocean.com##div[class="_panel_1nv7e_1"]:remove() askubuntu.com##div[id="js-gdpr-consent-banner"]:remove() ||ads.avct.cloud^* www.emailonacid.com##div[id="moove_gdpr_cookie_info_bar"]:remove() ||www.xiqgqftva.com^* ||xiqgqftva.com^* ||dlfclcey.com^* ||www.dkdmygipll.com^* ||dkdmygipll.com^* ||winfreewares.xyz^* ||www.rihnogames.com/wp-content/uploads/2020/10/Screenshot_3.png$image ||www.mcmhatmt.com^* ||mcmhatmt.com^* ||www.vobqmjimemjf.com^* ||vobqmjimemjf.com^* ||kechustada.pro^* ||dynamic675.ga^* ||bootup523.ml^* ||def.dev-nano.com^* ibf.tw##div[class="clickforceads"]:remove() ||ad.holmesmind.com^* ||ad2.apx.appier.net^* !||dmp.eland-tech.com/dmpreceiver/eland_tracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||dmp.eland-tech.com/dmpreceiver/cookie_transfer.jsp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dmp.eland-tech.com^* ||pkhhyool.com^* firebase.google.com###gc-wrapper > main > devsite-content > article > div.devsite-banner.devsite-banner-announcement > div > div > a:remove() ||www.bkjjepbwwgef.com^* ||bkjjepbwwgef.com^* ||adcalm.com/ads.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adcalm.com/serve/ads.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||awelessawelesscedar.com^* !||cdn.rawgit.com/MuhBayu/adBDetect/628a81c4/js/adbdetect.packed.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.rawgit.com/MuhBayu/adBDetect/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gateway.yuudrive.me/bypass-service/ping/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||intelligenceadx.com/m.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||intelligenceadx.com^* !||promriftahead.com/pixel/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||promriftahead.com^* ||twp0g1fch5yr.com^* !||www.profitabledisplaycontent.com/watch.156454016762.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.profitabledisplaycontent.com^* ||www.lxgoewxns.com^* ||lxgoewxns.com^* ||www.mgsqbazssiq.com^* ||mgsqbazssiq.com^* ||www.gqtffirr.com^* ||gqtffirr.com^* linuxize.com##.ezoic-ad-adaptive:remove() linuxize.com##.adtester-container:remove() ! The following rule removes all of the content on the page. !ostechnix.com##div[id^="adhesion_"]:remove() ostechnix.com##div[id="adhesion_desktop_wrapper"][class^="adhesion_"]:remove() ostechnix.com##a[class="grow-housead"]:remove() ostechnix.com##div[class^="ad-reporter-"]:remove() ostechnix.com##div[class="penci-wrap-gprd-law"]:remove() ostechnix.com##div[class="mv-ad-box"]:has(div[id$="_btf_wrapper"][class*="adunitwrapper"]):remove() ostechnix.com##div[id="grow-me-root"]:remove() ostechnix.com##iframe[name="__pb_locator__"]:remove() ostechnix.com##iframe[name="__gppLocator"]:remove() !ostechnix.com##iframe[id="adhesion_desktop_container"]:remove() ostechnix.com##iframe[id^="adhesion_"]:remove() ostechnix.com##iframe[src^="https://scripts.journeymv.com/tags/"]:remove() ostechnix.com##iframe[src^="https://exchange.mediavine.com/usersync/sync?"]:remove() ostechnix.com##iframe[src^="https://feed.pghub.io/tag?"]:remove() ostechnix.com##iframe[src^="https://ads.pubmatic.com/"]:remove() ostechnix.com##iframe[src^="https://eb2.3lift.com/sync?"]:remove() ostechnix.com##iframe[src^="https://eus.rubiconproject.com/usync.html?"]:remove() ostechnix.com##mv-ad-reporter:remove() ostechnix.com##script[id^="google_gtagjs-js"]:remove() scripts.journeymv.com##gumgum-ad:remove() scripts.journeymv.com##div[id="adelphic_ads"]:remove() ||imp-dev.journeymv.com^* /^https?:\/\/([a-zA-Z]\.shared\.global\.fastly\.net)|(imp\-dev\.journeymv\.com)\/(impkey|record)\?/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||p.shared.global.fastly.net/tags/*/safeframe.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||scripts.journeymv.com/tags/*/safeframe.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||exchange.journeymv.com/bidRequest/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||media-cdn.ipredictive.com/image/$3p,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.binarytides.com##ins[class="adsbygoogle"]:remove() www.binarytides.com##div[class^="display-ad-unit"]:remove() ||bucket.rtk.io/analytics$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.update.sharethru.com/2/673815/analytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||apester-d.openx.net^* ||events.apester.com^* ||static.apester.com/cookie/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||interaction.apester.com/interaction-stats/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||interaction.apester.com^* ||renderer.apester.com/v2/static/adsbygoogle.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.omappapi.com/app/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.apester.com/js/lib/adsbygoogle.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.omappapi.com/app/campaign-views/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css linuxize.com##div[class^="affiliate"]:remove() linuxize.com##span[class="ezoic-adpicker-ad"]:remove() !www.w10privacy.de##div[class="cc-content-parent"]:remove() www.w10privacy.de##div[class^="cc-individual-cookie-settings"]:remove() flacplayer.ehubsoft.net##+js(abort-current-script, 'google_ad_client') flacplayer.ehubsoft.net##+js(set-constant, gadb, false) ! TODO: ^script doesn't work with attributes since checked before DOM created? flacplayer.ehubsoft.net##script[onerror="gadb=true;"]:remove() !flacplayer.ehubsoft.net##script[onerror]:remove-attr(onerror) !flacplayer.ehubsoft.net##maintable > tbody > tr:nth-child(1) > td > center > script:nth-child(1) !flacplayer.ehubsoft.net##maintable > tbody > tr:nth-child(1) > td > center > script:nth-child(2) !||seeptoag.net/pfe/current/service-worker.min.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||seeptoag.net^* www.quaddicted.com##div[aria-label="cookieconsent"]:remove() ||edvisualtye.space^* ||naginaldev.top^* ||onmarshtompor.com^* ||paintifiercute.club^* !||shorteh.com/apu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||shorteh.com^* ||www.indishare.org/js/countdown.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||indishare.org/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||eonwayaha.com^* ||petchesa.net^* ||www.madratesforall.com^* ||manslaughteradministrationalarm.com^* www.emurom.net##div[id="altcontent"]:remove() www.gamersgate.com##div[aria-label="cookieconsent"]:remove() ||www.jyagyffnbysg.com^* ||jyagyffnbysg.com^* ||www.kvygpqttzqhhl.com^* ||kvygpqttzqhhl.com^* !||lativenayl.top/popunder.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lativenayl.top^* ||zingtormanc.top^* ||dl-ready.com^* !||dl-ready.com/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||dl-ready.com/service-worker.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||aj1090.online/dc9e97fb.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdnstatic.4shared.com/js/blockDetect/blockDetect.4min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||epomads2.4shared.com/ads-async.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||epomads2.4shared.com/ads?v=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static.4shared.com/js/ads/relativeAdsScript.4min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static.4shared.com/js/blockDetect/blockDetect.4min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static.4shared.com/js/blockDetect/blockDetect2.4min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.4shared.com/ads/countdp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||4shared.mozcloud.net^* ||epomads2.4shared.com^* !||cdnstatic.4shared.com/js/adlogger_tracker.4min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdnstatic.4shared.com/js/adlogger_tracker.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdnstatic.4shared.com/js/blockDetect/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.4shared.com/advertise/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.4shared.com/images/blank.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static.4shared.com/js/adlogger_tracker.4min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static.4shared.com/js/adlogger_tracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.4shared.com/js/adlogger_tracker.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.4shared.com/js/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.4shared.com/js/blockDetect/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.4shared.com/js/header.4min.js?ver=$replace=/reloadAdsMobile\(\);/null;/gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.4shared.com/js/header.4min.js?ver=$replace=/reloadDesktop\(\);/null;/gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.4shared.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.4shared.com/show_ad_.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.4shared.com/show_ad_.xml$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.4shared.com/show_ad_.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.4shared.com/sw_1855972.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.4shared.com/dataCollect.jsp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.4shared.com/js/relativeScript.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.4shared.com/js/facebookInit.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css 4shared.com##.ads_top_wrapper:remove() www.4shared.com##.hidden-sm.hidden-xs.rekl_top_d:remove() www.4shared.com##.jsStickyBan.epomLeft:remove() www.4shared.com##div.d1AdsWrapper:remove() www.4shared.com##div[class="adBlockWarningMessage"]:remove() www.4shared.com##div[class="cookies-holder"]:remove() www.4shared.com##div[class^="cookies-notice"]:remove() www.4shared.com##div[class*="vidAdHolder"]:remove() !www.4shared.com##div[class="freeDownloadButton"]:remove() www.4shared.com###troublesText1:remove-class(hintDuringCounter) www.4shared.com###troublesText2:remove-class(hintDuringCounter) www.4shared.com###troublesText2:style(display: block !important;) www.4shared.com##+js(set-constant, reloadAdsMobile, noopFunc) www.4shared.com##+js(set-constant, reloadAdsDesktop, noopFunc) www.4shared.com##+js(trusted-set-constant, d2CounterValue, { "value": -1 }) www.4shared.com##+js(set-attr, '#jsTrafficLimitExceeded', value, false) www.4shared.com##+js(set-attr, '#secondsLeft', value, 0) !www.4shared.com##+js(trusted-set-attr, #baseDownloadLink, type, text) www.4shared.com##+js(trusted-set-attr, #baseDownloadLink, type, submit) www.4shared.com##+js(set-constant, sendNativeAnalytics, noopFunc) www.4shared.com##+js(set-constant, Config.detectAd, {}) ! trusted-replace-node-text will replace the textContent of any element such as an anchor tag in the following rule. www.4shared.com##+js(trusted-replace-node-text, #text, Report Abuse, Download This) !www.4shared.com##+js(move-attr-prop, a[class*="reportAbuse"], input[id="baseDownloadLink"], href, value) !www.4shared.com##a[class*="reportAbuse"]:remove-class(light-gray) !www.4shared.com##a[class*="reportAbuse"]:remove-class(f11) !www.4shared.com##a[class*="reportAbuse"]:remove-class(alignRight) !www.4shared.com##a[class*="reportAbuse"]:remove-class(paddingL15) ! remove the jsReportAbuse class so the click event listener isn't fired on this repurposed anchor tag. !www.4shared.com##a[data-element="h22_3"][class*="jsReportAbuse"]:remove-class(jsReportAbuse) !www.4shared.com##+js(add-class, freeDownloadButton|linkShowD3|light-blue|f16|floatLeft, a[data-element="h22_3"]) !www.4shared.com##a[data-element="h22_3"]:style(box-sizing: content-box !important;) !www.4shared.com##+js(insert-child-after, div[class^="fileDescription"], a[data-element="h22_3") www.4shared.com##+js(move-attr-prop, a[data-element="h22_3"], input[id="baseDownloadLink"], href, value) www.4shared.com##a[data-element="h22_3"]:remove-class(reportAbuse) www.4shared.com##a[data-element="h22_3"]:remove-class(light-gray) www.4shared.com##a[data-element="h22_3"]:remove-class(f11) www.4shared.com##a[data-element="h22_3"]:remove-class(alignRight) www.4shared.com##a[data-element="h22_3"]:remove-class(paddingL15) www.4shared.com##a[data-element="h22_3"][class*="jsReportAbuse"]:remove-class(jsReportAbuse) www.4shared.com##+js(add-class, freeDownloadButton|linkShowD3|light-blue|f16|floatLeft, a[data-element="h22_3") www.4shared.com##a[data-element="h22_3"]:style(box-sizing: content-box !important;) www.4shared.com##+js(insert-child-after, div[class^="fileDescription"], a[data-element="h22_3") www.4shared.com##+js(move-attr-prop, a[class^="freeDownloadButton"], input[name="d3link"], href, value) www.4shared.com##+js(aopw, cookiesMessage) www.4shared.com##+js(aopr, cookiesMessage) www.4shared.com##+js(abort-on-property-read, targetElemID) www.4shared.com##+js(abort-on-property-write, targetElemID) www.4shared.com##^script:has-text(trackAdBlock):remove() www.4shared.com##+js(remove-node-text, script, /trackAdBlock/gm) www.4shared.com##^script:has-text(ld.counter):remove() www.4shared.com##+js(remove-node-text, script, /ld\.counter/gm) ! TODO: The following rule doesn't. Remove the script using either of the two successive rules. www.4shared.com##^script:has-text(cmwoejfwnldnkg):remove() www.4shared.com##+js(remove-node-text, script, /cmwoejfwnldnkg/gm) www.4shared.com##:xpath(//script[contains(text(), 'cmwoejfwnldnkg')]):remove() www.4shared.com##+js(acs, sendNativeAnalytics) !www.4shared.com##+js(nano-stb, , *, 0.01) !www.4shared.com##+js(no-setInterval-if, /^/) ! TODO: The following two rules prevent the drop-down menus from working. !www.4shared.com##+js(no-setInterval-if, b) !www.4shared.com##+js(aeld, click, h) ||atharori.net/index/ping$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||api.pushnami.com/scripts/v1/hub$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||api.pushnami.com/scripts/v1/pushnami-adv/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||api.pushnami.com/scripts/v2/pushnami-sw/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.pushnami.com^* ||t.mfroute.com^* ||esev2.s3.amazonaws.com^* ||esev2uploaded.s3.amazonaws.com^* !||psp.pushnami.com/api/psp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||psp.pushnami.com^* !||trc.pushnami.com/api/push/track$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||trc.pushnami.com^* ||www.profitacceleratorsystem.com^* ||www.12minuteaffiliate.com^* ||servicer.adskeeper.com^* ||cm.adskeeper.com^* ||c.adskeeper.com^* ||jsc.adskeeper.com^* ||www.suumlfkkiyhnv.com^* ||suumlfkkiyhnv.com^* ||somedayanchovydepressing.com^* ||onmystems.top^* ||teachcoexist.com^* ||mentredu.top^* ||www.wndhsykmbe.com^* ||wndhsykmbe.com^* ||cugyjexo.pro^* ||ivwtqfbmkwen.com^* ||ea4cd36404211f91e7a2.com^* ||easy-bars.com^* ||hornsgrid.com^* ||naggingrugcolossal.com^* !||www.xadsmart.com/two.min.js$script !||www.xadsmart.com/countrySelect.min.js$script ||www.xadsmart.com^* ||xadsmart.com^* ||yourwebbars.com^* ||d4a77d8bc81ae17.com^* ||www.sasha-lab.net^* ||tracking.quicklixads.com^* ||ad-eu.gadmobe.com^* !||crm.date-way.com/serviceWorker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||crm.date-way.com^* ||goplaygam.com^* ||www.uiwaqbvvhz.com^* ||uiwaqbvvhz.com^* ||www.gcqdiydpfytvn.com^* ||gcqdiydpfytvn.com^* !||refpavdjhx.top/img/AdAgent_1/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||refpavdjhx.top^* ||refpakglscpj.best^* !||k3node.com/s/11173.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||k3node.com^* ||1xbet67.com/static/pixel.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dl2.dstud.io^* ||click.1k3web.net^* ||getdstudio.com^* ||1504gs9f.ru^* !||www.clicken.us/tag/LocalStorageSetNew.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.clicken.us/tag/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tzlchxdwreirbv.com^* ||c.swtkes.com^* ||cpa.afffarm.com^* !||event.smpush.com/register/event_log/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||event.smpush.com^* !||fasterfiles.net/show.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fasterfiles.net^* ||signup.ourdailysweepstakes.com^* !||signup.ourdailysweepstakes.com/PixelEventLogIframe.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||subscriber-data.smpush.com/ads-api/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||subscriber-data.smpush.com^* ||trk-nullam.com^* ||www.xeverirpunyv.com^* ||xeverirpunyv.com^* ||www.lmsdgxbtrzvd.com^* ||lmsdgxbtrzvd.com^* forge.puppet.com##div[class="puppet-cookie-banner open"]:remove() www.deepl.com##div[id="dl_cookieBanner"]:remove() www.deepl.com##div[class^="dl_cookieBanner"]:remove() ||geedoovu.net^* ||mycloudbook.xyz^* ||keeptaza.com^* !it.altervista.org##div[class^="iubenda-cs-"] !it.altervista.org##div[class^="iubenda-banner-"] !en.altervista.org##div[class^="iubenda-cs-"] !en.altervista.org##div[class^="iubenda-banner-"] altervista.org##div[class^="iubenda-cs-"] altervista.org##div[class^="iubenda-banner-"] ||www.clever-cloud.com/javascripts/consent-manager.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.clever-cloud.com##div[class="gdpr-cookie-notice"]:remove() www.raspberrypi.org##div[class="c-cookie-banner"]:remove() ||www.mfhgehrnafra.com^* ||mfhgehrnafra.com^* ||www.rekodpro.com^* ||rekodpro.com^* ||www.nkjomdiztdy.com^* ||nkjomdiztdy.com^* ||www.afzcqqdhkn.com^* ||afzcqqdhkn.com^* ||www.durpygckli.com^* ||durpygckli.com^* ||pusher3.com^* ||programself.pp.ua/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||trafs.pp.ua/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.fdnfnqgmfykg.com^* ||fdnfnqgmfykg.com^* ||privacylocked.click^* ||coconut.rocks/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.nmwalbwu.com^* ||nmwalbwu.com^* ||www.yfomeimset.com^* ||yfomeimset.com^* phoenixpoint.info##div[class^="termly-consent-banner-"]:remove() www.indiegala.com##div[class="cookie-policy-popup display-none"]:remove() www.indiegala.com##div[id="cookie-policy-popup"]:remove() ||rompuwit.net^* ||jomtingi.net^* ||denetsuk.com^* !||offerimage.com/www/images/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||offerimage.com^* ||in-page-push.com^* ||agacelebir.com^* !||protects.s3.us-east-2.amazonaws.com/secure/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||protects.s3.us-east-2.amazonaws.com^* ||usa.ced-max.com^* ||secure.indeed.com^* ||secure.meetup.com^* ||www1.getsecurybrowse.com^* ||www.hqtlvmcrpb.com^* ||hqtlvmcrpb.com^* ||www.mpnjaifkchgw.com^* ||mpnjaifkchgw.com^* ||leecher.me/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css leecher.me##div[id="cookie-pop"]:remove() leecher.me##div[class="cookie-message"]:remove() leecher.me##div[class="container-fluid"] ||veronicageek.com/wp-content/plugins/jetpack/_inc/build/widgets/eu-cookie-law/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css veronicageek.com##div[id="eu_cookie_law_widget-2"]:remove() !||hc-analytics.idp.clogin.att.com/haloadobeanalytics/v1/GetAnalyticsData$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hc-analytics.idp.clogin.att.com^* !||myattlog.att.com/olam/js/dynaTraceMonitor$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||myattlog.att.com^* ||att.inq.com/tagserver/js/ads-blocking-detector.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.att.com/msapi/tealeafuseractivity/v1/log/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||datea-millionaire.com^* !||dmstrk.com/click.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dmstrk.com^* !||flx808.lporirxe.com/flp/ncvp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||flx808.lporirxe.com^* ||tesvitewbrl.com^* ||www.tesvitewbrl.com^* ||bltlly.com^* ||xtraserp.com^* ||aconosli.ga^* ||eemgl.com^* ||hlett.com^* webscripts.softpedia.com##div[id="cookienotif"]:remove() webscripts.softpedia.com##div[class="fl ad adwblue ad-300x250"]:remove() ||www.swalif.net/adserver/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||urluss.com^* www.wjunction.com##li[class*="notice--cookie"]:remove() !||d1hi41nc56pmug.cloudfront.net/static/js/main.b0434fd9.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||d1hi41nc56pmug.cloudfront.net/static/js/main.*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d1hi41nc56pmug.cloudfront.net^* ||www.msphps.com^* ||signbullswaif.com^* ||r2r.weaurty.club^* ||sedfriencea.top^* ||phooreew.net^* ||ncediscou.fun^* ||faindianship.club^* ||vercraneans.club^* short.fc-lc.com##div[id="adb_detected"]:remove() short.fc-lc.com##+js(set-constant, importFAB, noopFunc) short.fc-lc.com##+js(set-constant, fuckAdBlock), noopFunc) short.fc-lc.com##+js(abort-on-property-read, importFAB) short.fc-lc.com##+js(abort-on-property-write, importFAB) short.fc-lc.com##+js(abort-on-property-read, fuckAdBlock) short.fc-lc.com##+js(abort-on-property-write, fuckAdBlock) short.fc-lc.com##+js(abort-current-script, in-page-push.com) ||fc.lc/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css fc.lc##+js(abort-on-property-read, window.Adomik) fc.lc##+js(abort-on-property-write, window.Adomik) fc.lc##+js(abort-on-property-read, window.googletag) fc.lc##+js(abort-on-property-write, window.googletag) fc.lc##div[id="cookie-pop"]:remove() fc.lc##div[class="cookie-message"]:remove() ||itnuzleafan.com^* !||a.optimizesrv.com/popunder1000.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.optimizesrv.com^* chocolatey.org##div[class^="cookies-popup"]:remove() www.rarlab.com##div[id="cookiewarning"]:remove() thecomputerperson.wordpress.com##div[class$="widget_eu_cookie_law_widget"]:remove() www.driver4vr.com##div[class="gdpr gdpr-overlay"]:remove() www.driver4vr.com##div[class="gdpr gdpr-privacy-bar"]:remove() www.driver4vr.com##div[class="gdpr gdpr-privacy-preferences"]:remove() www.driver4vr.com##div[class="gdpr gdpr-general-confirmation"]:remove() ||2375i1164.xyz^* ||armspothuge7.live^* ||pandits-cibophobia-harrisia.xyz^* ||tdsjsext3.life^* ||www.betteradsystem.com/ember-data-model-fragments.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.betteradsystem.com/imgix.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||betteradsystem.com/CjrG.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||betteradsystem.com^* ||d1f05vr3sjsuy7.cloudfront.net^* ||d2kk0o3fr7ed01.cloudfront.net^* ||ourtherss.top^* ||akaotheref.top^* ||d3t5ngjixpjdho.cloudfront.net^* ||jecromaha.info^* ||tionmustai.fun^* ||tureabstra.fun^* ||kiolim.com^* ||richcatis.com^* ||rindicalapa.fun^* ||xml.realtime-bid.com^* ||enkayijamal.club^* ||ndenlende.club^* ||vulturechinamaternity.com^* ||click.hooligapps.com^* ||luckypushwinner.com^* ||t.ocmhood.com^* !||theonlygames.com/awpx_click.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||theonlygames.com^* ||best2020-games-web1.com^* ||www.searchingonline.net^* ||polishshinyspectacles.com^* ||palundrus.com^* ||drawbacksubdue.com^* ||cdn.fuseplatform.net/publift/tags/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||b56f9c50130def4d.com^* ||racaty.net/racaty_new/js/countdown.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css racaty.net##div[id="mobile_sticky_ad"]:remove() racaty.net##span[id="countdown"]:remove() racaty.net##*[class="after"]:style(display: inline !important;) racaty.net###uniqueExpirylink:style(visibility: visible !important;) racaty.net###downloadbtn > div:style(display: inline !important;) racaty.net###simulateRstrt:style(background: none !important; color:#007bff !important; display: inline !important;) racaty.net##+js(set-constant, a__rcPd, false) racaty.net##+js(abort-on-property-read, a__rcPd) racaty.net##+js(abort-on-property-write, a__rcPd) racaty.net##+js(trusted-set-attr, #downloadbtn, type, submit) ||f3551539d6565853.com^* ||edfsqfaeenij.com^* ||www.dkypsidljq.com^* ||dkypsidljq.com^* ||advertmi.ru/t/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||epnclick.ru/redirect/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||epnclick.ru^* multifilemirror.com##iframe[id="rufous-sandbox"]:remove() multifilemirror.com##iframe[id="IL_MANAGE"]:remove() multifilemirror.com##+js(abort-current-script, blockAdBlock) ||in-appadvertising.com^* www.opera.com##input[id="cookie-consent-expander"]:remove() www.opera.com##div[class="cookie-consent"]:remove() www.opera.com##div[id="cookie-consent"]:remove() www.opera.com##p[class^="cookie-consent"]:remove() www.remoteutilities.com##div[class="eupopup eupopup-container eupopup-container-block eupopup-container-bottom"] www.groovypost.com##div[id="cookie-notice"]:remove() www.groovypost.com##div[class="cookie-notice-container"]:remove() !||radar.cedexis.com/1/14544/radar.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css itstillworks.com##.adsense-inline:remove() us.msi.com##div[id="ccc-overlay"]:remove() us.msi.com##div[id="ccc-notify"]:remove() ||cc.cdn.civiccomputing.com/8.0/cookieControl-8.0.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.bazaarvoice.com/data/statistics.json$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||infopicked.com^* ||analytics.wanmei.com^* ||breated.club^* ||d1nnhbi4g0kj5.cloudfront.net^* !||revboostprocdnadsprod.azureedge.net/adsdata/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||revboostprocdnadsprod.azureedge.net/scripts/latest/min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||revboostprocdnadsprod.azureedge.net^* ||rtpetworki.fun^* ||sessions.bugsnag.com^* wincdemu.sysprogs.org##div[id="cookie-banner"]:remove() www.biemmeitalia.net##div[id="cookie-bar"]:remove() ||ruwertur.com^* ||sheenaup.net^* www.realvnc.com##div[id="cookie-notice"]:remove() !||api.adinplay.com/libs/aiptag/assets/adsbygoogle.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.adinplay.com^* ||anonfiles.com/sw_anonfiles.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||anonfiles.com/analytics/collect$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||anonfiles.com/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||piunikaweb.com^* ||foodprogrammesdiscreet.com^* !||bam-cell.nr-data.net/jserrors/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bam-cell.nr-data.net^* ||www.eailczoszdrz.com^* ||eailczoszdrz.com^* ||zayac2volk11.com^* ||www.oeuanvyte.com^* ||oeuanvyte.com^* !||ask96.com/click.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ask96.com^* powerslaveex.wordpress.com##div[class="widget widget_eu_cookie_law_widget"]:remove() ||todaysportsnews.net^* ||transunion.ifgza3.net^* www.genymotion.com##div[id="cookie-bar"]:remove() www.modapkdown.com##div[class="cookie-fixd"]:remove() www.modapkdown.com##div[class="fot-fixd"] ||reporting.jdsports.co.uk^* gofile.io##.swal2-show.swal2-modal.swal2-popup:remove() gofile.io##.swal2-backdrop-show.swal2-center.swal2-container:remove() ||ads.mobclix.com^* ||e.admob.com^* ||media.admob.com^* ||a.admob.com^* ||schemas.android.com/apk/lib/com.google.ads$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||global-mobile-app-storage.life^* !||consent.cookiebot.com/uc.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||consent.cookiebot.com^*$important,domain=~/(www\.)?gog\.com/|developer.opencv.fr ||consent.cookiebot.com^*$important,domain=~developer.opencv.fr !||ssl.google-analytics.com/__utm.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ssl.google-analytics.com/collect$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ssl.google-analytics.com/ga.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ssl.google-analytics.com^* ||www-google-analytics.l.google.com/batch$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||google-analytics.com/analytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||google-analytics.com/ga.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.google-analytics.com/__utm.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.google-analytics.com/analytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.google-analytics.com/batch$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.google-analytics.com/collect$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.google-analytics.com/ga.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.google-analytics.com/ga_exp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.google-analytics.com/gtm/js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.google-analytics.com/plugins/ga/inpage_linkid.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.google-analytics.com/plugins/ua/linkid.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.google-analytics.com/r/__utm.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.google-analytics.com/siteopt.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.google-analytics.com/urchin.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.google-analytics.com/g/collect?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.google-analytics.com/j/collect?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.google-analytics.com/r/collect?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.google-analytics.com/mp/collect?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.google-analytics.com/*/collect?$important,domain=~/(www\.)?gog\.com/,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||google-analytics.com^$important,3p,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.google-analytics.com^$script,domain=daddylive.watch|thedaddy.to ||google-analytics.com^$important,3p,domain=~/(www\.)?gog\.com/,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||google-analytics.com^$important,3p,xhr,method=post ! TODO: The following rule prevents videos on www.tomshardware.com from playing? !||www.googletagmanager.com/gtm.js$important,domain=~/((www\.)?gog\.com)|((www\.)?tomshardware\.com)|((www\.)?katv\.com)/,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||googletagmanager.com/gtm.js$important,domain=~/((www\.)?gog\.com)|((www\.)?tomshardware\.com)|((www\.)?katv\.com)/,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.googletagmanager.com/gtag/js$important,domain=~/((www\.)?gog\.com)|((www\.)?tomshardware\.com)|((www\.)?katv\.com)/,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||googletagmanager.com/gtag/$important,domain=~/((www\.)?gog\.com)|((www\.)?tomshardware\.com)|((www\.)?katv\.com)/,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||googletagservices.com/gpt.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.googletagservices.com/tag/js/gpt.js$important,domain=~/((www\.)?gog\.com)|((www\.)?tomshardware\.com)|((www\.)?katv\.com)/,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.googletagmanager.com/ns.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||530q7tul3rk734tzmjb3uxdjz7ro2ev36q7lczkwf7282b064f2e795esac.d.aa.online-metrix.net^* !||530q7tulxttrw6cozsyuythxdb6g655ojuyskfb71a8e2fe5e09abf68sac.d.aa.online-metrix.net^* !||ad.tagdelivery.com/impression$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ad.tagdelivery.com/request$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad.tagdelivery.com^* ||analytics-api.cloudinary.com^* !||analytics.audioeye.com/p/v0/send$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||analytics.audioeye.com^* !||ma1498-r.analytics.edgekey.net/9.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ma1498-r.analytics.edgekey.net/config/beacon-29282.xml$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ma1498-r.analytics.edgekey.net^* ||px.ads.linkedin.com^* !||www.officedepot.com/js/analytics_monetate.min.202979ff12b1731c6764.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.officedepot.com/js/analytics_monetate.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.wishpond.com/popups.json$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||yjtag.yahoo.co.jp^* !||tag.apxlv.com/tag/partner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tag.apxlv.com^* !||tag.cogocast.net/tag/partner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tag.cogocast.net^* !||tr.snapchat.com/cs/r^* ||www.wishpond.com/api/pages_v1/social_campaigns/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.wishpond.com/fblp/2585722/count_me_in_iframe$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||bid.g.doubleclick.net/xbbe/pixel?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||bid.g.doubleclick.net/xbbe/test/west2/huluuserid$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bid.g.doubleclick.net^* !||cm.g.doubleclick.net/pixel?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cm.g.doubleclick.net^* !||cdn.tagdelivery.com/request/client/officedepot.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.tagdelivery.com^* !||deviceid.trueleadid.com/cog.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||edspectsm.fun^* atharori.net##+js(abort-on-property-read, frame_check) atharori.net##+js(abort-on-property-write, frame_check) atharori.net##div[id="bottomAd"]:remove() atharori.net##div[id="cookie_notice"]:remove() atharori.net##+js(set-constant, optout_adfly, 1) atharori.net##+js(abort-on-property-read, optout_adfly) atharori.net##+js(abort-on-property-write, optout_adfly) ||critingothere.top^* !||www51.elbaestes.pro/am-push.796884.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www*.elbaestes.pro/am-push.*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||aphycolourses.info^* ||iir.ai/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||iir.ai/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||voltskegscurate.com^* ||r2rtestdomain.xyz^* ||dejourned.club^* ||caiteesh.net^* ||iir.ai/webroot/modern_theme/img/dwndbnr1.png$image ||name0fbestway.com^* ||tickmatureparties.com^* iir.ai##div[class="col-md-12 hidden"]:remove() iir.ai###invisibleCaptchaShortlink:remove-attr(disabled) iir.ai###invisibleCaptchaShortlink:remove-attr(onclick) iir.ai###go-submit:remove-attr(disabled) iir.ai###go-submit:remove-attr(class) iir.ai##div[class="alert alert-danger"]:remove() !iir.ai##div[id="adtrue_tag_18696"]:remove() iir.ai##div[id^="adtrue_tag_"]:remove() iir.ai##div[class="banner-inner"]:remove() iir.ai##iframe[name="__cmpLocator"]:remove() !||bs.serving-sys.com/BurstingPipe/adServer.bs$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||bs.serving-sys.com/Serving^* ||bs.serving-sys.com^* ||btloader.com/tag^* ||vsm05taz.micpn.com/p/cp/-1/track.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||udc-neb.kampyle.com/egw/5/qceuv8449dzg58ptt1bhda9g8ue19c7s/track/__cool.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||udc-neb.kampyle.com/egw/5/*/track/__cool.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ws.cnetcontent.com/log$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wsv3cdn.audioeye.com/frame/cookieStorage.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css osdn.net##div[id="cookie-bar"]:remove() sonydadc.com##div[class="cookie-banner js-cookiebanner"]:remove() ||cc.cdn.civiccomputing.com/9/cookieControl-9.x.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.sega.com##div[id="ccc"]:remove() unetbootin.github.io##div[id="helpful"]:remove() freecommander.com##div[id="cookie-notice"]:remove() ||ssp.rambler.ru^* ||cmjs.rambler.ru^* linuxnewbieguide.org##div[class^="ezmob-footer"]:remove() linuxnewbieguide.org##div[class*="ezo_ad"]:remove() linuxnewbieguide.org##span[id^="ezoic-pub-ad-placeholder"]:remove() linuxnewbieguide.org##span[id^="div-gpt-ad-"]:remove() linuxnewbieguide.org##span[class^="ezoic-ad"]:remove() linuxnewbieguide.org##span[class*="adtester-container"]:remove() ||www.qptqoylpxmqbz.com^* ||qptqoylpxmqbz.com^* !||im.cbsileads.com/pixel.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||im.cbsileads.com^* ||tr*.cbsistatic.com/fly/bundles/flyjs/js/managers/dw-tracking-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||en.wikipedia.org/beacon/impression$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||en.wikipedia.org/beacon/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d2klx87bgzngce.cloudfront.net^* ||www.bcvutcks.com^* ||bcvutcks.com^* !||a.unblockit.app/b.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.unblockit.app/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css iosgods.com##div[id="elGuestTerms"] ||speed-down.org/ds1/js/clipboard.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css speed-down.org##div[id^="div-gpt-ad-"]:remove() speed-down.org##ins[class="adsbygoogle"]:remove() speed-down.org##+js(abort-on-property-read, adsbygoogle) speed-down.org##+js(abort-on-property-write, adsbygoogle) speed-down.org##+js(abort-on-property-read, sc_security) speed-down.org##+js(abort-on-property-write, sc_security) speed-down.org##+js(abort-on-property-read, _atrk_opts) speed-down.org##+js(abort-on-property-write, _atrk_opts) speed-down.org##input[name="adblock_detected"]:remove() speed-down.org##div[class="adsbox"]:remove() !used to set ablock_detected variable; also triggers adblock script !speed-down.org##div[id="banner_ad"]:remove() speed-down.org##+js(set-constant, remaining, 0) speed-down.org##+js(set-constant, speed, 1) speed-down.org##div.download-option-btn:nth-of-type(2) > .btn-success.btn:remove() !speed-down.org##div.download-option-btn:nth-of-type(3) > .btn-success.btn:remove() speed-down.org###container > center > script:nth-child(18):remove() speed-down.org##+js(abort-current-script, blockadblock) speed-down.org##+js(abort-on-property-read, blockadblock) speed-down.org##+js(abort-on-property-write, blockadblock) speed-down.org###go-submit:remove-attr(disabled) ||speed-down.org/js/countdown.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css speed-down.org##.downloadbtn:remove-attr(disabled) speed-down.org##.downloadbtn:style(display: inline !important;) speed-down.org##+js(set-constant, adblock_detected, 1) speed-down.org##input[id="adblock_detected"]:remove() speed-down.org##a[title="Download"]:remove() !speed-down.org##.btn-success.btn:remove() www.decsoftutils.com##div[id="cookies-note"]:remove() ||only18adultgames.pro^* ||static.only18adultgames.pro^* ||artpever.com^* ||dtv5loup63fac.cloudfront.net^* ||esusivebe.top^* ||mariyadarg.fun^* !||s3.amazonaws.com^$all,domain=userscloud.com ||s3.amazonaws.com^*$domain=userscloud.com www.easy2boot.com##span[class^="ezoic-ad"]:remove() www.easy2boot.com##span[id^="div-gpt-ad-"]:remove() www.easy2boot.com##div[class^="ezmob-footer"]:remove() ||analytic-client.cuntempire.com^* ||www.cuntempire.com^* ||yogar2ti8nf09.com^* ||track.tweaking.com^* !www.tweaking.com##div[id="cookie-bar-prompt"]:remove() www.tweaking.com##div[id^="cookie-bar"]:remove() kolompc.com##div[class="cookies-alert alert"]:remove() serverfault.com##div[id="js-gdpr-consent-banner"]:remove() abc7.com##div[data-box-type^="fitt-adbox-"]:remove() www.airdroid.com##div[class="mode-cookie-tip"]:remove() www.win-raid.com##div[aria-label="cookieconsent"]:remove() ||tracking.trnox.com^* ||survey.bignox.com^* ||tracking.apptrackerlink.com^* www.omgubuntu.co.uk##.primary-container:style(max-width: 100vw !important; width: 100vw !important;) www.omgubuntu.co.uk##.primary:style(flex-basis: 100% !important;) www.omgubuntu.co.uk##div[class="CookieWarning is-active"]:remove() www.omgubuntu.co.uk##+js(remove-node-text, script, /_stq\.push\(\[/gm) www.omgubuntu.co.uk##+js(remove-node-text, script, /[a-zA-Z]\.id\s*=\s?['"]gauges\-tracker['"];/gm) www.omgubuntu.co.uk##script[id^="jetpack-stats-js"]:remove() www.linuxandubuntu.com##div[class="penci-wrap-gprd-law"]:remove() ||skladchik.com^* ! The following two rules are necessary because the download form @ https://www.codeweavers.com/crossover/download will not work otherwise. www.codeweavers.com#@#+js(set-constant, gtag, noopFunc) www.codeweavers.com#@#+js(set-constant, window.gtag, noopFunc) www.codeweavers.com##div[id="GDPR-alert"]:remove() www.codeweavers.com##+js(set-constant, err, false) www.codeweavers.com##+js(set-constant, req, []) !www.codeweavers.com##+js(set-constant, set_input_error, noopFunc) !www.codeweavers.com##+js(set-constant, validateEmail, trueFunc) !www.codeweavers.com##+js(trusted-set-constant, det_OS, "Linux") !www.codeweavers.com##+js(set-constant, submitComplete, true) ||macwinsofts.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||begantume.info^* ||4pieces.xyz^* ||owsvolksk.space^* ||uessentent.fun^* ||d2wy8f7a9ursnm.cloudfront.net/v7/bugsnag.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||clients6.google.com/drive/v2internal/viewerimpressions$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adpone-d.openx.net^* ||trafic-media.ru^* ||boostingads.com^* ||rotator.admediator.ru^* !||dot-stat.radikal.ru/counter2/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dot-stat.radikal.ru^* ||securemoney.ru^* ||81.176.238.128/Counter.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||radikal.ru/Content/Images/Ko_komanda/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css radikal.ru###dogLifeKoKomanda:remove() !||utarget.ru/is_clickunder/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||utarget.ru^* temasoft.com##div[class="avia-cookie-consent avia-cookiemessage-top"]:remove() passwordsgenerator.net##+js(abort-on-property-read, _paq) passwordsgenerator.net##+js(abort-on-property-write, _paq) www.sordum.org##div[id="cookie-notice"]:remove() www.yesstyle.com##md-bottom-sheet[ng-if="!hideCookiePolicy"]:remove() programmersought.com###leftads2:remove() programmersought.com###leftads3:remove() programmersought.com###rightads3:remove() programmersought.com###leftads1:remove() !||het11f.serv.miranus.com:56891/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||het11f.serv.miranus.com^* ||syndi.adxpub.com^* ||serv.adxpub.com^* ||farehitchlower.icu^* ||leakypatgoo.com^* ||bahasteknologi.com^* ||semawur.com/o.png$image ||d2sbzwmcg5amr3.cloudfront.net^* ||hinalwritis.fun^* ||neathsmik.top^* en.wikipedia.org##.frb-country-US.frb-rml-enabled.frb:remove() ||smetrics.aem.playstation.com^* ||collection.decibelinsight.net^* !||telemetry.api.playstation.com/api/telemetry/v1/publish/telemetry/telemetry/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||telemetry.api.playstation.com^* www.overstock.com##div[id="cookieConsentBanner"]:remove() mysteryrocket.wordpress.com##div[class="widget widget_eu_cookie_law_widget"]:remove() www.fixya.com##div[id="locked-footer-ad-wrapper"]:remove() www.fixya.com##div[id="locked-footer-ad-body"]:remove() evertek.com##div[id="cookiesPanel"]:remove() www.regions.com##div[class="rds-cookie-notice"]:remove() symless.com##div[aria-label="cookieconsent"]:remove() ||dpm.demdex.net^* !||demdex.net^* !||usbank.demdex.net/dest5.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||usbank.demdex.net^* !||pr0002-1.glance.net/visitorws$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||presence.glance.net/presence$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pr0002-1.glance.net^* ||presence.glance.net^* !||usbankmetrics.insight.omtrdc.net/customtag/zag.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||usbankmetrics.insight.omtrdc.net^* ||usbankribmetrics.insight.omtrdc.net^* ||smetrics.usbank.com^* ||metrics.usbank.com^* ||usbank-app.quantummetric.com^* ||www.usbank.com/js/omniture/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||pdx-col.eum-appdynamics.com/eumcollector/error.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pdx-col.eum-appdynamics.com/eumcollector/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||col.eum-appdynamics.com/eumcollector/beacons/browser/v2/AD-AAB-AAV-PRJ/adrum$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||col.eum-appdynamics.com/eumcollector/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.quantummetric.com/qscripts/quantum-usbank.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.appdynamics.com/adrum-ext.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.glancecdn.net/cobrowse/js/GlancePresenceVisitor_4.6.0M.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.glancecdn.net/cobrowse/js/GlancePresenceVisitor_$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s3.amazonaws.com/glancecdn/cobrowse/js/GlancePresenceVisitor_4.6.0M.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s3.amazonaws.com/glancecdn/cobrowse/js/GlancePresenceVisitor_$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||siteimproveanalytics.com^* !||siteimproveanalytics.com/js/siteanalyze_5093.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.fls.doubleclick.net/activityi;$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||*.fls.doubleclick.net/activityj;src=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||1817628.fls.doubleclick.net^* !||2183402.fls.doubleclick.net/activityi;$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||2183402.fls.doubleclick.net^* !||4405495.fls.doubleclick.net/activityi;$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||4405495.fls.doubleclick.net^* !||5062961.fls.doubleclick.net/activityi;dc_pre=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||5062961.fls.doubleclick.net^* !||6219543.fls.doubleclick.net/activityi;src=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||6219543.fls.doubleclick.net^* !||fls.doubleclick.net/activityj;src=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fls.doubleclick.net/activityi;$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fls.doubleclick.net/json^* !||562-ct.c3tag.com/ctv4/ctcall.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||562-ct.c3tag.com/c3metrics-562.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||562-ct.c3tag.com^* !mpsnare.iesnare.com blocks US Bank login. !||mpsnare.iesnare.com^* www.iovation.com##div[aria-label="cookieconsent"]:remove() www.pointdev.com##div[id="RGPD"]:remove() www.pointdev.com##div[id="download"]:remove() testhmd.com##div[class="argpd-footer"]:remove() testhmd.com##div[class^="argpd-cookies"]:remove() !testhmd.com##div[class="argpd-cookies-bar"]:remove() about.fb.com##div[class^="gdprconsent-"]:remove() www.zellepay.com##div[id="onetrust-policy"]:remove() www.zellepay.com##div[class="ot-sdk-row"]:remove() !||ads.arkansasonline.com^* !||ads.nwaonline.com^* www.st.com##div[class^="optanon-alert-box-wrapper"]:remove() developer.chrome.com##announcement-banner[class="cookie-banner hairline-top"]:remove() ||help.retailmenot.com/s/sfsites/auraAnalytics$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.kfuiprtjuqntp.com^* ||kfuiprtjuqntp.com^* ||www.pzpvvmcnq.com^* ||pzpvvmcnq.com^* ||b8af8878e9a9565.com^* ||68d0d5e26bb0ae.com^* forums.ubisoft.com##div[id="footer_tc_privacy"]:remove() news.ubisoft.com##div[id="footer_tc_privacy"]:remove() register.ubisoft.com##div[id="footer_tc_privacy"]:remove() register.ubisoft.com##div[id="footer_tc_privacy_container_text"]:remove() support.ubisoft.com##div[id="footer_tc_privacy"]:remove() www.ubisoft.com##div[id="footer_tc_privacy"]:remove() !ubisoftconnect.com##div[id="footer_tc_privacy"]:remove() !ubisoftconnect.com##div[id="footer_tc_privacy_container_button"]:remove() ubisoftconnect.com##div[id^="footer_tc_privacy"]:remove() webcache.googleusercontent.com##div[class="popup-box -cookies"]:remove() !||ubistatic2-a.akamaihd.net/worldwide_analytics/tagcommander/ads/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ubistatic2-a.akamaihd.net/worldwide_analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ubistatic-a.akamaihd.net/0106/prod/global/tracking/analyticssdk.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ubistatic-a.akamaihd.net/0106/prod/global/tracking/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !boa.realm667.com##div[id="redim-cookiehint-bottom"]:remove() !www.realm667.com##div[id="redim-cookiehint-bottom"]:remove() realm667.com##div[id="redim-cookiehint-bottom"]:remove() mestretm.com##div[class="cookies-warning"]:remove() fearlessrevolution.com##div[aria-label="cookieconsent"]:remove() ||ydbmligdloqmqi.com^* ||www.ydbmligdloqmqi.com^* ||beneathdangerously.com^* !||ads.samba.tv/cookie_sync$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.samba.tv^* !||tentmess.com/pixel/pure$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tentmess.com/pixel/purst$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||newsubscribes.com/fpp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tentmess.com/pixel/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||newsubscribes.com^* ||d1gzewjq6luteh.cloudfront.net/door.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||uk-script.dotmetrics.net/door.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||uk-script.dotmetrics.net/BeaconEvent.dotmetrics$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d1gzewjq6luteh.cloudfront.net/BeaconEvent.dotmetrics$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d1gzewjq6luteh.cloudfront.net/hit.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||uk-script.dotmetrics.net/hit.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d2s00sybl9a6xf.cloudfront.net/hit.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rm-script.dotmetrics.net/hit.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||au-script.dotmetrics.net/hit.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||au-script.dotmetrics.net^* ||valid-install.com^* ||adblockorigin.com^* ||product.directredirection.com^* ||twnt1.rdtk.io^* ||srv.cloudfilt.com/analyzC.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||analytics-ingress-global.bitmovin.com/analytics$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||analytics-ingress-global.bitmovin.com^* ||licensing.bitmovin.com/impression$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.bitmovin.com/analytics/web/beta/2/bitmovinanalytics.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.bitmovin.com/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.03347b0e2c1321feb76e79ad81003e51.icu^* ||03347b0e2c1321feb76e79ad81003e51.icu^* ||f853150605ccb.com^* ||recipetocook.recipes^* uploadbuzz.cc##+js(abort-on-property-read, sora_base_url) uploadbuzz.cc##+js(abort-on-property-write, sora_base_url) texteditor.co##.adsbygoogle:remove() texteditor.co##.topBanner:remove() texteditor.co###adHeading:remove() www.anaconda.com##div[class="gdpr-banner"]:remove() ||cdn2.popcash.net^* bitfly.io##+js(abort-on-property-read, adConfig) bitfly.io##+js(abort-on-property-write, adConfig) bitfly.io##div[class="alert alert-danger"]:remove() bitfly.io##div[class="myTestAd"]:remove() bitfly.io##div[id="overlay"]:remove() bitfly.io##div[id="cookie-pop"]:remove() ! TODO: ^script doesn't work with attributes since checked before DOM created? bitfly.io##script[id="popmagicldr"]:remove() bitfly.io##+js(abort-on-property-read, window.googletag) bitfly.io##+js(abort-on-property-write, window.googletag) bitfly.io##iframe[id="{{IFRAME_ID}}"]:remove() bitfly.io##+js(nostif.js, /^/, 1000) !||bitfly.io/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bitfly.io/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bitfly.io/js/nt.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.adshort.media^* ||nickeeha.net^* ||coaphauk.net^* ||zunsoach.com^* ||proxappdom.cool^* ||briefext.com^* ||interfrogs.com^* www.startech.com##div[id="tracking-consent-header-container"]:remove() www.startech.com##div[class$="tracking-consent-header-container"]:remove() !www.apc.com##div[class="se-row sdl-message-cookie-notification_content"]:remove() www.apc.com##div[class*="sdl-message-cookie-notification"]:remove() www.apc.com##.se-font-text4.sdl-message-cookie-notification:remove() film.avclub.com##div[class$="js_movable_ad_slot"]:remove() !film.avclub.com##div[id="js_movable-ads-post-contents"]:remove() www.myplaycity.com##.articleBlock.content-block > div.content-overflow:remove() !www.myplaycity.com##div[class="cc_banner-wrapper "]:remove() www.myplaycity.com##div[class^="cc_banner"]:remove() community.amd.com##div[class="lia-cookie-banner-alert"]:remove() forums.anandtech.com##li[class="notice js-notice notice--primary notice--cookie"]:remove() www.nexusmods.com##div[id^="div-gpt-ad-"]:remove() www.nexusmods.com##div[class="video-ad clearfix"]:remove() www.nexusmods.com##div[class="areplacer"]:remove() ||outing52verifyyouraccountbiling.duckdns.org^* www.egifter.com##div[aria-label="cookieconsent"]:remove() www.digikey.com##div[class="cookie-notice"]:remove() dundle.com##aside[id="layout-cookie-banner"]:remove() !||cdn.brandmetrics.com/survey/script/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.brandmetrics.com/tag/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.brandmetrics.com^* ||collector.brandmetrics.com^* ||d1pz6dax0t5mop.cloudfront.net/prod/PoWaLoaderWapo.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||d2ty8gaf6rmowa.cloudfront.net/ad/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d2ty8gaf6rmowa.cloudfront.net/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||targeting.washpost.nile.works/TargetingWebAPP/targeting$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||targeting.washpost.nile.works/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wapo-analytics.zeustechnology.com^* ||cash-apprecovery.com^* login.northlane.com##div[class="privacycontainer"]:remove() !||s5.sywcdn.net/static/js/aggregated/wpk.web.analytics.84742bac8d2fe8de147c6bca80cb7fc7.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s5.sywcdn.net/static/js/aggregated/wpk.web.analytics.*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sears.demdex.net^* !||aa.agkn.com/adscores/g.pixel$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||aa.agkn.com/adscores/s.pixel$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||aa.agkn.com/adscores/g.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||aa.agkn.com/adscores/r.pixel$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||aa.agkn.com/adscores/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||aa.agkn.com^* ||ae.dmxleo.com/v1/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||insight.adsrvr.org/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.attn.tv/sears/analytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.attn.tv/sears/dtag.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tag.targeting.unrulymedia.com/rmp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||public-prod-playerdiagnosticscollector.dmxleo.com^* ||deicemaptwin.com^* ||chapsartore.com^* www.home-network-help.com##div[class="eucookiebar show"]:remove() www.pandasecurity.com##div[id="cookieInfo"]:remove() elektrotanya.com##div[id="cookieChoiceInfo"]:remove() !office-lens.en.aptoide.com##div[class="cookie-sidemenu__CookieSectionContainer-sc-15x684q-1 fezCVi"]:remove() office-lens.en.aptoide.com##div[class^="cookie-sidemenu_"]:remove() !office-lens.en.aptoide.com##div[class="cookie-notice__CookieNoticeWrapper-sc-186p755-0 eRxScM"]:remove() office-lens.en.aptoide.com##div[class^="cookie-notice_"]:remove() en.aptoide.com##div[class^="cookie-sidemenu_"]:remove() en.aptoide.com##div[class^="cookie-notice_"]:remove() ||yaksgames.com/js/ads-adsbygoogle.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css yaksgames.com##.Adbox:remove() yaksgames.com##.ads_gameinfo:remove() yaksgames.com##+js(set-constant, isShowAd, 0) yaksgames.com##+js(set-constant, killads, 0) yaksgames.com##+js(set-constant, googleAds, 0) softgateon.herokuapp.com##div:nth-of-type(4):remove() softgateon.herokuapp.com##iframe:remove() wiimmfi.de##div[class="cookie-warning"]:remove() ||chinnica.net/2market.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css chinnica.net##div[id="cookie_notice"]:remove() chinnica.net##div[id="bottomAd"]:remove() ||ssionsupre.fun^* ||ueaggress.top^* ||d20903hof2l33q.cloudfront.net^* chinnica.net##div[id="_bd"]:remove() chinnica.net###fade:remove() chinnica.net##+js(set-constant, optout_adfly, 1) chinnica.net##a[id="skip_bu2tton"]:style(display:block !important;) !||ee94e5.lifeimpressions.net^* ||lifeimpressions.net^* www.komando.com##div[id="onetrust-consent-sdk"]:remove() www.assimilateinc.com##div[id="gdprc_bar"]:remove() ||blastcahs.com^* ||astancerta.fun^* dloady.com##ins[class="adsbygoogle"]:remove() dloady.com##div[class="google"]:remove() dloady.com##div[class="notice-content"]:remove() mfscripts.com##div[id="cookie-bar"]:remove() !www.download3k.com##div[class="cc_banner-wrapper "]:remove() www.download3k.com##div[class^="cc_banner"]:remove() www.download3k.com##div[id="google_top"]:remove() www.download3k.com##ins[class="adsbygoogle"]:remove() !yetishare-file-hosting-script.soft32.com##div[class="jquery-notify-bar cookie"]:remove() soft32.com##div[class="jquery-notify-bar cookie"]:remove() www.rt-sw.de##div[id="cooschutz"]:remove() ! TODO: ^script doesn't work with attributes since checked before DOM created? nulljungle.com##script[id^=mdp-deblocker-js]:remove() nulljungle.com##+js(set-constant, adsBlocked, falseFunc) nulljungle.com##+js(set-constant, window.mdpDeBlockerDestroyer, false) nulljungle.com##+js(set-constant, disableTextSelection, noopFunc) nulljungle.com##+js(set-constant, disableContextMenu, noopFunc) nulljungle.com##+js(set-constant, disableHotKeys, noopFunc) nulljungle.com##+js(set-constant, disableDeveloperTools, noopFunc) nulljungle.com##+js(abort-on-property-write, adsbygoogle) nulljungle.com##+js(abort-on-property-read, adsbygoogle) !nulljungle.com##.wp-vwnsbm-axvu-wrapper:remove() !nulljungle.com##.wp-vwnsbm-axvu-blackout:remove() nulljungle.com##div[class^="wp-vwnsbm-axvu"]:remove() nulljungle.com##*[class*="enable-lazy-adsense"]:remove-class(enable-lazy-adsense) !nulljungle.com##*[class*="wp-vwnsbm-axvu-blur"]:remove() nulljungle.com##*:style(filter: blur(0px) !important; -webkit-filter: blur(0px) !important;) ||log.hitsteps.net^* www.darkng.com##div[class="notice-content"]:remove() nulled.link##div[class="notice-content"]:remove() !nulled.link##li[class="notice js-notice notice--primary notice--cookie"]:remove() nulled.link##li[class$="notice--cookie"]:remove() ||installoriginal-thecompletelyfile.best^* ||wilfulpessimistic.com^* ||tilltucked.com^* ||faithfulfacultativeladder.com^* ||tentmess.com^* ||edgyconnaterag.com^* ||www.inflationbreedinghoax.com^* ||knockoutwithdrawal.com^* ||www.darkng.com/service_worker.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dloady.com/service_worker.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||borntonull.com/download/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css borntonull.com##div[id="cookie-pop"]:remove() borntonull.com##div[class="ad-banner"]:remove() borntonull.com##div[id="ad-banner"]:remove() borntonull.com##div[class="alert alert-danger"]:remove() borntonull.com##div[class="banner banner-728x90"]:remove() borntonull.com##div[class="myTestAd"]:remove() borntonull.com##ins[class="adsbygoogle"]:remove() borntonull.com##+js(abort-on-property-write, adsbygoogle) borntonull.com##+js(abort-on-property-read, adsbygoogle) ! TODO: ^script doesn't work with attributes since checked before DOM created? borntonull.com##script[data-ad-client^="ca-pub-"]:remove() borntonull.com##div[class="banner banner-336x280"]:remove() borntonull.com##div[class="cookie-confirm"]:remove() !borntonull.com##*:style(display:none !important;) !borntonull.com##button[class]:has-text(hidden):remove() borntonull.com###go-link:remove-attr(class) borntonull.com###go-link:remove-attr(disabled) borntonull.com###go-submit:remove-attr(class) borntonull.com###go-submit:remove-attr(disabled) daviruzsystems.com##div[class="adsBox"]:remove() ! TODO: ^script doesn't work with attributes since checked before DOM created? daviruzsystems.com##script[class^="atScript"]:remove() ||daviruzsystems.com/pwa-sw.js$important;document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||districtbaloneywhiskers.com^* ||dividedscientific.com^* ||franticallyseptember.com^* ||galacticmenueasier.com^* ||indicatorlovelyavail.com^* ||pl16006156.revenuenetworkcpm.com^* ||pl16006160.revenuenetworkcpm.com^* ||prowlenchant.com^* ||scarewalrusregulate.com^* ||tightsaturdayi.com^* ||underdividedhowever.com^* ||visitsfunk.com^* ||intellipopup.com/dtKlV.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.intellipopup.com/gettext.cjs.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.gatetodisplaycontent.com^* ||www.responserver.com^* ||radiantskilled.com^* www.downloadtyphoon.com##div[class="cc_css_reboot cc_dialog light simple"]:remove() www.downloadtyphoon.com##h1[class="cc_dialog_headline"]:remove() webcache.googleusercontent.com##div[class="cc_dialog_headline"]:remove() steamdb.info##a[href="/donate/"]:remove() www.netgear.com##div[class="cc-cookies "]:remove() www.netgear.com##div[class="alert text-center cookiealert show"]:remove() www.filecroco.com##div[id="cookie-notice"]:remove() !www.filecroco.com##div[class="cookie-revoke-hidden cn-position-bottom cn-effect-fade cookie-notice-visible"]:remove() www.filecroco.com##div[class*="cookie-notice"]:remove() www.overwolf.com##div[class="cookiebar"]:remove() wepresent.wetransfer.com##div[id="cookieMessage"]:remove() iperiusremote.com##div[id="cookie-bar"]:remove() s0ft4pc.com##+js(abort-on-property-write, _stq) s0ft4pc.com##+js(abort-on-property-read, _stq) s0ft4pc.com###top > script:nth-child(15):remove() ||yiatelychur.top^* ||d18t35yyry2k49.cloudfront.net^* ||torrent.rutad.ru/inc/img/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||torrent.rutad.ru/inc/adv/_iframe_ads.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css new-rutor.org###top_bnr:remove() ||ismlks.com^* ||b.domnlk.com^* ||www.r18.com^* ||livezombymil.com^* ||ad18.biz^* ||ulukaris.com^* ! The following rule prevents ws.sharethis.com buttons.js script from loading. !||d3mdrpbbs8qfxa.cloudfront.net^* ||dlaj66hdiarg7.cloudfront.net^* ! The following rule blocks images on www.flickr.com !||d3j7xsc0vda5xv.cloudfront.net^* ||e702fa7de9d35c37.com^* ||ih1.fileforums.com/!_lb.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.abamsoft.de##div[id="mbmcookie"]:remove() developer.android.com##devsite-analytics:remove() developers.google.com##a[class="gc-analytics-event"]:remove() developers.google.com##div[class="devsite-banner-message"]:remove() ||developers.google.com/_d/analytics-iframe$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||developers.google.com/_static/js/analytics_library.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||developers.google.com/ads/images/ads_192px_clr.svg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||developers.google.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||resumersvo.fun^* ||adserver.additionalmedia.com^* ||chinnica.net/puopen.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c.netund.com^* askubuntu.com##div[id="onetrust-consent-sdk"]:remove() askubuntu.com##div[class="js-onetrust-pc-sdk"]:remove() askubuntu.com##div[id="onetrust-banner-sdk"]:remove() askubuntu.com##div[id="clc-abd"]:remove() askubuntu.com##div[class="adsbox"]:remove() askubuntu.com##div[class*="js-consent-banner"]:remove() soundcloud.com##div[class="sc-list-nostyle sc-clearfix"]:remove() www.altap.cz##a[class="FinePortrait"]:remove() www.altap.cz##div[class^="FinePortrait-"]:remove() ||www.altap.cz/images/fine-portrait.jpg$image ||cdn.concert.io/lib/adblock/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css dxgl.org##div[class="cookiebanner"]:remove() linuxreviews.org##div[class="mw-cookiewarning-container banner-container"]:remove() rustorka.com##div[id^="epom-pushdown"]:remove() ||aj1907.online^* ||aj1616.online^* ||aj2178.online^* ||cdn77.aj2178.online^* ||cdn51.vb17120ayeshajenkins.pw^* ||cdn-t.vb17120ayeshajenkins.pw^* ||n.naylo.top/games-pc.png$image ||rutrk.org/bn/sk/07/index.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css rutracker.org##*[class="ext-links.products.bn-idx"]:remove() ||rustorka.com/games-pc.png$image ||rutrk.org/bn/sk/07/index.html$subdocument thevore.com##div[id="cookie-notice"]:remove() www.abqjournal.com##div[class="story-ad"]:remove() www.abqjournal.com##div[id="advertisement"]:remove() www.abqjournal.com##p[class="disclaimer"]:remove() www.abqjournal.com##div[id="story-ad-0-skip-target"]:remove() ||search.discoverweb.com^* ||ca432853280e21f681b68fc319b1302712a1f4a0.xyz^* ||xcsypkknp.com^* ||www.winningpokernetwork.com^* ||jsgleamio.crowd9ptyltd.netdna-cdn.com^* ||megadb.tweakly.net/stat.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||megadb.tweakly.net/cdn-cgi/apps/head/_W4CRdSxKAHpIoSskTRsZdUmJC8.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css megadb.tweakly.net##.gcap-form ||installswift-thecompletelyfile.best^* ||plannerladyreality.com^* ||seektravelingdiffident.com^* kittyhawk.io##div[class="gdpr gdpr-privacy-bar"]:remove() kittyhawk.io##div[class="gdpr-overlay"]:remove() softwarestars.org##div[id="cookieChoiceInfo"]:remove() music.yandex.ua##.overlay_gdpr:remove() www.dnb.com##div[id="privacy-banner"]:remove() www.tp-link.com##div[class="cookie-used-note"]:remove() forum.huawei.com##div[class="cookie_statement"]:remove() support.zyxel.eu##div[id="cookie_popup"]:remove() superuser.com##div[id="onetrust-consent-sdk"]:remove() superuser.com##div[id="onetrust-banner-sdk"]:remove() superuser.com##div[class="adsbox"]:remove() superuser.com##div[class*="js-consent-banner"]:remove() ||support.huawei.com/enterpriseindex/js/cookieStatementTool.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css support.huawei.com##div[class="cookie_statement"]:remove() wordpress.com##div[class="widget widget_eu_cookie_law_widget"]:remove() !www.optech.gr##div[class="cc-revoke cc-bottom cc-animate cc-color-override-170793312"]:remove() www.optech.gr##div[class^="cc-revoke"]:remove() www.optech.gr##div[aria-label="cookieconsent"]:remove() www.i4wifi.cz##div[role="EuCookiesBar"]:remove() daryldixon.gala100.net##div[class="penci-wrap-gprd-law"]:remove() !||adbit.biz/js/show_ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adbit.biz/js/show_ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.internetsociety.org/wp-content/plugins/jetpack/_inc/build/widgets/eu-cookie-law/eu-cookie-law.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! TODO: ^script doesn't work with attributes since checked before DOM created? www.internetsociety.org##script[id="eu-cookie-law-script-js"]:remove() www.internetsociety.org##div[class$="widget_eu_cookie_law_widget"]:remove() www.internetsociety.org##div[id="eu-cookie-law"]:remove() ||cash.tweakly.net^* ||cdn.tweakly.net^* ||debitcloud.tweakly.net^* ||minelogic.tweakly.net^* ||miner.tweakly.net^* ||mobile.miner.tweakly.net^* ||shop.tweakly.net^* ||techdrop.tweakly.net^* ||www.cryptolist.tweakly.net^* ||ygs-totally.tweakly.net^* www.wilderssecurity.com##div[class="noticeCookiesContent"]:remove() ||installprecise-thecompletelyfile.best^* ||doflygonan.com^* ||sleep.mediapicker.com^* ||installcompletely-thespeedyfile.best^* ||securecloud-sml.com^* ||sixft-apart.com^* ||www.uploadship.com/static.doubleclick.net/instream/ad_status.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.uploadship.com/themes/pro/images/B1.jpg$image www.uploadship.com##div[id="Download-Link"]:style(display:block !important;) ||www.uploadship.com/themes/pro/images/Binance.png$image www.sitelike.org##div[id="ezmobfooter"]:remove() !www.sitelike.org##span[class="ezoic-ad medrectangle-2 adtester-container adtester-container-100"]:remove() www.sitelike.org##span[class^="ezoic-ad"]:remove() www.sitelike.org##span[class*="adtester-container"]:remove() !www.sitelike.org##span[id="div-gpt-ad-sitelike_org-medrectangle-2-0"]:remove() www.sitelike.org##span[id^="div-gpt-ad-"]:remove() www.sitelike.org##span[class="ezmob-footer-close"]:remove() ||weaveradrenaline.com^* ||installcompletely-theoriginalfile.best^* www.goodsync.com##div[class="cookies-notification-container"]:remove() !www.games2gether.com##div[id="privacy-policy-20180518"]:remove() www.games2gether.com##div[id^="privacy-policy-"]:remove() www.games2gether.com##div[id="cookies-settings"]:remove() !golang.org##div[class="Header-banner"]:remove() golang.org##div[class="Header-banner"]:nth-child(1):remove() *##a[href*="support.eji.org"]:remove() support.geckoboard.com##div[class="cookie-content"]:remove() mashe.hawksey.info##div[id="cc-window"]:remove() ||lgpumcja.com^* ||plywoodenchant.com^* ||oppositehometowndrunken.com^* ||locationsreverenceaid.com^* ||splittingpick.com^* s0ft4pc.com##div[id="banner_ad"] ||geekflare.com/wp-content/uploads/2020/07/apptrana*.png$image ||sensitivenesscrummytea.com^* !||pl15514173.highrevenuecpm.com^* !||pl15150629.highrevenuecpm.com^* !||pl136774.highrevenuecpm.com^* ||pl*.highrevenuecpm.com^* jdownloader.org##div[id="cookie_info"]:remove() svn.jdownloader.org##div[class="cc_banner-wrapper "]:remove() regexr.com##div[class="noad"]:remove() www.indishare.org##[href="https://9xlust.in"]:remove() aporasal.net##div[id="cookie_notice"]:remove() ||cdnpure.com/static/js/ads-*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||yaksgames.com/promotion/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www10.richardwashington.pro^* ||www16.richardwashington.pro^* ||www22.richardwashington.pro^* ||www24.richardwashington.pro^* ||www34.richardwashington.pro^* ||www38.richardwashington.pro^* ||www47.richardwashington.pro^* ||www5.richardwashington.pro^* !internet-access-guide.com##span[class="ezoic-ad ezoic-adl"]:remove() internet-access-guide.com##span[class^="ezoic-ad"]:remove() internet-access-guide.com##span[class="ezoic-adpicker-ad"]:remove() blisk.io##div[id="cookie-notification"]:remove() !||analytics.supplyframe.com/trackingservlet/impression$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||analytics.supplyframe.com^* hackaday.com##div[class="cookie-notifications"]:remove() www.cloudsavvyit.com###purch_Y_R_1_1:remove() rd.consoletarget.com##div[id="cookie_notice"]:remove() ||a2.consoletarget.com/ii/var/passion_bb_3.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css gonorthforge.com##div[id="cookie-notice"]:remove() ||4b05ca5688bff79.com^* ||b44a98d1901e5b7.com^* ||c7a1d9b97c.com^* ||b39902460e7.com^* ||9d4cf668a6f4.com^* ||53522caab36f1.com^* ||214ccb1e3ffbf3.com^* ||motivesbreastchopped.com^* ||cas.clickability.com^* ||advertising.aol.com^* ||ad.foxnetworks.com^* ||zoover.adnetasia.com^* ||015820812ebc54e028e2ade10915d6b5bcfe8871.fun^* ||zoover.adclixx.net^* ||advertising.yahoo.com^* ||crunchyroll.adclixx.net^* ||crunchyroll.bannertrack.net^* ||www.gstatic.com/adx/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||yahoo.adnetasia.com^* ||promote.pair.com^* ||ox-d.adnetasia.com^* ||serve.adclixx.net^* ||fc.lc/js/full-page-script.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c0.wp.com/p/jetpack/9.3.1/_inc/build/widgets/eu-cookie-law/eu-cookie-law.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !endeavouros.com##section[class="widget widget_eu_cookie_law_widget"]:remove() endeavouros.com##section[class$="widget_eu_cookie_law_widget"]:remove() endeavouros.com##div[id="eu-cookie-law"]:remove() ||strendenc.fun^* aporasal.net##iframe[src*="strendenc.fun"]:remove() !aporasal.net##iframe[id="rf"]:remove() !aporasal.net##iframe[id="rf2"]:remove() aporasal.net##iframe[id^="rf"]:remove() aporasal.net##div[class="black_overlay"]:remove() aporasal.net##div[id="_bd"]:remove() aporasal.net##div[id="bottomAd"]:remove() aporasal.net##+js(set-constant, optout_adfly, 1) ||prebid.a-mo.net^* ||clients.ragezone.com/serve.php/display/show_single*$subdocument ||aporasal.net/index/ping$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lreprx-server.anyclip.com/?ad=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||prod-sb-appanalytics-us1.servicebus.windows.net/usagelogs/messages$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||prod-sb-appanalytics-us1.servicebus.windows.net^* !forum.paradoxplaza.com##li[class="notice js-notice notice--primary notice--cookie"]:remove() forum.paradoxplaza.com##li[class*="notice--cookie"]:remove() rockstarintel.com##aside[class="thb-cookie-bar"]:remove() ||depotskylight.online^* ||callsupportforassisstance5.ml^* ||measure.analysis.fi/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.tomsguide.com##div[class="advertisement-label"]:remove() ! TODO: ^script doesn't work with attributes since checked before DOM created? www.tomsguide.com##script[id="bordeaux-liveramp"]:remove() www.tomsguide.com##script[id="gpt-api-script"]:remove() www.tomsguide.com##script[id="ias-script"]:remove() www.tomsguide.com##script[id="amazon-script"]:remove() www.tomsguide.com##div[class="ad-unit"]:remove() ||emagazing.fun^* !||www.addonsearch.net/trhandler.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.addonsearch.net^* ||www.gobck.com^* ||redirect2719.com^* ||xml.fastdlr.com^* ||track.dkhry.com^* ||e-10220.adzerk.net^* ||adx.dlads.cn^* !us7.proxysite.com##div[id="cookie-bar"]:remove() proxysite.com##div[id="cookie-bar"]:remove() proxysite.com##div[id="prxVpn1"]:remove() !||check.ddos-guard.net^* askubuntu.com##div[class$="js-consent-banner"]:remove() ||pulpsbarndomed.com^* www.fosshub.com##aside[class="ad"]:remove() pangu8.com##amp-analytics:remove() pangu8.com##amp-ad:remove() betanews.com##.adsbygoogle:remove() !||smarteucookiebanner.upsell-apps.com/gdpr_adapter.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||smarteucookiebanner.upsell-apps.com^* us.targus.com##*[class^="upsell-gdpr-banner-"]:remove() www.gameinformer.com##div[class*="eu-cookie-compliance-"]:remove() yalujailbreak.net##div[id="cookie-notice"]:remove() www.wikihow.com##ins[class="adsbygoogle"]:remove() www.wikihow.com##div[id="cookie_notice"]:remove() www.wikihow.com##div[class*="wh_ad_"]:remove() ||www.wikihow.com/x/collect?t=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.wikihow.com/ev/skzumrdhaf?ad_unit=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.wikihow.com/extensions/min/f/_ads/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.wikihow.com/extensions/min/f/_ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.wikihow.com##div[id="contribute_footer_wrap"] ! TODO: ^script doesn't work with attributes since checked before DOM created? yalujailbreak.net##script[id="cookie-notice-front-js-extra"]:remove() yalujailbreak.net###content_2_btf_wrapper:remove() yalujailbreak.net###content_3_btf_wrapper:remove() yalujailbreak.net###content_btf_wrapper:remove() yalujailbreak.net###content_4_btf_wrapper:remove() yalujailbreak.net###content_5_btf_wrapper:remove() yalujailbreak.net###content_6_btf_wrapper:remove() yalujailbreak.net###content_7_btf_wrapper:remove() yalujailbreak.net###content_8_btf_wrapper:remove() yalujailbreak.net###content_9_btf_wrapper:remove() www.applegazette.com##span[class*="ezoic-ad"]:remove() ||pmetrics.performancing.com^* www.imentality.com##div[id="ezmobfooter"]:remove() www.imentality.com##span[class^="ezoic-ad"]:remove() ||docs.microsoft.com/answers/page-view/track.json$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ipamod.com##div[class="penci-wrap-gprd-law"]:remove() ||lurgee.win^* iosapp.org##div[class="ad-container"]:remove() ||ww7.modrepo.com^* ||11168258.searchiqnet.com^* ||c.trafficslide.org^* ||convertfilenow.com^* www.howardforums.com##div[aria-label="cookieconsent"]:remove() cydiasources.net##.sgpb-popup-overlay:remove() cydiasources.net##.sg-popup-content:remove() ||pushsar.com^* a2zupload.com##div[id="alert"]:remove() a2zupload.com##+js(trusted-set-constant, speed, unlimit) a2zupload.com##div[id="alertmsg"]:remove() filza.net##div[id="eu-cookie-law"]:remove() filza.net##section[class*="widget_eu_cookie_law_widget"]:remove() www.vpnunlimitedapp.com##div[class="badge_privacy"]:remove() saasdiscovery.com##.adsbygoogle:remove() 7labs.io##div[id="consent-popup"]:remove() dl.i-funbox.com##ins[class="adsbygoogle"]:remove() dl.i-funbox.com##div[class^="header_ads"]:remove() www.bestcydiasources.com##div[id="cookie-notice"]:remove() www.bestcydiasources.com##a[href*="deloplen.com/"]:remove() www.ios-repo-updates.com##div[id="cookieChoiceInfo"]:remove() chasefromm17.yourepo.com##div[id="YouRepoInfo"]:remove() techwafer.com##.id_top_ad:remove() techwafer.com##.td-a-ad:remove() bestappsfinder.com##div[aria-label="cookieconsent"]:remove() www.groovypost.com##div[class^="groov-adsense"]:remove() www.groovypost.com##div[class="groov-adlabel"]:remove() !crazymodapk.com##aside[class="ads ads_download_1"]:remove() crazymodapk.com##aside[class*="ads_download_"]:remove() ||vid-adblocker.com^* ||pottercosign.com^* ||v3s8r2c3.stackpathcdn.com/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.paragon-software.com##div[class^="cookies_msg"]:remove() ||nostop.go2cloud.org^* ||trk.playstretch.host^* !cydiasources.net##div[class="vce-ad vce-ad-container"]:remove() cydiasources.net##div[class*="vce-ad"]:remove() cydiasources.net##ins[class="adsbygoogle"]:remove() !cydiasources.net##div[id="google-ads-1"]:remove() cydiasources.net##div[id^="google-ads"]:remove() cydiasources.net##div[id="cookie-notice"]:remove() cydiasources.net##div[class^="cookie-notice"]:remove() ||loulouly.net^* ||wehaveastakes.live^* ||frogrugby.com^* ||luvaihoo.com^* ||scaleway4.1src.pro^* ||tetherme-ipa.xn--sheyd8kejer-thb.xyz^* ||www.celebjihad.com^* ||cash.admobe.com^* ||rsafrwd.com^* ||waitgirlbroke-2.live^* ||win-your-prize-now2.life^* !appelse.com##div[class="js-lwpcngNotice lwpcngNotice lwpcngNotice-sticked lwpcngNoticeBar lwpcngNoticeBar-bottom lwpcngNotice-dark lwpcngHide"]:remove() appelse.com##div[class*="lwpcngNotice"]:remove() www.phonearena.com##div[id^="div-gpt-ad-"]:remove() www.phonearena.com##div[class^="spot_disclaimer"]:remove() www.phonearena.com###adOverlay:remove() stockfirmware.info##div[id="cookie-notice"]:remove() stockfirmware.info##ins[class="adsbygoogle"]:remove() stockfirmware.info##div[class="das"]:remove() stockfirmware.info##div[id="fragment"]:remove() mshare.xyz##h2[class="adblock-alert"]:remove() ||mshare.xyz/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css mshare.xyz##div[id="left-ads"]:remove() mshare.xyz##div[class="ads_336"]:remove() mshare.xyz##div[class="modal fade in"]:remove() nerdschalk.com##div[class^="adunitwrapper"]:remove() nerdschalk.com###content_2_btf_wrapper:remove() nerdschalk.com###content_3_btf_wrapper:remove() nerdschalk.com###content_4_btf_wrapper:remove() nerdschalk.com###content_5_btf_wrapper:remove() nerdschalk.com###content_6_btf_wrapper:remove() nerdschalk.com###content_7_btf_wrapper:remove() nerdschalk.com###content_8_btf_wrapper:remove() nerdschalk.com###content_10_btf_wrapper:remove() nerdschalk.com###content_9_btf_wrapper:remove() !www.nfl.com##div[class="adsbox pub300x250 pub300x250m pub728x90 text-ad textAd textad textads text-ads text-ad-links"]:remove() www.nfl.com##div[class*="pub300x"]:remove() www.nfl.com##div[class*="adsbox"]:remove() www.nfl.com##div[class*="text-ad"]:remove() kubadownload.com##ins[class="adsbygoogle"]:remove() kubadownload.com##ins[class="AdSense"]:remove() !kubadownload.com##div[id="banner_ad"]:remove() kubadownload.com##^script:has-text(adblockTracker):remove() kubadownload.com##+js(remove-node-text, script, /adblockTracker/gm) kubadownload.com##+js(abort-on-property-write, ad) kubadownload.com##+js(abort-on-property-read, ad) kubadownload.com##+js(set-constant, ad, null) kubadownload.com##+js(abort-on-property-write, i.GoogleAnalyticsObject) kubadownload.com##+js(abort-on-property-read, i.GoogleAnalyticsObject) kubadownload.com##+js(set-constant, i.GoogleAnalyticsObject, null, complete) kubadownload.com##body > script:nth-child(29):remove() kubadownload.com##body > script:nth-child(28):remove() kubadownload.com##body > script:nth-child(27):remove() ||trk.globwo.online^* ||veteran-safe.top^* www.iphonecake.com##a[class="ui-ad"]:remove() www.iphonecake.com##div[id="banner_ad"]:remove() ||www.iphonecake.com/images/dl_download.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !worldunlock-codes-calculator.soft112.com##div[id="s112_accept_cookies"] soft112.com##div[id="s112_accept_cookies"]:remove() cellcarcol.forumcommunity.net##div[class="note"]:remove() ! TODO: ^script doesn't work with attributes since checked before DOM created? forum.dd-wrt.com##script[id="cookieinfo"]:remove() forum.dd-wrt.com##div[class="cookieinfo"]:remove() ||forum.dd-wrt.com/js/cookieinfo.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css forum.dd-wrt.com##div[id="header_ads"]:remove() wiki.dd-wrt.com##script[id="cookieinfo"]:remove() wiki.dd-wrt.com##div[class="cookieinfo"]:remove() ||wiki.dd-wrt.com/js/cookieinfo.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nfl.hb.omtrdc.net^* ||smetrics.cox.com^* ! TODO: ^script doesn't work with attributes since checked before DOM created? www.cox.com##script[id="cookie-notice-mark-up"]:remove() www.cox.com##div[class="cookie-notice-container"]:remove() www.cox.com##+js(set-constant, shouldShowCookieNotice, false) doodrive.com##:xpath(//script[contains(text(), '\x20second')]):remove() doodrive.com##:xpath(//script[contains(text(), 'rn\x20this\x22')]):remove() doodrive.com##:xpath(/html/body/div[5]/div/div/script[3]):remove() doodrive.com##:xpath(/html/body/div[6]/div/div[1]/div[1]/script[3]):remove() doodrive.com##div[class="uk-grid uk-grid-medium uk-child-width-expand uk-flex-middle"]:has(a[title="NordVPN"]):remove() doodrive.com##div[class="uk-grid uk-grid-medium uk-child-width-expand uk-flex-middle"]:has(button[class^="uk-button uk-button-secondary"]:has-text(Download NordVPN!)):remove() doodrive.com##div[class="uk-card uk-card-default uk-card-body uk-text-center"]:remove() doodrive.com##div[class="uk-card uk-card-default uk-card-small"]:has(h4:has-text(Are you protected with a VPN?)):remove() doodrive.com##ins[class="adsbygoogle"]:remove() doodrive.com##+js(abort-on-property-write, _stq) doodrive.com##+js(abort-on-property-read, _stq) doodrive.com##+js(abort-on-property-write, adsbygoogle) doodrive.com##+js(abort-on-property-read, adsbygoogle) doodrive.com##+js(acs, atob, encodeURIComponent) doodrive.com##+js(acs, rn\x20this\x22) doodrive.com##*:style(filter: blur(0px) !important; -webkit-filter: blur(0px) !important;) doodrive.com##div:style(visibility: visible !important;) doodrive.com##.uk-margin-auto > div:nth-child(4):remove-attr(hidden) doodrive.com##a[id="lkzlu"]:remove() doodrive.com##a[class="hqoni2rvyn"]:remove() doodrive.com##iframe[data-aa]:remove() doodrive.com##div[id="patron-modal"]:remove() doodrive.com##button[data-download]:remove-attr(disabled) !doodrive.com##div:hidden(false) !doodrive.com###human-verification:remove() !doodrive.com##div[id="human-verification"]:remove() ||doodrive.com/assets/js/cookieconsent.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||doodrive.com/8846620859/3787866411.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||doodrive.com/8846620859/5681175743.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||i.doodcdn.co/ads/ad.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||i.doodcdn.co/ads/ad.js$replace=/var googleAd\s?=\s?true/var googleAd = false/gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||i.doodcdn.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The following rule disables the embedded video player. !/^https?:\/\/((?!-)[A-Za-z0-9-]+([\-\.]{1}))?(?:dood\.re|doodstream\.com|dood\.watch|d0000d\.com)\/pass_md5\//$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css /^https?:\/\/((?!-)[A-Za-z0-9-]+([\-\.]{1}))?(?:dood\.re|doodstream\.com|dood\.watch|d0000d\.com)\/sw\.js/$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css doodstream.com,dood.re,d0000d.com##input[aria-label="play"]:remove-attr(disabled) doodstream.com,dood.re,d0000d.com##iframe[src="about:blank"]:remove() doodstream.com,dood.re,d0000d.com##iframe[class="sPreload"]:remove() doodstream.com,dood.re,d0000d.com##div[id="lpcuazk"]:remove() doodstream.com,dood.re,d0000d.com##a[id="lkf7p"]:remove() doodstream.com,dood.re,d0000d.com##+js(set-constant, googleAd, false) doodstream.com,dood.re,d0000d.com##+js(set-constant, sendGA, noopFunc) doodstream.com,dood.re,d0000d.com##+js(set-constant, check, noopFunc) doodstream.com,dood.re,d0000d.com##+js(aopw, minimalUserResponseInMiliseconds) doodstream.com,dood.re,d0000d.com##+js(aopr, minimalUserResponseInMiliseconds) doodstream.com,dood.re,d0000d.com##+js(remove-node-text, script, /var minimalUserResponseInMiliseconds\s?=\s?\d+/gm) ! The following rule will make the video starting playing after load, i.e. autoplay, to overcome the anti-adblocking on the play button. ! TODO: The following rule doesn't cause autoplay, but the play button now works so keep the rule? doodstream.com,dood.re,d0000d.com##+js(trusted-replace-node-text, script, /var sentPL\s?=\s?!1;/gm, var sentPL = !0;) doodstream.com,dood.re,d0000d.com##+js(trusted-replace-node-text, script, /var sentPE\s?=\s?!1;/gm, var sentPE = !0;) doodstream.com,dood.re,d0000d.com##+js(trusted-replace-node-text, script, /\$\.get\(['"]\/push_open\/['"]\s?\+\s?gu\);/gm, null;) ! In this case can remove the entire script with "debugger" in it. doodstream.com,dood.re,d0000d.com##^script:has-text(/debugger;/):remove() doodstream.com,dood.re,d0000d.com##+js(remove-node-text, script, /debugger;/gm) !doodstream.com,dood.re,d0000d.com##+js(trusted-replace-node-text, script, /debugger;/gm, "") doodstream.com,dood.re,d0000d.com##:xpath(//script[contains(text(), 'debugger;')]):remove() ! TODO: Really abort on debugger as that is what the debugger statement already does? doodstream.com,dood.re,d0000d.com##+js(acs, /debugger;/) doodstream.com,dood.re,d0000d.com##+js(no-setTimeout-if, check) ! TODO: The following rule prevents the play button from working when pressed? !doodstream.com,dood.re,d0000d.com##+js(aeld, /contextmenu|keydown/, /function\(e\)/) doodstream.com,dood.re,d0000d.com##+js(aeld, /contextmenu|keydown/) doodstream.com,dood.re,d0000d.com##button[id="castingButton"][hidden]:remove-attr(hidden) doodstream.com,dood.re,d0000d.com##+js(remove-attr, hidden, button[id="castingButton"][hidden]) doodstream.com,dood.re,d0000d.com##+js(trusted-replace-node-text, script, /image:\s?['"]\/\/i\.doodcdn\.co\/img\/logo\-s\.png['"]/gm, image: "") doodstream.com,dood.re,d0000d.com##+js(trusted-replace-node-text, script, /adb\s?=\s?1;/gm, adb = 0;) doodstream.com,dood.re,d0000d.com##+js(trusted-replace-node-text, script, /hab\(\)\s*\|\|/gm, "") doodstream.com,dood.re,d0000d.com##+js(set-constant, hab, noopFunc) doodstream.com,dood.re,d0000d.com##+js(trusted-replace-node-text, script, /function hab\(\)\s?\{var t\s?=\s?document\.createElement\('div'\);\s?t\.innerHTML='\ '\,\s?t\.className='ad doubleclick google\-ad adsbox pub_300x250 pub_300x250m pub_728x90 text\-ad textAd text_ad text_ads text\-ads skyscraper text\-ad\-links';\s?var e=!\(t\.style='width\: 1px !important; height\: 1px !important; position\: absolute !important; left\: \-10000px !important; top\: \-1000px !important;'\);\s?try\s?\{document\.body\.appendChild\(t\);\s?var a=document\.getElementsByClassName\('adsbox'\)\[0\];\s?if\s?\(0!==a\.offsetHeight\&\&0!==a\.clientHeight\|\|\(e=!0\)\,void 0!==window\.getComputedStyle\)\{var d=window\.getComputedStyle\(a\,null\);!d\|\|'none'!=d\.getPropertyValue\('display'\)\&\&'hidden'!=d\.getPropertyValue\('visibility'\)\|\|\(e=!0\)\}document\.body\.removeChild\(t\)\}catch\(a\)\{\}return e\};/gm, "") !doodstream.com,dood.re,d0000d.com##video[id="video_player_html5_api"]:watch-attr(disableremoteplayback):remove-attr(disableremoteplayback) !doodstream.com,dood.re,d0000d.com##video[id="video_player_html5_api"]:watch-attr(disablepictureinpicture):remove-attr(disablepictureinpicture) !doodstream.com,dood.re,d0000d.com##+js(remove-attr, disableremoteplayback, video[id="video_player_html5_api"], stay) !doodstream.com,dood.re,d0000d.com##+js(remove-attr, disablepictureinpicture, video[id="video_player_html5_api"], stay) doodstream.com,dood.re,d0000d.com##video[id="video_player_html5_api"]:remove-attr(disableremoteplayback) doodstream.com,dood.re,d0000d.com##+js(remove-attr, disableremoteplayback, video[id="video_player_html5_api"]) doodstream.com,dood.re,d0000d.com##video[id="video_player_html5_api"]:remove-attr(disablepictureinpicture) doodstream.com,dood.re,d0000d.com##+js(remove-attr, disablepictureinpicture, video[id="video_player_html5_api"]) doodstream.com,dood.re,d0000d.com##+js(trusted-set-attr, video[id="video_player_html5_api"], width, 100%) doodstream.com,dood.re,d0000d.com##+js(trusted-set-attr, video[id="video_player_html5_api"], height, 100%) doodstream.com,dood.re,d0000d.com##+js(trusted-set-attr, video[id="video_player_html5_api"], x-webkit-airplay, allow) doodstream.com,dood.re,d0000d.com##+js(set-attr, video[id="video_player_html5_api"], data-autoplay-mute-lock, false) !doodstream.com,dood.re,d0000d.com##+js(trusted-set-attr, video[id="video_player_html5_api"], data-autoplay-mute-lock, false) doodstream.com,dood.re,d0000d.com##+js(set-attr, video[id="video_player_html5_api"], controls, true) !doodstream.com,dood.re,d0000d.com##+js(trusted-set-attr, video[id="video_player_html5_api"], controls, true) doodstream.com,dood.re,d0000d.com##+js(set-attr, video[id="video_player_html5_api"], playsinline, true) !doodstream.com,dood.re,d0000d.com##+js(trusted-set-attr, video[id="video_player_html5_api"], playsinline, true) !doodstream.com,dood.re,d0000d.com##+js(trusted-set-attr, video[id="video_player_html5_api"], playsinline, playsinline) doodstream.com,dood.re,d0000d.com##+js(set-attr, video[id="video_player_html5_api"], webkit-playsinline, true) !doodstream.com,dood.re,d0000d.com##+js(trusted-set-attr, video[id="video_player_html5_api"], webkit-playsinline, true) doodstream.com,dood.re,d0000d.com##+js(trusted-set-attr, video[id="video_player_html5_api"], preload, metadata) !doodstream.com,dood.re,d0000d.com##+js(trusted-set-attr, video[id="video_player_html5_api"], preload, none) !doodstream.com,dood.re,d0000d.com##+js(trusted-set-attr, video[id="video_player_html5_api"], preload, auto) doodstream.com,dood.re,d0000d.com##+js(trusted-set-attr, video[id="video_player_html5_api"], crossorigin, anonymous) ! TODO: Setting the muted attribute to false or removing the muted attribute does NOT unmute the volume if the video player is set to mute the audio. !doodstream.com,dood.re,d0000d.com##+js(set-attr, video[id="video_player_html5_api"], muted, false) !doodstream.com,dood.re,d0000d.com##+js(trusted-set-attr, video[id="video_player_html5_api"], muted, false) !doodstream.com,dood.re,d0000d.com##video[id="video_player_html5_api"][muted]:remove-attr(muted) !doodstream.com,dood.re,d0000d.com##+js(remove-attr, muted, video[id="video_player_html5_api"][muted]) !doodstream.com,dood.re,d0000d.com##video[id="video_player"]:watch-attr(disableremoteplayback):remove-attr(disableremoteplayback) !doodstream.com,dood.re,d0000d.com##video[id="video_player"]:watch-attr(disablepictureinpicture):remove-attr(disablepictureinpicture) !doodstream.com,dood.re,d0000d.com##+js(remove-attr, disableremoteplayback, video[id="video_player"], stay) !doodstream.com,dood.re,d0000d.com##+js(remove-attr, disablepictureinpicture, video[id="video_player"], stay) doodstream.com,dood.re,d0000d.com##video[id="video_player"]:remove-attr(disableremoteplayback) doodstream.com,dood.re,d0000d.com##+js(remove-attr, disableremoteplayback, video[id="video_player"]) doodstream.com,dood.re,d0000d.com##video[id="video_player"]:remove-attr(disablepictureinpicture) doodstream.com,dood.re,d0000d.com##+js(remove-attr, disablepictureinpicture, video[id="video_player"]) doodstream.com,dood.re,d0000d.com##+js(trusted-set-attr, video[id="video_player"], width, 100%) doodstream.com,dood.re,d0000d.com##+js(trusted-set-attr, video[id="video_player"], height, 100%) doodstream.com,dood.re,d0000d.com##+js(trusted-set-attr, video[id="video_player"], x-webkit-airplay, allow) doodstream.com,dood.re,d0000d.com##+js(set-attr, video[id="video_player"], data-autoplay-mute-lock, false) !doodstream.com,dood.re,d0000d.com##+js(trusted-set-attr, video[id="video_player"], data-autoplay-mute-lock, false) doodstream.com,dood.re,d0000d.com##+js(set-attr, video[id="video_player"], controls, true) !doodstream.com,dood.re,d0000d.com##+js(trusted-set-attr, video[id="video_player"], controls, true) doodstream.com,dood.re,d0000d.com##+js(set-attr, video[id="video_player"], playsinline, true) !doodstream.com,dood.re,d0000d.com##+js(trusted-set-attr, video[id="video_player"], playsinline, true) !doodstream.com,dood.re,d0000d.com##+js(trusted-set-attr, video[id="video_player"], playsinline, playsinline) doodstream.com,dood.re,d0000d.com##+js(set-attr, video[id="video_player"], webkit-playsinline, true) !doodstream.com,dood.re,d0000d.com##+js(trusted-set-attr, video[id="video_player"], webkit-playsinline, true) doodstream.com,dood.re,d0000d.com##+js(trusted-set-attr, video[id="video_player"], preload, metadata) !doodstream.com,dood.re,d0000d.com##+js(trusted-set-attr, video[id="video_player"], preload, none) !doodstream.com,dood.re,d0000d.com##+js(trusted-set-attr, video[id="video_player"], preload, auto) doodstream.com,dood.re,d0000d.com##+js(trusted-set-attr, video[id="video_player"], crossorigin, anonymous) ! TODO: Setting the muted attribute to false or removing the muted attribute does NOT unmute the volume if the video player is set to mute the audio. !doodstream.com,dood.re,d0000d.com##+js(set-attr, video[id="video_player"], muted, false) !doodstream.com,dood.re,d0000d.com##+js(trusted-set-attr, video[id="video_player"], muted, false) !doodstream.com,dood.re,d0000d.com##video[id="video_player"][muted]:remove-attr(muted) !doodstream.com,dood.re,d0000d.com##+js(remove-attr, muted, video[id="video_player"][muted]) !*$3p,script,denyallow=fastlycdn.com|static.doodcdn.co|cdnjs.cloudflare.com|doodstream.com|dood.re|d0000d.com,domain=doodstream.com|dood.re|d0000d.com /^https?:\/\/(?!-)[A-Za-z0-9-]+([\-\.]{1}[A-Za-z0-9]+)*\.[A-Za-z]{2,6}\/?\S*/$3p,script,denyallow=fastlycdn.com|static.doodcdn.co|cdnjs.cloudflare.com|doodstream.com|dood.re|d0000d.com,domain=doodstream.com|dood.re|d0000d.com ||dood.re/push_open/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css dood.wf##+js(acs, fromCharCode, charCodeAt) dood.wf##+js(acs, decodeURIComponent, atob) dood.wf##+js(set-constant, ca0967284e67bc53cb5b626985619403, "") dood.wf##+js(aopw, ca0967284e67bc53cb5b626985619403) dood.wf##+js(aopr, ca0967284e67bc53cb5b626985619403) ! TODO: ^script doesn't work with attributes since checked before DOM created? dood.wf##script[data-adel][cdnd][zid]:remove() dood.wf##script[src*="//la3c05lr3o.com/"]:remove-attr(onerror) dood.wf##script[src*="//la3c05lr3o.com/"]:remove-attr(onloaded) dood.wf##script[src*="//la3c05lr3o.com/"]:remove() dood.wf##+js(no-setTimeout-if, c3) realmike.org##aside[class$="widget_eu_cookie_law_widget"]:remove() www.samsung.com##div[class^="cm-cookie-geo"]:remove() www.samsung.com##div[class^="cookie-bar"]:remove() !||www.upsellit.com/analytics/hit.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.upsellit.com/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.upsellit.com/launch/samsung.jsp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||smetrics.samsung.com^* ||tag.wknd.ai^* ||alb.prod.iadvize.io^* ||assets.bounceexchange.com/assets/smart-tag/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rtb.adgrx.com.tech.akadns.net^* ||tag.bouncex.net^* ||cdn.adgrx.com^* ||rtb.adgrx.com^* ||assets.adobedtm.com/extensions/EPbde2f7ca14e540399dcc1f8208860b7b/AppMeasurement_Module_ActivityMap.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||assets.adobedtm.com/extensions/EPbde2f7ca14e540399dcc1f8208860b7b/AppMeasurement_Module_AudienceManagement.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||assets.adobedtm.com/extensions/EPbde2f7ca14e540399dcc1f8208860b7b/AppMeasurement.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||assets.adobedtm.com/extensions/EPbde2f7ca14e540399dcc1f8208860b7b/AppMeasurement_Module_ActivityMap.min.js !||assets.adobedtm.com/extensions/EPbde2f7ca14e540399dcc1f8208860b7b/AppMeasurement_Module_AudienceManagement.min.js ||api.iadvize.com/collector/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.appledystopia.com##*[class*="ezoic-ad"]:remove() ! TODO: ^script doesn't work with attributes since checked before DOM created? www.appledystopia.com##script[ez-screx="true"]:remove() www.muo.com##div[class^="ad-zone"]:remove() www.muo.com##div[id^="div-gpt-ad"]:remove() hostapk.com##div[class="pace-progress"]:remove() hostapk.com##ins[class="adsbygoogle"]:remove() hostapk.com##+js(abort-on-property-write, adsbygoogle) hostapk.com##+js(abort-on-property-read, adsbygoogle) ||www.hostapk.com/wp-content/uploads/2019/01/download.png$image ||4edhfbvjhfv.club^* ||10dfkuvbdkfv.club^* ||pspidjovisdv2.club^* ||kolombox.com/images/downicon.png$image ||kolompc.com/wp-content/uploads/2020/02/downloadas1.jpg$image ||kolompc.com/wp-content/uploads/2020/02/downloadad21.jpg$image www.mipony.net##div[id="cookie-notice"]:remove() file.dlandroid.com##.xs-btn-dl:remove() ||www.acapps.online^* ||anniversarytoothbrush.com^* ||payingnoodlescam.com^* ||cdn35017631.ahacdn.me^* ||pestilentdarwinuphill.com^* ||pianistrefutationgoose.com^* ||gjw5qbyn93b8.com^* crowdin.com##div[aria-label="cookieconsent"]:remove() getoutline.org##div[class="cookie-bar-container"]:remove() ||peskyexecutionyouthful.com^* ||sb-inv1.com^* ||directoryexertion.com^* ||jeerszitstoke.com^* ||t0gkj99krb24.com^* ||eyefuneve.com^* ||widget.pushbullet.com^* ||api.pushbullet.com^* cariuma.com##div[id="shopify-section-cookies-bar"]:remove() cariuma.com##div[class="cookies-bar"]:remove() openwrt.org##div[class*="cookielaw-"]:remove() ||get.ziplink.stream^* ||crackheap.net^* ||macblurayplayer.com/image/SpyHunter-apkpure.jpg$image ||s.4pda.to/img/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||4pda.ru/ad/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||4pda.ru/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css androidbiits.com##.adsbygoogle:remove() forum.gsmhosting.com##ins[class="adsbygoogle"]:remove() forum.gsmhosting.com##+js(abort-on-property-write, adsbygoogle) forum.gsmhosting.com##+js(abort-on-property-read, adsbygoogle) xdroidapps.com##div[id="cookie-notice"]:remove() !m.downloadatoz.com##script[id="cookieScriptId"]:remove() ! TODO: ^script doesn't work with attributes since checked before DOM created? downloadatoz.com##script[id="cookieScriptId"]:remove() !m.downloadatoz.com##div[class="cookie-fixd"]:remove() downloadatoz.com##div[class="cookie-fixd"]:remove() !m.downloadatoz.com##div[class="cookie-main clearfix"]:remove() downloadatoz.com##div[class="cookie-main clearfix"]:remove() ||rating.happymod.com/cookie/cookies.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adservingvpc-1239633584.eu-west-1.elb.amazonaws.com^* ||ad.audiencemanager.de^* ||production-adserver-balancer-482023461.us-east-1.elb.amazonaws.com^* !||mantodea.mantisadnetwork.com/prebid/display?referrer=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mantodea.mantisadnetwork.com^* ||publisherdesk-d.openx.net^* m.downloadatoz.com##.fot-float-box:remove() www.bemobi.com.br##div[class^="cookie-banner-lgpd"]:remove() techwiser.com##ins[class="adsbygoogle"]:remove() gifs.com##div[id="gifsad"]:remove() gifs.com##span[id="hidead"]:remove() gifs.com##span[id="adsby"]:remove() gifs.com##a[id="overlayLink"]:remove() ||storage.googleapis.com/cdn.gifs.com/build/js/tracking-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cash-app.me^* ||cash-app.com^* www.droidviews.com##span[id^="ezoic-pub-ad-placeholder"]:remove() www.droidviews.com##span[class*="ezoic-ad"]:remove() apkfab.com##div[class="cookie-notice-container"]:remove() tidal.com##div[class*="cookie-info"]:remove() developer.samsung.com##div[id="cookie-bottom-layer"]:remove() dplayout.bce.lu##div[id="cookie-notice"]:remove() www.hardreset.info##div[class="adp_interactive_ad"]:remove() ||tolyafbnjt9dedjj10.com^* ||cds.q4u3k7c6.hwcdn.net^* ||static.jerkmate.com^* ||landing.jerkmate.com^* ||www.fthkmwrkqg.com^* ||fthkmwrkqg.com^* ||www.ntdvjlvau.com^* ||ntdvjlvau.com^* www.acrylicwifi.com##link[id="tar_cookies_bar-css"]:remove() !||www.acrylicwifi.com/wp-content/plugins/info-cookies/public/assets/css/cookies_bar.css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.acrylicwifi.com/wp-content/plugins/info-cookies/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.acrylicwifi.com##div[class^="tar_cookiesBar"]:remove() ||d2znr2yi078d75.cloudfront.net^* ||d3oiwf0xhhk8m1.cloudfront.net^* ||d1r0ldx4ccoewq.cloudfront.net^* ||www.zhkquyvfndeker.com^* ||zhkquyvfndeker.com^* ||veration-cellyric.com^* mixi.media##div[class="csci-ad-content"]:remove() mixi.media##div[class="opstagWrapper"]:remove() www.marketwatch.com##.element--ad:remove() mixi.media##.vuukle-ads:remove() !www.rt.com##div[class="cookies__banner js-cookies-banner cookies-banner-shown"]:remove() www.rt.com##div[class^="cookies__banner"]:remove() ||samsungads.com^* ||samsungtvads.com^* ||config.samsungads.com^* ||log-config.samsungacr.com^* ||ads.samsungads.com^* ||log-ingestion-eu.samsungacr.com^* ||tvx.adgrx.com^* ||events.samsungads.com^* ||www.med-star.gr^* ||med-start.gr^* ||secure-open.com^* ||mail.elbroos.com/scripts/analitics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||androidforums.com/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tucshost.xyz^* ||gematsu.org^* ||0.nextyourcontent.com^* ||downloads25671.downloadsdir.com^* ||flsdow.space^* ||waqarworld4u.blogspot.com^* !||www.liveadoptimizer.com/jump/next.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.liveadoptimizer.com/script/i.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.liveadoptimizer.com^* ||kilozip.online^* ||hexima.ga^* ||prosoftlink.com^* ||scracked.com^* www.maxmodapk.com##div[class="ad-wap"]:remove() www.imobie.com##div[class="fixedbot"]:remove() !wifi-mouse.en.uptodown.com###header_ad:remove() !remote-link.en.uptodown.com###header_ad:remove() en.uptodown.com##div[id="header_ad"]:remove() en.uptodown.com##div[id="content_ad"]:remove() en.uptodown.com##div[class="ad"]:remove() en.uptodown.com##div[class^="ad "]:has-text(/Advertisement/):remove() en.uptodown.com##div[class*="ssm_adunit_container"]:remove() en.uptodown.com##+js(abort-on-property-write, ssmCodes) en.uptodown.com##+js(abort-on-property-read, ssmCodes) en.uptodown.com##+js(abort-on-property-write, ssmCodesFallback) en.uptodown.com##+js(abort-on-property-read, ssmCodesFallback) en.uptodown.com##+js(set-constant, addEventAnalytics, noopFunc) ||scripts.ssm.codes/uptodown.js$3p,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ssm.codes/smart-tag/uptodown.js$3p,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.apk4fun.com##div[aria-label="cookieconsent"]:remove() www.apk4fun.com##ins[data-ad-client]:upward(1):remove() www.apk4fun.com##+js(set-constant, signalGooglefcPresent, noopFunc) www.apk4fun.com##+js(acs, /signalGooglefcPresent\(/) www.apk4fun.com##+js(abort-on-property-write, adsbygoogle) www.apk4fun.com##+js(abort-on-property-read, adsbygoogle) www.nxp.com##div[class^="optanon-alert-box-"]:remove() ||spannersalesman.com^* !||topdata.downloadatoz.com/caicai_android_data_hits/proc/hits_process.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||topdata.downloadatoz.com^* !||apien.ldmnq.com/report_uninstall$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||apien.ldmnq.com^* !www.dvdnextcopy.com##div[class="avia-cookie-consent avia-cookiemessage-bottom"]:remove() www.dvdnextcopy.com##*[class*="avia-cookie-consent"]:remove() ||writtenlistened.com^* !||brkwyqhj.oppositedragonfly.com^* ||oppositedragonfly.com^* ||f95nkry2nf8o.com^* ||incompatiblemisterfarmer.com^* ||atnxm.vesmetheo.biz^* ||vesmetheo.biz^* ||www35.richardwashington.pro^* www.clevertutorials.com##.adsbygoogle:remove() www.apkonline.net##div[class^="eupopup-"]:remove() lapelotita.com##div[id="cookie-pop"]:remove() lapelotita.com##div[class="banner banner-336x280"]:remove() ||lapelotita.com/AdLinkFly/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css lapelotita.com##form[id="go-popup"]:remove() lapelotita.com##+js(set-constant, app_vars.counter_value, 0) lapelotita.com##div[class="banner-inner"]:remove() android-apk.org##ins[class="adsbygoogle"]:remove() android-apk.org##+js(remove-attr, disabled, #dl) android-apk.org##+js(abort-on-property-write, adsbygoogle) android-apk.org##+js(abort-on-property-read, adsbygoogle) www.moddescargar.com##.ad-wap:remove() www.modapkdescargar.com##.ad-new-box:remove() blackmod.net##li[class="notice js-notice notice--primary notice--cookie"]:remove() ||sc-contentlocker.com^* ||ra.majorgeeks.com/www/images/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.majorgeeks.com##[src^="https://ra.majorgeeks.com/www/images/"]:remove() !playcaliber.com##div[class="cookie_notice"]:remove() playcaliber.com##div[class^="cookie_notice"]:remove() ||7kjfbgkjbfgb.club^* uploadking.net##div[class^="ads"]:remove() uploadking.net##button[id="downloadbtn"]:remove-attr(disabled) uploadking.net##+js(remove-attr, disabled, #downloadbtn) uploadking.net##+js(trusted-set-attr, #downloadbtn, type, submit) uploadking.net##div[class^="download-btn"]:style(display: block !important; visibility: visible !important;) uploadking.net##+js(set-constant, remaining, 0) uploadking.net##+js(set-constant, timeout, true) uploadking.net##+js(no-setTimeout-if, /tick/) uploadking.net##div[id="countdown"]:remove() ! no actual need to block the following countdown script with the above rules enabled ||uploadking.net/ds2/js/countdown.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||v3v9d2b8.rocketcdn.me/wp-content/uploads/2020/07/download-button.png$image ||ox-d.adtrackers.net^* ||cdn.webpushr.com^* ||inewkhushi.com/wp-content/plugins/webpushr-web-push-notifications/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vipmods.net/wp-content/plugins/exit-strategy-pro/count.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css vipmods.net##+js(set-constant, gsecs, 1) !vipmods.net##+js(set-constant, CountActive, false) !vipmods.net##+js(trusted-set-constant, CountStepper, { "value": -50 }) vipmods.net##+js(trusted-set-constant, skipit, { "value": -1 }) !vipmods.net##+js(set-constant, skipthis, 1) !vipmods.net##*:style(overflow:hidden; visibility:hidden) ||d31vxm9ubutrmw.cloudfront.net^* ||www.demonews.com/assets/js/contentteller.consent.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.demonews.com##div[class="alert alert-block alert-warning"]:remove() easyjoin.net##div[id="cookie-message"]:remove() dzapk.com##div[aria-label="cookieconsent"]:remove() !||www.vector.co.jp/advertise/image/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.vector.co.jp/advertise/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||codedpigzed.cam^* ||get.fixmypc.help^* ||live.maroohost.online^* ||safesoft.go2oh.net^* ||diconthistfomlaca.tk^* ||getfilefast.com^* ||hackdl.com^* ||start3dd0wnload.com^* jornaleconomico.sapo.pt##div[id^="tg-adhesion"]:remove() !www2.bittools.net##div[aria-label="cookieconsent"]:remove() bittools.net##div[aria-label="cookieconsent"]:remove() ||joastous.com^* !||whazugho.com/pfe/current/service-worker.min.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||whazugho.com^* ||y2mate.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.y2mate.com/sw3461575.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||content-cdn.y2mate.com/images/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.y2mate.com##div[id="ads-place-download"]:remove() www.y2mate.com##div[class="ads-social-box"]:remove() www.y2mate.com##^script:has-text(popupWindow):remove() www.y2mate.com##+js(remove-node-text, script, /popupWindow/gm) !*$3p,script,domain=y2mate.com /^https?:\/\/(?!-)[A-Za-z0-9-]+([\-\.]{1}[A-Za-z0-9]+)*\.[A-Za-z]{2,6}\/?\S*/$3p,script,domain=y2mate.com *$3p,popup,domain=y2mate.com ! TODO: using the following rule doesn't block popups from about:blank !/^https?:\/\/(?!-)[A-Za-z0-9-]+([\-\.]{1}[A-Za-z0-9]+)*\.[A-Za-z]{2,6}\/?\S*/$3p,popup,domain=y2mate.com !||ak.bewathis.com^* ||bewathis.com^* ||gloaphoo.net^* !||push-decdbeb-8600.pushails.com^* ||push-*.pushails.com^* !||href.li/* blocks legitimate links !||cds.j3z9t3p6.hwcdn.net/* blocks bootstrap CSS ||apkpanda.com/service-worker.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.att.com/olam/js/common/myattConsoleLogger.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.kinematicsoup.com##div[class^="sqs-cookie-banner-v2"]:remove() ||greatedclu.fun^* ||ctuggestd.fun^* ||dmmzkfd82wayn.cloudfront.net^* aporasal.net##*[style*="display: none"]:remove() aporasal.net##+js(trusted-set-constant, iframe2.indexOf('adf.ly'), { "value": -1 }) ||cdn65182383.ahacdn.me^* !||cst.cstwpush.com/static/adManager.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cst.cstwpush.com^* !||images.adex.media/image/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||images.adex.media^* !||na.nawpush.com/tags/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||na.nawpush.com^* !||ntvpevents.com/in/show/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ntvpevents.com^* ||ntvpwpush.com^* ||refnippod.com^* !||sw.swwpush.com/npc/sdk/wpu/csub.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||sw.swwpush.com/npc/sdk/wpu/npush.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sw.swwpush.com^* !||sw.wpush.org/npc/sdk/push.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sw.wpush.org^* !||tcb.pushic.com/v1/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tcb.pushic.com^* !||us.postbacks.net/metrics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||us.postbacks.net^* ||35.232.188.118/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css upfile.us##div[id^="ad-items-"]:remove() safelinkdroid-blog.blogspot.com##[href^="https://www.passeura.com/"]:remove() appcrush.blogspot.com##[href^="https://mob1ledev1ces.com/r/"]:remove() developer.nvidia.com##div[class*="eu-cookie-compliance-banner"]:remove() developer.nvidia.com##div[id="sliding-popup"]:remove() ||terraformpro.com/wp-content/plugins/jetpack/_inc/build/widgets/eu-cookie-law/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! TODO: ^script doesn't work with attributes since checked before DOM created? terraformpro.com##script[id="eu-cookie-law-script-js"]:remove() terraformpro.com##div[id="eu-cookie-law"]:remove() youlink.ga##div[id="cookie-pop"]:remove() youlink.ga##div[class="ad-banner"]:remove() ||emuwanflat.com^* getmod.app##div[id="js-use-cookies"]:remove() dwdisc.com##[href*="//emuwanflat.com/"]:remove() apknite.com##div[id="cookie-notice"]:remove() ||rddywd.com/advertising.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.newser.com##div[id="divCM"]:remove() ||id.bignox.com^* ||unauthorized.bignox.com^* ||alog.umeng.com^* ||api.noxinfluencer.com^* ||log.bignox.com^* supreme-gamers.com##ins[class="adsbygoogle"]:remove() supreme-gamers.com##+js(set-constant, adsbygoogle, null) supreme-gamers.com##+js(set-constant, lolMan, null) !supreme-gamers.com##^script:has-text(lolMan):remove() !supreme-gamers.com##^script:has-text(adsbygoogle):remove() www.cinemablend.com##div[id="leaderboard-ad"]:remove() ||supreme-gamers.com/js/fuckadblock.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! TODO: ^script doesn't work with attributes since checked before DOM created? www.cinemablend.com##script[id="gpt-api-script"]:remove() www.cinemablend.com##div[id="preemptive-1"]:remove() ||pailridarm.com^* ||nunailsum.com^* ||ddmax20.xyz^* ||scowpoppanasals.com^* ||toeschistache.com^* ||banesnorttat.cam^* ||moppinfop.com^* ||hannahgraham.xyz^* ||awaitcola.com^* ||usingham.fun^* ||thebestgame2020.com^* ||torrentvicious.com^* ||cdn.betgorebysson.club^* ||bebreloomr.com^* ||untruewring.com^* ||e2wysbacctt1.com^* ||katherinelyman.xyz^* ||temptationnecklace.com^* ||video.your-notice.com^* ||betemolgar.com^* !||v3.fstats.xyz/log?u=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||v3.fstats.xyz^* ||www.luxubu.review/asset/bann.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.luxubu.review/* !blocks "FE" video player !||geoip.redirect-ads.com/* !blocks video player www.imyfone.com##div[class^="cookie_policy"]:remove() ||stuffedprofessional.com^* ||deaconrandomoptional.com^* ||Clxrggmghevqfu.com^* !account.packtpub.com##div[aria-label="cookieconsent"]:remove() packtpub.com##div[aria-label="cookieconsent"]:remove() www.upload-4ever.com##div[id="gdpr-cookie-notice"]:remove() www.hybrid-analysis.com##div[id="cookie-message-container"]:remove() www.geekbuying.com##div[class="gdpr-cookie"]:remove() www.cbc.ca##div[class="privacyNotification"]:remove() !||www.cbc.ca/g/stats/js/cbc-stats-bottom.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.cbc.ca##.stickyRailAd:remove() www.wsgf.org##div[class*="block-google-admanager"]:remove() www.wsgf.org##div[id^="block-google-admanager"]:remove() ||www.xehcnpvqdicvx.com^* ||xehcnpvqdicvx.com^* ||www.goeasycoupon.com^* ||toglooman.com^* ||littlecdn.com/interstital/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||interstitial-07.com^* ||omchanseyr.com^* ||capsfogpeck.com^* nbyts.online##div[id^="div-gpt-ad"]:remove() nbyts.online##^script:has-text(googletag):remove() nbyts.online##+js(remove-node-text, script, /googletag/gm) nbyts.online##div[id="adb_detected"]:remove() nbyts.online##input[id="ab"]:remove() yts.mx##^script:has-text(admc):remove() yts.mx##+js(remove-node-text, script, /admc/gm) hevcbay.com##^script:has-text(decodeURIComponent):remove() hevcbay.com##+js(remove-node-text, script, /decodeURIComponent/gm) ||trainspersuasiveknitting.com^* ||maimeehu.com^* ||rr.tracker.mobiletracking.ru^* ||main.exdynsrv.com/tag.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||main.exosrv.com/tag.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tk6if76q.ab1n.net^* !||visitor.omnitagjs.com/visitor/sync?uid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||visitor.omnitagjs.com^* ||www.amgtomdcxvm.com^* ||www.ghsmfmjcicgup.com^* exerin1982.pixnet.net##div[id^="div-gpt-ad-"]:remove() exerin1982.pixnet.net##div[id="pix-mib-unfold-ad"]:remove() exerin1982.pixnet.net##+js(abort-on-property-read, _atrk_opts) ||s.pixanalytics.com^* ||www.hufwitew.com^* ||hufwitew.com^* ||www.americanlisted.com/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.pdxgfnnoan.com^* ||pdxgfnnoan.com^* ||0redirb.com^* ||1496.wcitianka.com^* www.luckymodapk.com##div[class="ad-wap"]:remove() www.luckymodapk.com##div[id="pdt_ad"]:remove() www.luckymodapk.com##ins[class="adsbygoogle"]:remove() id.luckymodapk.com##div[class="ad-wap"]:remove() id.luckymodapk.com##div[id="pdt_ad"]:remove() id.luckymodapk.com##ins[class="adsbygoogle"]:remove() !||befirstcdn.com/script/suv4.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||befirstcdn.com^* ||www.oedoxundnibwc.com^* ||oedoxundnibwc.com^* ||www.poxtebnltkehh.com^* ||poxtebnltkehh.com^* ||ddcevwmddjhjp.cloudfront.net^* ||imagetwist.com/adblock_detector2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||imagetwist.com/site_ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||impactserving.com/banner.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||imagetwist.com/adimages/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||go.rdrjmp.com/smartpop/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static-assets.highwebmedia.com/videos/canAutoplayInline.mp4$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The following rule redirects the video to a null file instead. ||static-assets.highwebmedia.com/videos/canAutoplayInline.mp4$media,redirect=noop-1s.mp4 ||staticx3.dditscdn.com/jsm2/master/script/ga/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||awptjmp.com^* ||bongacams7.com/track$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||klx.masterchurrascaria.com.br^* ||emotersjervina.com^* ||boasstylijoked.com^* !||popbounty.com/serve.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||popbounty.com^* ||uploadfree.info/assets/js/vb.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.ovagames.com##a[rel="nofollow"]:remove() !www.ovagames.com###aorwqlbtf-blanket:remove() www.ovagames.com##div[id$="-blanket"]:remove() www.ovagames.com##div[id="adter"]:remove() ! TODO: ^script doesn't work with attributes since checked before DOM created? www.ovagames.com##script[id="magnific_popup-js"]:remove() www.ovagames.com##+js(abort-on-property-write, pop_tag) www.ovagames.com##+js(abort-on-property-read, pop_tag) www.ovagames.com##^script:has-text(VGALnWlhIpx):remove() www.ovagames.com##+js(remove-node-text, script, /VGALnWlhIpx/gm) www.ovagames.com##^script:has-text(KVDiGHRQGvz):remove() www.ovagames.com##+js(remove-node-text, script, /KVDiGHRQGvz/gm) www.ovagames.com##+js(set-constant, adlinkfly_url, '') www.ovagames.com##+js(set-constant, adlinkfly_advert, 0) www.ovagames.com##^script:has-text(adlinkfly_):remove() www.ovagames.com##+js(remove-node-text, script, /adlinkfly_/gm) www.ovagames.com##^script:has-text(['length','charCodeAt','fromCharCode']):remove() www.ovagames.com##+js(remove-node-text, script, /\[['"]length['"]\,\s?['"]charCodeAt['"],\s?['"]fromCharCode['"]\]/gm) www.ovagames.com##+js(abort-on-property-read, t.pubads) www.ovagames.com##+js(abort-current-script, t.pubads) www.ovagames.com##+js(abort-on-property-read, window.event.keyCode) www.ovagames.com##+js(abort-current-script, window.event.keyCode) www.ovagames.com##+js(abort-on-property-read, adtival_advert) www.ovagames.com##+js(abort-current-script, adtival_advert) www.ovagames.com##+js(abort-on-property-read, adtival_url) www.ovagames.com##+js(abort-current-script, adtival_url) www.ovagames.com##+js(abort-on-property-read, adtival_api_token) www.ovagames.com##+js(abort-current-script, adtival_api_token) www.ovagames.com##+js(abort-on-property-read, __webpack_exports__) www.ovagames.com##+js(abort-current-script, __webpack_exports__) www.ovagames.com##+js(abort-on-property-read, aorwqlbtf) www.ovagames.com##+js(abort-on-property-write, aorwqlbtf) ||www.ovagames.com/wp-content/themes/eGamer/includes/page_templates/js/magnific_popup/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css uploadfree.info##div[id="adblockinfo"]:remove() uploadfree.info##div[id="ads-rel"]:remove() www.washingtontimes.com##div[class^="DisplayAd__container"]:remove() www.washingtontimes.com##div[class^="index__adWrapper"]:remove() www.wifimap.io##div[class="_2PfBI6K7JwmWPipDUq09x5"]:remove() ||bold.affiliatetracker.io^* apkmodload.com##aside[id="rb-cookie"]:remove() cutx.me##div[id="cookie-pop"]:remove() !||kumteerg.com/pfe/current/service-worker.min.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||kumteerg.com^* !||cutx.me/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cutx.me/swproadspush.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stimtavy.net^* ||expendituredefeated.com^* !||server.cpmstar.com/cached/anchorad.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||server.cpmstar.com/cached/flc.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||server.cpmstar.com/cached/js/anchorad_v100.pack.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||server.cpmstar.com/cached/js/siteskin_v100.pack.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||server.cpmstar.com/cached/js/textad_async_v100.pack.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||server.cpmstar.com/view.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||server.cpmstar.com^* !||glandtest.com/watch.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||glandtest.com^* !||cdn.keywee.co/dist/analytics-1.5.12.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.keywee.co/dist/analytics.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.keywee.co/dist/analytics$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d3l22sipwx377d.cloudfront.net^* ||ssl.cdne.cpmstar.com^* cutx.me##div[class="alert alert-danger"]:remove() cutx.me##+js(abort-on-property-read, cpmstar_pid) cutx.me##+js(abort-on-property-write, cpmstar_pid) cutx.me##^script:has-text(cpmstar_):remove() cutx.me##+js(remove-node-text, script, /cpmstar_/gm) ! TODO: ^script doesn't work with attributes since checked before DOM created? cutx.me##script[data-zone-domain="https://stimtavy.net"]:remove() ||network-shield.com^* ||upsidecopiedcraft.com^* androidapksdl.com##ins[class="adsbygoogle"]:remove() freeupload.info###at-btn-download:remove-attr(disabled) ||riminghoggoofy.com^* playacademy.exceedlms.com##div[id="gdpr-consent"]:remove() www.win-rar.com##div[id="cookiewarning"]:remove() letsview.com##div[id="cookielink"]:remove() letsview.com##div[class="cookielink"]:remove() ||wx-analytics.cn-hongkong.log.aliyuncs.com^* ||humdrumhat.com^* ||www.qbcpicrtdje.com^* ||www.wvekalpmn.com^* ||sunsetbenignity.com^* www.upload-4ever.com##.waves-light.waves-effect.btn-success.btn-lg.btn:remove() ||rockfile.co/images/myf.gif$image ||www.wonderhowto.com/ajax/keepalive/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.wonderhowto.com/ajax/checkforhpupdates/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ueikno.com^* ||u-7188.onetouch6.com^* ||dfwergmore.xyz^* ||images.wondershare.com/images2021/personnalityTest/002.gif$image ||null-byte.wonderhowto.com/ajax/keepalive/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||analytics-api.dvdfab.cn^* nullscriptz.nl##div[class="notice-content"]:remove() www.usenext.com##.cookiefirst-root:remove() www.top4download.com##div[class*="cc_dialog"]:remove() !||www.cookieconsent.com/releases/3.1.0/cookie-consent.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.cookieconsent.com/releases/*/cookie-consent.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.nulleo.com##*[class*="notice--cookie"]:remove() ||batteryfirmimage.com^* ||cdn10236888.ahacdn.me^* ||d3mr7y154d2qg5.cloudfront.net^* ||falsemulticultural.com^* ||lauriegrowingdrops.com^* ||lilacdefencelessroyal.com^* ||permanentnearly.com^* ||s11.flagcounter.com^* ||www.joeyzzvkpjha.com^* ||www.avfgoatbyyerys.com^* ||avfgoatbyyerys.com^* ||jamsoulsfriday.com^* ||handtub.com^* ||producingsavourestablish.com^* degoo.com##div[class*="cookie-notification"]:remove() apuppet.org##div[id="cookie-notice"]:remove() www.vogella.com##div[class="cc_overlay_lock"]:remove() source.android.com##.devsite-banner-message:remove() ||grass328towndistant.live^* www.tonyknowles.com##div[aria-label="cookieconsent"]:remove() ||mix.aff-track.net^* ||flickerbridge.com^* pan.baidu.com##.swal2-show.swal2-modal.swal2-popup:remove() pan.baidu.com##.swal2-backdrop-show.swal2-center.swal2-container:remove() ||www.linkonclick.com/script/i.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sioncenture.fun^* ||pecializesine.biz^* www.nulled-scripts.info##div[id="tie-popup-adblock"]:remove() www.nulled-scripts.info##div[class="adblock-message"]:remove() ||www.nulled-scripts.info/wp-content/plugins/ad-inserter/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.nulled-scripts.info/wp-content/cache/wpfc-minified/798jow7v/6il5p.js !disables scrolling but site needs this script to function !Changing the following in the tag from overflow: hidden to overflow: scroll allows scrolling in the entire page www.nulled-scripts.info##html:style(overflow: scroll !important; overflow-y: scroll !important;) www.nulled-scripts.info##svg:style(overflow: scroll !important; overflow-y: scroll !important;) !Don't set all tags to overflow to scroll or the page is broken. !www.nulled-scripts.info##*:style(overflow: scroll !important;) !www.nulled-scripts.info##+js(trusted-set-constant, h.overflow, scroll) !www.nulled-scripts.info##+js(trusted-set-constant, n.overflow, scroll) www.nulled-scripts.info##*:style(filter: blur(0px) !important; -webkit-filter: blur(0px) !important;) !www.nulled-scripts.info##scrollbar[disabled="true"]:remove() !www.nulled-scripts.info##scrollbarbutton[disabled="true"]:remove() !www.nulled-scripts.info##slider[disabled="true"]:remove() www.nulled-scripts.info##ins[class="adsbygoogle"]:remove() www.nulled-scripts.info##+js(abort-on-property-read, adsbygoogle) www.nulled-scripts.info##+js(abort-on-property-write, adsbygoogle) www.nulled-scripts.info##div[id="banner-advert-container"]:remove() www.nulled-scripts.info##div[class="ad-inserter infolinks-ad"]:remove() www.nulled-scripts.info##img[id="adsense"]:remove() www.nulled-scripts.info##img[id="ai-adb-adnxs"]:remove() ! TODO: ^script doesn't work with attributes since checked before DOM created? www.nulled-scripts.info##script[id^="ai-adb-"]:remove() !www.nulled-scripts.info##^script:has-text(ai_adb_active) www.nulled-scripts.info##^script:has-text(ai_adb_):remove() www.nulled-scripts.info##^script:has-text(ai-adb-):remove() www.nulled-scripts.info##+js(remove-node-text, script, /ai_adb_/gm) www.nulled-scripts.info##+js(remove-node-text, script, /ai\-adb\-/gm) www.nulled-scripts.info###ai-adb-bar:remove() www.nulled-scripts.info##.ai-adb-show:remove() www.nulled-scripts.info##.tie-popup-container:remove() ||assembledscout.com^* !||swc.cdn.skype.com/v/0.136.43/telemetry-bundle.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||swc.cdn.skype.com/v/0.136.43/vendors.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||swc.cdn.skype.com/v/*/telemetry-bundle.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||swc.cdn.skype.com/v/*/vendors.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||swc.cdn.skype.com/vendors/knockout-latest.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||deliriousglowing.com^* ||dsp.adkernel.com^* ||grainstucked.com^* ||mignished-sility.com^* ||multiadblock.com^* !||neowin.tradepub.com/data/consentBar.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tradepub.com/data/consentBar.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||srtb.msn.com/notify/served?rid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||srtb.msn.com/notify/viewed?rid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||srtb.msn.com/auction$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||srtb.msn.com/auction$method=post|options,xhr !||a-0003.a-msedge.net/auction$method=post|options,xhr ||a-0003.a-msedge.net/auction$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.bing.com/api/v1/mediation/trends?appid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.bing.com/api/v1/mediation/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||browser.events.data.microsoft.com/OneCollector/1.0/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||browser.pipe.aria.microsoft.com/Collector/3.0/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||r.bing.com/rp/rms_pr.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||outlook.live.com/ows/beta/AdsTargetingOptOutController$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||outlook.live.com/search/api/v1/suggestions$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||outlook.live.com/ows/v1.0/OutlookOptions/AdsAggregate?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css outlook.live.com##div[data-animatable="true"]:has(div[class="Ogt7j"]):remove() outlook.live.com##div[class="Ogqyq"]:has(button[class="Soq5F"]:has-text(Upgrade to Microsoft 365 with)):remove() outlook.live.com##div[data-focuszone-id="FocusZone80"]:remove-attr(disableTextSelection) !outlook.live.com##span[class="z22gV"]:has-text(/It looks like you're using an ad blocker\. To maximize the space in your inbox, sign up for/i):remove() outlook.live.com##span[class="z22gV"]:remove() outlook.live.com##img[aria-label="Set your advertising preferences"]:upward(2):remove() outlook.live.com##img[aria-label="Set your advertising preferences"]:remove() outlook.live.com##div[class="GssDD"]:remove() outlook.live.com##+js(remove-class, disableTextSelection, body) outlook.live.com##div[class="full cJ3F3"]:remove() ! remove() does not work on Brave's native adblocking outlook.live.com##a[href*="://windows.microsoft.com/outlook/ad-free-outlook"]:remove() outlook.live.com##img[src$="/resources/images/adbarmetrosprite.png"]:remove() ! Brave does not have has-text(); -abp-contains() doesn't work either outlook.live.com##span:has-text(/It looks like you\'re using an ad blocker\./i):upward(3):remove() outlook.live.com##span:has-text(/It looks like you\'re using an ad blocker\./i):remove() !outlook.live.com##i[data-icon-name="Delete"]:has(div[class="_2Frh JMe1C"]):remove() outlook.live.com##div[class="_2Frh JMe1C"]:remove() outlook.live.com##div[class="Tovoi"]:upward(6):remove() !outlook.live.com##div[id="owaadbar0"]:remove() outlook.live.com##div[id^="owaadbar"]:upward(3):remove() outlook.live.com##div[id^="owaadbar"]:remove() outlook.live.com##div[aria-label="advertisement"]:remove() outlook.live.com##._2qPmszDwBfYpF7PO9Mn3KN:remove() outlook.live.com##._2mhQPCKFXGlBdoAPrGByBE:remove() outlook.live.com###owaadbar:remove() outlook.live.com##aside[name="gdpr-banner"]:remove() outlook.live.com##span[class="N3k7EN5vRGTrONWBPg250"]:remove() outlook.live.com##div[class*="fbAdSubtitle"]:remove() outlook.live.com##div[class*="fbAdTitle"]:remove() outlook.live.com##div[class*="fbAdLink"]:remove() outlook.live.com##div[class*="fbAdBody"]:remove() outlook.live.com##div[class="full UsCOa"]:remove() ! The following rule removes the container for reading opened email so do NOT use it. !outlook.live.com##div[id="ReadingPaneContainerId"]:remove() ! TODO: Removing the footer ad panel below the message list does NOT automatically expand the element containing the message list. ! Use the subsequent rule instead of the following rule to remove the footer ad pane below the list of messages. !outlook.live.com##div[id="ReadingPaneContainerId"] > div > div[class="g_zET"]:has(img[src$="/resources/img/qr-code.png"]):upward(2):remove() !outlook.live.com##div[id="Skip to message-region"]:remove() ! The following rule just removes the ad banner element in the bottom left column with the list of folders. !outlook.live.com##div[class="syTot"]:has(span:has-text(/Get Outlook mobile\. Stay connected on the go!/)):remove() ||arc.msn.com/v3/Delivery/Events/Impression$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||arc.msn.com/v4/api/selection?placement=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||match.sharethrough.com/sync/v1?supply_id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||match.sharethrough.com/universal/v1?supply_id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||match.sharethrough.com^* ||outlook-1.cdn.office.net/owamail/*/resources/images/adbarmetrosprite.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||outlook-1.cdn.office.net/owamail/*/srienabled/resources/analytics-ping.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||outlook-1.cdn.office.net/owamail/*/srienabled/scripts/owa.MailBoot~AdsPanel.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||outlook-1.cdn.office.net/owamail/*/srienabled/scripts/owa.MailBoot~Analytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||outlook-1.cdn.office.net/owamail/*/srienabled/scripts/owa.MailBoot~Analytics~ApolloClient~AppBar~BookingsBoot~CalendarBoot~CalendarDeepBoot~CalendarRibbonImpo~3f9c5dd4.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||outlook-1.cdn.office.net/owamail/*/srienabled/scripts/owa.MailBoot~Analytics~ApolloClient~AppBar~BookingsBoot~CalendarBoot~CalendarDeepBoot~CalendarRibbonImpo~62e3a608.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||outlook-1.cdn.office.net/owamail/*/srienabled/scripts/owa.MailBoot~Analytics~ConversationNodesHxResolver~ConversationNodesWebResolver.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||outlook-1.cdn.office.net/owamail/*/srienabled/scripts/owa.MailBoot~Analytics~OwaBotConversation.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||outlook-1.cdn.office.net/owamail/*/srienabled/scripts/owa.MailBoot~Analytics*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||outlook-1.cdn.office.net/owamail/*/srienabled/scripts/owa.MailBoot~OwaAdUserLog.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||outlook-1.cdn.office.net/owamail/*/srienabled/scripts/owa.initializeAdTcf.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css s0ft4pc.com##+js(abort-on-property-read, oneSignal_options) s0ft4pc.com##+js(abort-on-property-write, oneSignal_options) s0ft4pc.com##^script:has-text(OneSignal):remove() s0ft4pc.com##+js(remove-node-text, script, /OneSignal/gm) s0ft4pc.com,fbsvy.blogspot.com##+js(abort-on-property-read, atOptions) s0ft4pc.com,fbsvy.blogspot.com##+js(abort-on-property-write, atOptions) s0ft4pc.com,fbsvy.blogspot.com##^script:has-text(atOptions):remove() s0ft4pc.com,fbsvy.blogspot.com##+js(remove-node-text, script, /atOptions\s?=/gm) s0ft4pc.com##^script:has-text(DMCA):remove() s0ft4pc.com##+js(remove-node-text, script, /DMCA/gm) ! TODO: ^script doesn't work with attributes since checked before DOM created? codingshiksha.com##script[data-ezscrex="false"]:remove() codingshiksha.com##style[id="admania-style-inline-css"]:remove() !codingshiksha.com##div[class^="admania-"]:remove() !codingshiksha.com##div[class="admania-sitecontainer"]:remove() codingshiksha.com##header[class^="admania-"]:remove() codingshiksha.com##div[class="admania_adblock_detector"]:remove() codingshiksha.com##div[class="admania_adb_enabledinner"]:remove() codingshiksha.com##div[class="admania_adb_enbtp"]:remove() codingshiksha.com##div[class="admania_adb_enbtm"]:remove() codingshiksha.com##span[class="ezoic-adpicker-ad"]:remove() codingshiksha.com##div:style(visibility: visible !important;) codingshiksha.com##svg:style(overflow: scroll !important;) codingshiksha.com##div[id="himbzrqp-blanket"]:remove() codingshiksha.com##span[class*="ezoic-ad"]:remove() codingshiksha.com##span[class*="adtester-container"]:remove() codingshiksha.com##div[class*="ezmob-footer"]:remove() codingshiksha.com##div[class*="ezo_ad"]:remove() codingshiksha.com##div[class="ezoic-adpicker-ad"]:remove() codingshiksha.com##+js(abort-on-property-read, __inScopeForCCPA) codingshiksha.com##+js(abort-on-property-write, __inScopeForCCPA) codingshiksha.com##+js(abort-on-property-read, __ez_dims) codingshiksha.com##+js(abort-on-property-write, __ez_dims) codingshiksha.com##+js(set-constant, __ez_dims, '') codingshiksha.com##+js(set-constant, _ezaq, '') !||codingshiksha.com/ezoic/anchorfix.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||codingshiksha.com/ezoic/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css codingshiksha.com##^script:has-text(googletag) codingshiksha.com##+js(remove-node-text, script, /googletag/gm) ||codingshiksha.com/wp-content/uploads/himbzrqp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css codingshiksha.com##+js(abort-on-property-read, ad_position_id) codingshiksha.com##+js(abort-on-property-write, ad_position_id) codingshiksha.com##+js(abort-on-property-read, adUnitName) codingshiksha.com##+js(abort-on-property-write, adUnitName) codingshiksha.com##+js(set-constant, ad_position_id, 0) codingshiksha.com##+js(set-constant, adUnitName, '') codingshiksha.com##+js(abort-on-property-read, ezouid) codingshiksha.com##+js(abort-on-property-write, ezouid) codingshiksha.com##+js(set-constant, ezouid, 0) codingshiksha.com##aside[class*="widget_admania_sticky_widgets"]:remove() codingshiksha.com##aside[class*="admania_sidebarsticky"]:remove() !codingshiksha.com##ins[class="adsbygoogle ezfound"]:remove() codingshiksha.com##ins[class^="adsbygoogle"]:remove() livebook.manning.com##+js(set-constant, count, 1000) livebook.manning.com##*[id^="paywall-login"]:remove() livebook.manning.com##div[class*="inline-promo-container"]:remove() livebook.manning.com##div[class*="subscriptions-inline-banner"]:remove() devcenter.heroku.com##div[id="heroku-cookie-banner"]:remove() devcenter.heroku.com##div[class="heroku-cookie-banner"]:remove() www.theserverside.com##div[class="ad-wrapper ad-embedded"]:remove() www.theserverside.com##div[class="ad ad-mu"]:remove() www.sciencealert.com##.right-column-ads:remove() www.sciencealert.com##^script:has-text(GoogleAnalytics):remove() www.sciencealert.com##+js(remove-node-text, script, /GoogleAnalytics/gm) www.sciencealert.com##^script:has-text(adunit):remove() www.sciencealert.com##+js(remove-node-text, script, /adunit/gm) www.sciencealert.com##+js(remove-node-text, script, /_taboola\.push\(/gm) www.sciencealert.com##+js(remove-node-text, script, /tmntag\.adTag\(/gm) www.sciencealert.com##+js(remove-node-text, script, /tmntag\.cmd\.push\(/gm) www.sciencealert.com##+js(remove-node-text, script, /var ad_variant/gm) www.sciencealert.com##+js(remove-node-text, script, /var ad_variant/gm) www.sciencealert.com##+js(remove-node-text, script, /window\.bordeaux\.cmd\.push\(/gm) www.sciencealert.com##+js(set-constant, window.bordeaux.setDelayedIncrementalAds, noopFunc, complete) www.sciencealert.com##+js(abort-on-property-read, tmntag) www.sciencealert.com##+js(abort-on-property-write, tmntag) www.sciencealert.com##+js(abort-on-property-read, ad_variant) www.sciencealert.com##+js(abort-on-property-write, ad_variant) www.sciencealert.com##div[class="trendmd-widget-cookie-notification"]:remove() !www.sciencealert.com##div[class="priad-1"]:remove() !www.sciencealert.com##div[class="priad-mobile-spacer"]:remove() www.sciencealert.com##div[class^="priad"]:remove() www.sciencealert.com##div[class^="sticky-ad"]:remove() www.sciencealert.com##div[class*="ad-slot"]:remove() www.sciencealert.com##div[id^="Purch_Y_L_1_"]:remove() www.sciencealert.com##div[id^="Purch_Y_C_0_"]:remove() www.sciencealert.com##div[id^="Purch_D_R_0_"]:remove() www.sciencealert.com##div[style="margin:20px 0;height:250px;text-align:center;"]:has(div[id^="Purch_Y_C_0_1"]):remove() www.sciencealert.com##span[class*="ad-desktop"]:remove() www.sciencealert.com##iframe[name]:matches-attr(name=/^__\S+Locator$/):remove() www.sciencealert.com##script[id="gcs-js-js"]:remove() ||www.medtargetsystem.com/beacon/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.profitabletrustednetwork.com^* ||furricity-nursubaru.xyz^* ||tracking.wpnetwork.eu^* ||www.americascardroom.eu/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www1.uploadship.com/dropapk.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.lifewire.com##div[class*="mntl-flexible-ad"]:remove() www.lifewire.com##div[class*="mntl-gpt-adunit"]:remove() !www.lifewire.com##div[class*="gpt"]:remove() store.substance3d.com##div[id="bannerCookie"]:remove() www.perlego.com##div[aria-label="cookie banner"]:remove() www.upload-4ever.com##+js(set-constant, remaining, 0) www.upload-4ever.com##+js(set-constant, timeout, 0) www.upload-4ever.com###downloadbtn:remove-attr(disabled) www.upload-4ever.com##button[id="downloadbtn"]:style(display:block !important;) ebookreader.best##div[id="cookieNotice"]:remove() bbooks.info##div[class*="cookiealert"]:remove() ||stawhoph.com^* ||dan.coursebook.me/js/parking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css paidshitforfree.com##^script:has-text(window.open):remove() paidshitforfree.com##+js(remove-node-text, script, /window\.open/gm) paidshitforfree.com##^script:has-text(JSON.parse):remove() paidshitforfree.com##+js(remove-node-text, script, /JSON\.parse/gm) paidshitforfree.com##^script:has-text(atob):remove() paidshitforfree.com##+js(remove-node-text, script, /atob\(/gm) ||paidshitforfree.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||neegreez.com^* ||olouphoo.com^* ||zuphaims.com^* ||soshoord.com^* ||ox-d.bannertrack.net^* ||ads-a.juicyads.com^* ||adserver.juicyads.com^* !||ck.juicyads.com/getjuicy.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ck.juicyads.com^* !||js.juicyads.com/jam_min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||js.juicyads.com/jp.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||js.juicyads.com^* ||juicyads.com^* ||xapi.juicyads.com^* ||adserver-2084671375.us-east-1.elb.amazonaws.com^* ||popcashjs.b-cdn.net^* ||serve.adnetasia.com^* ||serve.bannertrack.net^* ||www.gadgethacks.com/ajax/keepalive/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cds.s5x3j6q5.hwcdn.net/* !prevents surverys from working sanfrancisco.cbslocal.com##div[class="cps-banner cps-container"]:remove() sanfrancisco.cbslocal.com##div[class="cps-content"]:remove() ||d13pxqgp3ixdbh.cloudfront.net/assets/content_lockers/block.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css krembol.ga##+js(set-constant, logged_impression, true) ||yts.mx/y_is_ad.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ahedsply.com^* ||onesaimdew.com^* www.westerndigital.com##div[id="truste-consent-content"]:remove() ||privatedownload258.club^* stfly.me##div[class="banner banner-336x280"]:remove() stfly.me###go-submit:remove-attr(disabled) ||stfly.me/links/popad$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css stfly.me##input[name="pop_ad"]:remove() stfly.me##div[class="ad-banner"]:remove() ||stfly.me/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||kiynew.com^* ||www.gadgethacks.com/ajax/checkforhpupdates/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||eu.postbacks.net/log?action=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||eu.postbacks.net^* ||sestewithi.pro^* ||www.elegantthemes.com/affiliates/idevaffiliate.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.elegantthemes.com/js/intersectional-observer.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.elegantthemes.com/js/cookie-consent.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||widget.trustpilot.com/stats/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||widget.trustpilot.com/trustbox-data/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tokeephealthy.com^* ||www.vjkjjhbi.com^* ||vjkjjhbi.com^* ||www.jcwuzktevijp.com^* ||eetyed.com^* ||www.jggqgavrqkudu.com^* ||jggqgavrqkudu.com^* !||d11enq2rymy0yl.cloudfront.net/base.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d11enq2rymy0yl.cloudfront.net^* get-to.link##^script:has-text(window.open):remove() get-to.link##+js(remove-node-text, script, /window\.open/gm) get-to.link##+js(set-constant, ai_js_code, false) get-to.link##^script:has-text(ai_adb_process_blocks):remove() get-to.link##+js(remove-node-text, script, /ai_adb_process_blocks/gm) null-byte.wonderhowto.com##:xpath(//script[contains(text(), 'w.top.location.replace')]):remove() null-byte.wonderhowto.com##^script:has-text(w.top.location.replace):remove() null-byte.wonderhowto.com##^script:has-text(window.rxMatchDomain):remove() ||www.countok.de/cgi-bin/cnt.pl$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.onworks.net##*[class*="eupopup-"]:remove() monitorsanywhere.com##div[id="cookie-notice"]:remove() www.splashtop.com##div[id="cookie-notice"]:remove() www.mirroring360.com##div[id="cookie-notice"]:remove() es.happymoddownload.com##.ad-wap:remove() www.happymoddownload.com##div[class="ad-wap"]:remove() www.happymoddownload.com##div[class="pdt_ad"]:remove() www.happymoddownload.com##ins[class="adsbygoogle"]:remove() ||good785nounweek.live^* wonderhowto.com##*[class="lockable-ad-container"]:remove() wonderhowto.com##*[class="unlocked-ad-container"]:remove() ||pateablyace.com^* ||shaidolt.com^* ||waisheph.com^* ||grairsoa.com^* ||ograuwih.com^* triviaboss.com##.game-right-rail-ad-label:remove() autosoft-forum.com##li[class*="notice--cookie"]:remove() ||gadsabs.com^* ||mediasama.com^* ||nationsflushedoccasionally.com^* filesupload.org##div[class*="cookiealert"]:remove() ||filesupload.org/themes/spirit/assets/frontend/js/cookiealert.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css wonderhowto.com##div[class^="ytp-ad-persistent-progress-bar"]:remove() !||img.wonderhowto.com/js/go.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||gstaticadssl.l.google.com/* !blocks fonts webbrowsertools.com##div[id="euconsent"]:remove() webbrowsertools.com##div[class="consent"]:remove() webbrowsertools.com##ins[class="adsbygoogle"]:remove() webbrowsertools.com##^script:has-text(adsbygoogle):remove() webbrowsertools.com##+js(remove-node-text, script, /adsbygoogle/gm) !||www.tm.a.prd.aadg.trafficmanager.net/* !blocks personal Microsoft account Hotmail login; host file can still block it. ||api-v2.soundcloud.com/audio-ads$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||delivery-cdn-cf.adswizz.com^* ||reporting.deliveryengine.adswizz.com^* ||promoted.soundcloud.com/event?z=pandora-audio-ad-web-api-v2$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||soundcloud-pax.pandora.com/haymaker/api/v1/tracking-event/impression$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||example707discusswide.live^* ||zoneofthebest.com^* ||2.informistio.com^* ||1.informistio.com^* ||0.informistio.com^* ||workerz1.com^* ||key.realbest.club^* www.ezcast.com##div[id="cookie_noti"]:remove() ||www.ezcast.com/assets/js/cookie.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css drivers.softpedia.com##div[id="cookienotif"]:remove() !drivers.softpedia.com##div[class="ad adl ad-970x90"] !drivers.softpedia.com##div[class="ad ad-970"] drivers.softpedia.com##div[class*="ad-970"]:remove() drivers.softpedia.com##div[class="ad ad-300x600 posrel"]:remove() !drivers.softpedia.com##div[class="mgbot_20 mgtop_20 mgleft_40 ad adhc ad-728x90"] drivers.softpedia.com##div[class*="ad adhc ad-728x90"]:remove() !drivers.softpedia.com##div[class*="ad adwblue ad-300x250"] drivers.softpedia.com##div[class*="ad adwblue ad-"]:remove() uploadfree.info###at-btn-download:remove-attr(disabled) ||uploadfree.info/assets/js/download.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css apkmaza.net##div[id="banner-advert-container"]:remove() apkmaza.net##img[id="ai-adb-adnxs"]:remove() ! TODO: ^script doesn't work with attributes since checked before DOM created? apkmaza.net##script[id="ai-adb-mn"]:remove() ||apkmaza.net/wp-content/plugins/ad-inserter/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css apkmaza.net##^script:has-text(ai_adb_) apkmaza.net##+js(remove-node-text, script, /ai_adb_/gm) !apkmaza.net##+js(set-constant, ai_adb_active, 0) !apkmaza.net##+js(set-constant, ai_adb_overlay, NULL) !apkmaza.net##+js(set-constant, ai_adb_message_window, NULL) luckymodapk.com##div[class="ad-wap"]:remove() luckymodapk.com##div[id="pdt_ad"]:remove() luckymodapk.com##ins[class="adsbygoogle"]:remove() upload.ac##ins[id="chkIsAdd"]:remove() upload.ac##button[id="downloadBtnClick"]:remove() upload.ac##button[id="downloadbtn"]:style(display: block !important;) upload.ac##[id="downloadbtn"]:style(display: block !important;) upload.ac##+js(remove-attr.js, checked, #chkIsAdd, stay) upload.ac##input[id="addLinkBtn"]:remove() !upload.ac##+js(set-constant, document.querySelector("#addLinkBtn").value, "") upload.ac##+js(set-attr, #addLinkBtn, value, '') !upload.ac###addLinkBtn:remove-attr(value) ||upload.ac/js/countdown.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css upload.ac##^script:has-text(#downloadBtnClick):remove() upload.ac##+js(remove-node-text, script, /#downloadBtnClick/gm) ||sobertransfer.xyz^* ||ahaumplab.com^* ||apkmagic.com.ar/wp-content/uploads/2021/02/05/downloadbutton.png$image ||plus.tubroaffs.org^* z3x-team.com##section[class="cookie-bottom"]:remove() !||www.techeligible.com/cdn-cgi/apps/head/6GCD7YbiNhC9SEuJhhbqqlOmGBc.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.techeligible.com/cdn-cgi/apps/body/-6q6Gdnftl_0r-eQG1LM7IYjBe0.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.techeligible.com/wp-content/uploads/siteground-optimizer-assets/mobmenujs.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.techeligible.com/wp-content/uploads/siteground-optimizer-assets/siteground-optimizer-combined-js-bc5941b8d163f6f7ddf4bb8ee746cc76.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !blocks images in addition to the context menu !www.techeligible.com##+js(aopr, advanced_ads_ready) !prevents all images from loading ! TODO: ^script doesn't work with attributes since checked before DOM created? www.techeligible.com##script[id="advanced-ads-advanced-js-js-extra"]:remove() www.techeligible.com##script[id="wpcp_css_disable_selection"]:remove() www.techeligible.com##script[data-ad-client]:remove() www.techeligible.com##ins[class="adsbygoogle"]:remove() www.techeligible.com##^script:has-text(adsbygoogle):remove() www.techeligible.com##+js(remove-node-text, script, /adsbygoogle/gm) ! The following rule prevents context menu disabling. www.techeligible.com##+js(aopr, document.oncontextmenu) !prevents disabling enter key and shortcut to developer tools www.techeligible.com##+js(aopr, document.onkeydown) !prevents disabling copy on IE www.techeligible.com##+js(aopr, document.onselectstart) !prevents disabling copy on other web browsers but does not work. www.techeligible.com##+js(aopr, document.onmousedown) www.bt.com##div[class^="cookie-ui"]:remove() www.4gapn.com##amp-user-notification[id="amp-user-notification1"]:remove() ||watch-video.net^* ||osxdaily.com/xmlrpc.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.osxdaily.com/wp-content/plugins/cookie-notice/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! TODO: ^script doesn't work with attributes since checked before DOM created? !osxdaily.com##script[id="cookie-notice-front-js-extra"]:remove() osxdaily.com##script[id^="cookie-notice-front-js"]:remove() osxdaily.com##ins[class="adsbygoogle"]:remove() osxdaily.com##+js(aopr, adsbygoogle) osxdaily.com##+js(aopw, adsbygoogle) osxdaily.com##div[id="cookie-notice"]:remove() osxdaily.com##div[id="bsap_1278263"]:remove() ||tags.expo9.exponential.com^* www.rcrwireless.com##div[id="branda-cookie-notice"] www.rcrwireless.com##div[class="cookie-notice-container"] www.rcrwireless.com##li[id^="bunyad_ads_widget-"] !||stats.wpmucdn.com/analytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stats.wpmucdn.com^* ||stats-juc1ugur1qwqqqo4.stackpathdns.com^* !||melvingarner.xyz/* !blocks video player ||plantdigestion.com^* sourceforge.net###openx_5772_wrapped.ox:remove() sourceforge.net##a[id="main-nav-badge-link"][data-label="BrightData"]:remove() sourceforge.net##body[class*="has-ads"]:remove-class(has-ads) sourceforge.net##+js(remove-class, has-ads, body[class*="has-ads"]) sourceforge.net##div[id="dlp-voip-quote"]:remove() sourceforge.net##div[id="leadform"]:remove() sourceforge.net##div[id^="div-gpt-ad-"]:remove() sourceforge.net##div[data-id^="div-gpt-ad-"]:remove() sourceforge.net##div[id="banner-sterling"]:remove() sourceforge.net##iframe[id="frame-zone-outbound"]:remove() sourceforge.net##script[id="pbjs_script"]:remove() sourceforge.net##+js(aeld, AcceptableAdsInit) sourceforge.net##+js(aeld, impressionViewable) sourceforge.net##+js(trusted-replace-node-text, script, /SF\.Ads\.acceptable_ads_active\s?=\s?true/gm, SF.Ads.acceptable_ads_active = false) sourceforge.net##+js(set-constant, SF.Ads.acceptable_ads_active, false, complete) sourceforge.net##+js(remove-node-text, script, /bizx\.cmp\.ifConsent\(/gm) sourceforge.net##+js(remove-node-text, script, /SF\.Ads\.prebidUnits\.push\(thisUnit\);/gm) sourceforge.net##+js(trusted-replace-node-text, script, /SF\.Ads\.prebidUnits\.push\(thisUnit\);/gm, null;) sourceforge.net##+js(abort-on-property-read, SF.Ads.prebidOptions) sourceforge.net##+js(abort-on-property-write, SF.Ads.prebidOptions) sourceforge.net##+js(abort-on-property-read, SF.Ads.prebidAdjustments) sourceforge.net##+js(abort-on-property-write, SF.Ads.prebidAdjustments) sourceforge.net##+js(trusted-replace-node-text, script, /googletag\.enableServices\(\);/gm, null;) sourceforge.net##+js(trusted-replace-node-text, script, /gptadslots\.push\(thisSlot\);/gm, null;) sourceforge.net##+js(trusted-replace-node-text, script, /SF\.Ads\.usePrebid\s?=\s?true/gm, SF.Ads.usePrebid = false) sourceforge.net##+js(trusted-replace-node-text, script, /if\s?\(window\.bizxPrebid\)/gm, if (null)) sourceforge.net##+js(trusted-replace-node-text, script, /window\.bizxPrebid\.Ads\.initPrebid\(window\.bizxPrebid\.adUnits\);/gm, null;) sourceforge.net##+js(trusted-replace-node-text, script, /SF\.adblock\s?=\s?true;/gm, SF.adblock = false;) sourceforge.net##+js(set-constant, SF.adblock, false, complete) sourceforge.net##+js(remove-node-text, script, /_paq\.push\(\[/gm) sourceforge.net##+js(remove-node-text, script, /googletag\.cmd\.push\(/gm) sourceforge.net##+js(remove-node-text, script, /gptadRenderers\[['"]SF_/gm) sourceforge.net##+js(trusted-replace-node-text, script, /_paq\.push\(/gm, console.log() sourceforge.net##+js(trusted-replace-node-text, script, /gptadRenderers\[['"]\w+['"]\]\(\);/gm, null;) sourceforge.net##+js(trusted-replace-node-text, script, /if\s?\(!SF\.adblock\)/gm, if (null)) sourceforge.net##+js(remove-node-text, script, /bizx\.cmp\.ifConsent\(\{\s?purposes:\s?['"]ads['"]\,\s?vendors:\s?['"]adshield['"]\}/gm) sourceforge.net##+js(remove-node-text, script, /bizx\.cmp\.ifConsent\(\{\s?purposes:\s?['"]all['"]\,\s?vendors:\s?['"](google\-ads|6sense|bombora)['"]\}/gm) sourceforge.net##+js(remove-node-text, script, /bizx\.cmp\.ifConsent\(''\,\s?\['all'\]\,\s?function\s?\(\)/gm) sourceforge.net##+js(remove-node-text, script, /gtag\(['"]config|event['"]/gm) sourceforge.net##+js(remove-node-text, script, /mltag(\.src)?\s?=/gm) sourceforge.net##+js(remove-node-text, script, /bizx\.cmp\.trackingPixel\(/gm) sourceforge.net##+js(remove-node-text, script, /SF\.wireOutboundZoneTrackingComplete/gm) sourceforge.net##+js(set-constant, initPiwik, noopFunc) ! TODO: Use a delay of 60 seconds (60000) in the following rule instead? !sourceforge.net##+js(trusted-replace-node-text, script, /SF\.downloadRedirectDelay\s?=\s?\d+;/gm, SF.downloadRedirectDelay = 0;) sourceforge.net##+js(trusted-replace-node-text, script, /SF\.downloadRedirectDelay\s?=\s?\d+;/gm, SF.downloadRedirectDelay = 60000;) sourceforge.net##+js(trusted-replace-node-text, script, /"noCountDown":\s?false/gm, "noCountDown":true) ! downloadDelay cannot be 0 in the following rule or it uses the normal value of 5000 (5 seconds). sourceforge.net##+js(trusted-replace-node-text, script, /"downloadDelay":\s?\d+/gm, "downloadDelay":1) ||sourceforge.net/cdn/con/img/ad.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sourceforge.net/logjs$xhr,method=post ||sourceforge.net/log/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||sourceforge.net/static/ads/iframe_ad.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sourceforge.net/static/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.fsdn.com/con/js/adframe.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.fsdn.com/con/js/adframetop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.fsdn.com/con/js/adpopup.js?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.fsdn.com/sd/js/scripts/adsbanner.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.fsdn.com/con/js/sftheme/vendor/bizx-prebid.js?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !dailyuploads.net##iframe:remove() dailyuploads.net###dlink:remove() dailyuploads.net##.ziggy_763505:remove() dailyuploads.net##button[class="downloadbtn"]:remove-attr(disabled) ! The following rule isn't necessary if the click event on this button is not suppressed. dailyuploads.net##+js(trusted-set-attr, button[id="downloadbtn"], type, submit) dailyuploads.net##+js(remove-attr, disabled, button[class="downloadbtn"]) dailyuploads.net##+js(set-constant, remaining, 0) ! adEnable must be true in the following rule to skip opening a popup ad. dailyuploads.net##+js(set-constant, adEnable, true) dailyuploads.net##+js(trusted-replace-node-text, script, /adEnable\s?=\s?false;/gm, adEnable = true;) dailyuploads.net##+js(trusted-replace-node-text, script, /if\s?\(count\s?\>=\s?popup)/gm, if (true)) dailyuploads.net##+js(set-constant, count, 2) ! Do NOT set the following rule to "return" as it will prevent the click event from submitting the form unless the button type has been changed to "submit". dailyuploads.net##+js(trusted-replace-node-text, script, /e\.preventDefault\(\);/gm, null;) !dailyuploads.net##+js(trusted-replace-node-text, script, /window\.open\(artvideovr\);/gm, null;) dailyuploads.net##+js(trusted-replace-node-text, script, /window\.open\(artvideovr\);/gm, "") !dailyuploads.net##button[id="downloadBtnClick"] !Removed since the script to hide this button is disabled. dailyuploads.net##button[id="downloadBtnClick"]:remove() dailyuploads.net##button[id="downloadBtnClickOrignal"]:style(display: block !important;) dailyuploads.net##button[class*="button-"][data-user="518"]:remove() dailyuploads.net##div[id="addLinkBtn"]:remove() ! TODO: set value to 0 instead of removing input[id="adblock_detected"]? !dailyuploads.net##input[id="adblock_detected"]:remove() dailyuploads.net##+js(trusted-set-attr, input[id="adblock_detected"], value, 0) dailyuploads.net##input[id="chkIsAdd"]:remove() dailyuploads.net##+js(remove-attr, checked, #chkIsAdd, stay) dailyuploads.net##input[type="hidden"][id="addLinkBtn"][value="#"][class="sufyan"]:remove() dailyuploads.net##input[value^="Download From Server"]:remove() dailyuploads.net##script[id="aclib"]:remove() dailyuploads.net##+js(remove-node-text, script, /var artvideovr\s?=/gm) dailyuploads.net##+js(set-constant, artvideovr, "") dailyuploads.net##+js(abort-current-script, zfgloadedpopup) dailyuploads.net##+js(abort-current-script, zfgloadedpushopt) dailyuploads.net##+js(abort-current-script, {"adblock":{},"excludes":""}) dailyuploads.net##+js(abort-on-property-read, hs) dailyuploads.net##+js(abort-on-property-read, openlink) dailyuploads.net##+js(abort-on-property-read, zfgloadedpopup) dailyuploads.net##+js(abort-on-property-read, zfgloadedpushopt) dailyuploads.net##+js(abort-on-property-write, hs) dailyuploads.net##+js(abort-on-property-write, openlink) dailyuploads.net##+js(abort-on-property-write, zfgloadedpopup) dailyuploads.net##+js(abort-on-property-write, zfgloadedpushopt) dailyuploads.net##+js(abort-on-property-read, _gaq) dailyuploads.net##+js(abort-on-property-write, _gaq) dailyuploads.net##+js(acs, /aclib\.runPop\(/) dailyuploads.net##+js(remove-node-text, script, /aclib\.runPop/gm) !dailyuploads.net##^script:has-text(#downloadBtnClickOrignal):remove() !dailyuploads.net##+js(remove-node-text, script, /#downloadBtnClickOrignal/gm) dailyuploads.net##^script:has-text(#downloadBtnClick):remove() dailyuploads.net##+js(remove-node-text, script, /#downloadBtnClick/gm) dailyuploads.net##^script:has-text(#addLinkBtn):remove() dailyuploads.net##+js(remove-node-text, script, /#addLinkBtn/gm) !dailyuploads.net##^script:has-text(/document\.createElement\('script'\)/):remove() dailyuploads.net##^script:has-text(document.createElement):remove() dailyuploads.net##+js(remove-node-text, script, /document\.createElement/gm) dailyuploads.net##^script:has-text(.hide) dailyuploads.net##+js(remove-node-text, script, /\.hide/gm) dailyuploads.net##^script:has-text(adsbygoogle) dailyuploads.net##+js(remove-node-text, script, /adsbygoogle/gm) dailyuploads.net##^script:has-text(player_ads) dailyuploads.net##+js(remove-node-text, script, /player_ads/gm) dailyuploads.net##^script:has-text(player_start) dailyuploads.net##+js(remove-node-text, script, /player_start/gm) ||dailyuploads.net/images/downredd.png$image ||dailyuploads.net/images/gbinsta.jpg$image !||dailyuploads.net/images/redbutton.png$image ||dailyuploads.net/images/redbuttonx.png$image ||dailyuploads.net/pop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dailyuploads.net/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dailyuploads.net/js/countdown.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||dailyuploads.net/mega.css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css *$3p,xhr,method=post|options,domain=dailyuploads.net *$3p,popup,domain=dailyuploads.net ! TODO: using the following rule doesn't block popups from about:blank !/^https?:\/\/(?!-)[A-Za-z0-9-]+([\-\.]{1}[A-Za-z0-9]+)*\.[A-Za-z]{2,6}\/?\S*/$3p,popup,domain=dailyuploads.net zamunda.net##div[class^="gdprcookie"]:remove() ||advertere.zamunda.net^* ||o.actio.systems^* ! TODO: ^script doesn't work with attributes since checked before DOM created? www.programmers-books.com##script[id='adunblocker-js-extra']:remove() www.programmers-books.com##script[data-rocketlazyloadscript]:remove() www.programmers-books.com##ins[class="adsbygoogle"]:remove() www.programmers-books.com##^script:has-text(adsbygoogle) www.programmers-books.com##+js(remove-node-text, script, /adsbygoogle/gm) ||www.programmers-books.com/wp-content/plugins/cookie-notice/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.programmers-books.com##div[id="cookie-notice"]:remove() www.programmers-books.com##div[id="bvcdksg-blanket"]:remove() !||www.programmers-books.com/wp-content/cache/min/1/wp-content/uploads/bvcdksg-7e87d80a9f74c7ae659b23efd96f778b.css* !contains css to disable scrolling and adblock overlay ||www.programmers-books.com/wp-content/cache/min/1/wp-content/uploads/bvcdksg-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css.css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||player-telemetry.vimeo.com/player-events/log/partial$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||player-telemetry.vimeo.com^* ||ads.golem.de^* ||cilcountee.top^* ||ssaffortyya.club^* ||annelinterv.fun^* ||meetsourhig.biz^* ||d1ac2du043ydir.cloudfront.net^* ||www.vffvtxcykog.com^* !||o.wowreality.info/api/log/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||o.wowreality.info^* ||eu.rollserver.xyz^* ||eu.pushmeup.art/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.rollserver.xyz/creatives/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.rollserver.xyz^* !||p232207.mycdn.co/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||p232207.mycdn.co/script/rhpop_80.2-1.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||p232207.mycdn.co^* !||p232207.infopicked.com/adServe/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||p232207.infopicked.com^* !||fikri-ayo.com/imp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fikri-ayo.com^* !||server3.kproxy.com/servlet/redirect.srv/sruj/smovovddvea/p2/adServe/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||server8.kproxy.com/servlet/redirect.srv/sruj/sndtexzr/s702232m/p1/adServe/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||kproxy.com/servlet/redirect.srv/sruj/*/adServe/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||server8.kproxy.com/servlet/redirect.srv/sruj/snbltfmefzr/s05stu/p2/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||kproxy.com/servlet/redirect.srv/sruj/*/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||server8.kproxy.com/servlet/redirect.srv/sruj/snbltfmefzr/s05stu/p2/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||kproxy.com/servlet/redirect.srv/sruj/*/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||server8.kproxy.com/servlet/redirect.srv/syku/sboptpidb/p1/apu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||kproxy.com/servlet/redirect.srv/*/apu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||server8.kproxy.com/servlet/redirect.srv/sruj/stmtxpbdnre/sqrs/p1/a/display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||kproxy.com/servlet/redirect.srv/*/a/display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !server8.kproxy.com##div[class="center_ad"]:remove() kproxy.com##div[class="center_ad"]:remove() kproxy.com##^script:has-text(/ADBI_BANNER_/) kproxy.com##+js(remove-node-text, script, /ADBI_BANNER_/gm) www.kproxy.com##+js(abort-on-property-read, gaJsHost) www.kproxy.com##+js(abort-on-property-write, gaJsHost) www.kproxy.com##+js(abort-on-property-read, pageTracker) www.kproxy.com##+js(abort-on-property-write, pageTracker) www.download3k.es##div[class^="cc_banner"]:remove() ||tj1hkck686s4pw4j0ycd2baxy9.xyz^* netu.io,netu.tv##div[class^="eupopup-"]:remove() ||netu.io/js/jquery-eu-cookie-law-popup.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||netu.tv/js/jquery-eu-cookie-law-popup.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||netu.io/js/netu_counters.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||netu.tv/js/netu_counters.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fontfewer.com^* ||nfqglptm47uc.com^* ||moderatewaterproof.com^* ||www.ivfihumeajjmbc.com^* ||www.sqhneencmysrk.com^* ||mustardlearnfourteenth.com^* ||cdn.yourwebbars.com^* ||providentsopport.site^* ||aheadmachine.com^* www.linuxtechi.com##span[class*="ezoic-ad"]:remove() www.linuxtechi.com##span[id^="div-gpt-ad-"]:remove() ||fiefionfortes.casa^* ||soil26tripdeep.live^* ||best-winnerspace1.life^* ||instrument89latescience.live^* www.fossmint.com##div[class="addisclaimer"]:remove() techseize.com##div[id="cookie-notice"]:remove() mashtips.com##ins[class="adsbygoogle"]:remove() exe.app##div[id="adb_detected"]:remove() exe.app##div[class="alert alert-danger"]:remove() exe.app##div[class="adq"]:remove() exe.app##^script:has-text(/in\-page\-push\.com/) exe.app##+js(remove-node-text, script, /in\-page\-push\.com/gm) exe.app##^script:has-text(/zunsoach\.com/) exe.app##+js(remove-node-text, script, /zunsoach\.com/gm) exe.app##^script:has-text(/__CF\$cv\$params/) exe.app##+js(remove-node-text, script, /__CF\$cv\$params/gm) exe.app##^script:has-text(/adb_detected/) exe.app##+js(remove-node-text, script, /adb_detected/gm) exe.app##^script:has-text(/JSON\.parse\(atob\(/) exe.app##+js(remove-node-text, script, /JSON\.parse\(atob\(/gm) exe.app##+js(abort-on-property-read, fuckAdBlock) exe.app##+js(abort-on-property-write, fuckAdBlock) exe.app##+js(abort-on-property-read, importFAB) exe.app##+js(abort-on-property-write, importFAB) exe.app###go-submit:remove-class(d-none) !exe.app##+js(remove-attr, class, #go-submit, stay) exe.app##+js(remove-class, disabled, , stay) exe.app##iframe[style*="display: none;"] ||venuegirtjive.com^* ||cubanetestoon.com^* !||exe.app/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||exe.app/cdn-cgi/bm/cv/669835187/api.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||exe.app/vulaj_theme/js/vendor/popper.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||exe.app/vulaj_theme/js/vendor/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||geruksom.net/custom.json$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||geruksom.net^* ||worersie.com^* ||enviousfundraiserbelonged.com^* ||kbyfbw6aaada.com^* www.gearpatrol.com##div[class^="leaderboard-ad"] www.gearpatrol.com##div[class^="oop-ad"] www.gearpatrol.com##div[class="ad-container"] www.gearpatrol.com##div[id^="gpt-ad-"] !nitroflare.com##+js(set-constant, timerSeconds, 1) nitroflare.com##+js(set-constant, total, 1) nitroflare.com##+js(alert-buster.js) nitroflare.com##+js(remove-attr, disabled, #sendReCaptcha, stay) !rapidgator.net##+js(set-constant, secs, 0) !rapidgator.net##+js(set-constant, timetogo, 0) !rapidgator.net##a[class="link act-link btn-free"]:style(display: inline !important;) !rapidgator.net##+js(nano-stb) !rapidgator.net##+js(set-constant, timer, 0) !rapidgator.net##+js(adjust-setInterval, , *, 0.01) rapidgator.net##+js(alert-buster.js) !||discovernative.com/al/visit.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||discovernative.com/script/native.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||discovernative.com^* www.upload.ee##+js(abort-on-property-read, _smartad) www.upload.ee##+js(abort-on-property-write, _smartad) www.upload.ee##+js(abort-on-property-read, zoneNativeSett) www.upload.ee##+js(abort-on-property-write, zoneNativeSett) ||www.upload.ee/image/12985909/cbc_small.jpg$image ||www.upload.ee/image/12985918/cbb_small.jpg$image ||eergithi.com^* ||organ49changetool.live^* ||prize-winner-k1dk.live^* wiki.dd-wrt.com###ad_block !www.kongregate.com##div[class="policy-bar"] www.kongregate.com##[class^="policy-bar"] ||signal-metrics-collector-beta.s-onetag.com^* ||connect-metrics-collector.s-onetag.com^* !||signal-beacon.s-onetag.com/beacon.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||signal-beacon.s-onetag.com^* ||www.ancientfaces.org^* ||www.xbnvucutpcq.com^* ||xbnvucutpcq.com^* ||www.sebpmnltgd.com^* ||sebpmnltgd.com^* !||162.252.214.4/a.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||162.252.214.4/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||1253578754.rsc.cdn77.org^* ||1939006693.rsc.cdn77.org^* charlieintel.com##.position-sticky:remove() nitroflare.com##div[id="popupContent"]:remove() !nitroflare.com###superbox-innerbox:remove() !nitroflare.com###superbox-container:remove() nitroflare.com###superbox-overlay:remove() nitroflare.com###superbox-wrapper:remove() www.anymp4.com##div[class="usernotice_pop"]:remove() iosgods.com##^script:has-text(/GoogleAnalyticsObject/):remove() iosgods.com##+js(remove-node-text, script, /GoogleAnalyticsObject/gm) iosgods.com##div[id="iGSupport"]:remove() iosgods.com##.adsbygoogle:remove() ||authqeqbnhkdjjklumailssocl.web.app/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.filepuma.com##div[class="cookiesTip"]:remove() www.eltima.com##+js(abort-on-property-read, gdpr) www.eltima.com##+js(abort-on-property-write, gdpr) sken.io##div[class="js-cookie-consent cookie-consent"]:remove() sken.io##+js(abort-on-property-read, window.laravelCookieConsent) sken.io##+js(abort-on-property-write, window.laravelCookieConsent) ||erdecisesgeorg.info^* pagescreen.io##div[id="cookie-consent"]:remove() pagescreen.io##div[aria-label="cookieconsent"]:remove() ||onbrowse.io/tracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css onwebchange.com##div[class="cookie_bg"]:remove() onwebchange.com##div[class="cookie_banner"]:remove() www.islonline.com##iframe[id="net_cookie_law_setter"]:remove() www.islonline.com##div[class="cookie-warning"]:remove() www.redmondpie.com##div[id^="div-gpt-ad-"]:remove() ||excelab.info^* ||jayler.info^* ||trollhost.xyz^* serialsofts.com##a[href*="//trollhost.xyz"]:remove() ||getfileslic.site^* ||sonsuziptv.net/resimler/sonsuzresim02.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.mrmgiyim.com/resimler/mrmgiyimresim.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wcm-ru.frontend.weborama.fr/fcgi-bin/dispatch.fcgi$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css 4pda.ru##img[src*="//wcm-ru.frontend.weborama.fr/fcgi-bin/dispatch.fcgi"] repo.packix.com##a[href*="//blacklivesmatters.carrd.co/"] www.topbestalternatives.com##ins[class="adsbygoogle"]:remove() ||pushpad.xyz^* ||freebitco.in/service-worker.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.addictivetips.com##div[class="mv-ad-box"] www.addictivetips.com##div[class*="adunitwrapper"] msendpointmgr.com##div[class="rcc-wrapper group"] msendpointmgr.com##li[class="sponsors-item all"] ||type48yardbase.live^* ||prize-winner-k2dk.live^* ||events.launchdarkly.com/events/diagnostic/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css windowsmatters.com###dkxqne-blanket windowsmatters.com##+js(abort-on-property-read, disableStr) windowsmatters.com##+js(abort-on-property-write, disableStr) windowsmatters.com##+js(abort-on-property-read, adsbygoogle) windowsmatters.com##+js(abort-on-property-write, adsbygoogle) windowsmatters.com##+js(abort-on-property-read, _pop) windowsmatters.com##+js(abort-on-property-write, _pop) windowsmatters.com##+js(abort-on-property-read, _stq) windowsmatters.com##+js(abort-on-property-write, _stq) windowsmatters.com##ins[class="adsbygoogle"]:remove() !windowsmatters.com##div[id="adswidget1-quick-adsense-2"]:remove() !windowsmatters.com##div[id="adswidget3-quick-adsense-2"]:remove() windowsmatters.com##div[id^="adswidget"]:remove() windowsmatters.com##span[id="adblock_screen"]:remove() windowsmatters.com##html:style(overflow: scroll !important;) !forum.acronis.com##div[class="cookies-notification-container"]:remove() forum.acronis.com##div[class^="cookies-notification"]:remove() ||sc.lfeeder.com/lftracker_v1_YEgkB8lZQKW4ep3Z.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.easyredircdn.com/analytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.easyredir.com##+js(abort-on-property-read, window.shouldEmitAnalytics) www.easyredir.com##+js(abort-on-property-write, window.shouldEmitAnalytics) www.easyredir.com##+js(abort-on-property-read, analytics) www.easyredir.com##+js(abort-on-property-write, analytics) www.easyredir.com##div[data-controller="cookiebar"]:remove() www.idownloadblog.com##span[class*="ezoic-ad"]:remove() www.idownloadblog.com##span[class*="adtester-container"]:remove() !www.idownloadblog.com##span[id="ezoic-pub-ad-placeholder-100"]:remove() www.idownloadblog.com##span[id^="ezoic-pub-ad"]:remove() myicloud.info##div[id^="eu-cookie-law"]:remove() ! TODO: ^script doesn't work with attributes since checked before DOM created? myicloud.info##script[id="eu-cookie-law-script-js"]:remove() !||myicloud.info/wp-content/plugins/wp-advertize-it/javascript/wp-advertize-it.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||myicloud.info/wp-content/plugins/wp-advertize-it/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c0.wp.com/p/jetpack/9.5/_inc/build/widgets/eu-cookie-law/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.ios-repo-updates.com##.adsbygoogle:remove() www.solidfiles.com##a[class="remove"]:remove() www.keycdn.com##div[class="cookies-warning position-fixed"]:remove() www.dropboxforum.com##div[class^="lia-cookie-banner-alert"]:remove() www.tipsandtricks-hq.com##ins[class="adsbygoogle"]:remove() www.tipsandtricks-hq.com##+js(abort-on-property-read, adsbygoogle) www.tipsandtricks-hq.com##+js(abort-on-property-write, adsbygoogle) www.inmotionhosting.com##div[id="cookies"]:remove() jailbreaknerds.com##div[id="cookie-notice"]:remove() jailbreaknerds.com##div[id="izooto-optin"]:remove() !||cdn.izooto.com/optin/1.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.izooto.com/optin/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css tech.hindustantimes.com##div[id^="div-gpt-ad"]:remove() tech.hindustantimes.com##div[class="header-ad"]:remove() www.scientificamerican.com##figure[class*="dfp-article-ad"]:remove() www.wintools.info##ins[class="adsbygoogle"]:remove() www.wintools.info##+js(abort-on-property-read, adsbygoogle) www.wintools.info##+js(abort-on-property-write, adsbygoogle) testmyinternetspeed.org##div[id="cookieConsent"]:remove() codingshiksha.com##div[id^="admania_sticky_widgets"]:remove() codingshiksha.com##div[class="admania-sidebar-sticky"]:remove() codingshiksha.com##+js(abort-on-property-read, __ez) codingshiksha.com##+js(abort-on-property-write, __ez) ||www.thehoth.com/downloads/ads2018/$image remoteripple.com##div[id="cookie-notice"]:remove() mightyviewer.com##div[id="cookie-notice"]:remove() codingshiksha.com##+js(abort-on-property-read, _ezaq) codingshiksha.com##+js(abort-on-property-write, _ezaq) snapcraft.io##div[id="cookie-policy-content"]:remove() snapcraft.io##dialog[class="cookie-policy"]:remove() get.videolan.org##div[id="uecookies"]:remove() www.iphonefaq.org##ins[class="adsbygoogle"]:remove() www.iphonefaq.org##+js(abort-on-property-read, adsbygoogle) www.iphonefaq.org##+js(abort-on-property-write, adsbygoogle) www.iphonefaq.org##div[class*="ad-amazonnative"]:remove() www.iphonefaq.org##div[id="sliding-popup"]:remove() en.aptoide.com##svg:style(overflow: scroll !important;) !en.aptoide.com##*:style(overflow: scroll !important;) !too broad !en.aptoide.com##+js(remove-class, no-scroll, html[no-scroll]) !en.aptoide.com##+js(remove-class, no-scroll, body[no-scroll]) en.aptoide.com##*[no-scroll]:remove-class(no-scroll) en.aptoide.com##+js(remove-attr, class, body[class], stay) en.aptoide.com##+js(remove-attr, class, html[class], stay) en.aptoide.com##^script:has-text(/no\-scroll/):remove() en.aptoide.com##+js(remove-node-text, script, /no\-scroll/gm) ||fifteenthfeeding.com^* ||housewifehaunted.com^* ||mangelobsolden.cam^* ||lamforsung.com^* apkonehack.com##div[id="cookie-notice"]:remove() apkboxdl.com##a[href*="//www.linkonclick.com/jump/next.php"]:remove() ||aff.marketland.me^* ||www.notorietycheerypositively.com^* androidrepublic.org##div[class="u-bottomFixer js-bottomFixTarget"]:remove() ||wikkenenwegen.hln.be/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css /^https?:\/\/(www\.)?file-upload\.(?:com|in|org|download)\/mngez\/js\/app\.js\S*/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css /^https?:\/\/(www\.)?file-upload\.(?:com|in|org|download)\/sw\.js\S*/$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css /^https?:\/\/(www\.)?file-upload\.(?:com|in|org|download)\/sw_may\.js\S*/$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css /^https?:\/\/(www\.)?file-upload\.(?:com|in|org|download)\/advertisement\.js\S*/$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css /^https?:\/\/(www\.)?file-upload\.(?:com|in|org|download)\/js\/advertisement\.js\S*/$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css /^https?:\/\/(www\.)?file-upload\.(?:com|in|org|download)\/blockadblock\.js\S*/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! Do not block the countdown script as the countdown is server-side checked. !/^https?:\/\/(www\.)?file-upload\.(?:com|in|org|download)\/countdown\.js\S*/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.file-upload.org,www.file-upload.com,www.file-upload.in,file-upload.download##div[id="dl_btn_container"]:remove-class(hide) www.file-upload.org,www.file-upload.com,www.file-upload.in,file-upload.download##+js(remove-class, hide, div[id="dl_btn_container"]) www.file-upload.org,www.file-upload.com,www.file-upload.in,file-upload.download##div[id^="ads_container_"]:remove() www.file-upload.org,www.file-upload.com,www.file-upload.in,file-upload.download##button[id="downloadbtn"]:remove-attr(onclick) www.file-upload.org,www.file-upload.com,www.file-upload.in,file-upload.download##.mnbt1.btn-primary.btn-xs.btn:remove-attr(onclick) www.file-upload.org,www.file-upload.com,www.file-upload.in,file-upload.download##div[id="vb9h7ma"]:remove() www.file-upload.org,www.file-upload.com,www.file-upload.in,file-upload.download##div[id="ldrsr3r"]:remove() www.file-upload.org,www.file-upload.com,www.file-upload.in,file-upload.download##div[id="adblockinfo"]:remove() www.file-upload.org,www.file-upload.com,www.file-upload.in,file-upload.download##div[id="bannerad"]:remove() www.file-upload.org,www.file-upload.com,www.file-upload.in,file-upload.download##button[id="downloadbtn"]:style(visibility: visible !important;) ! TODO: The following rule blocks an overlay which has a click event for ads, but the exact style attribute contents will vary in width and height values. www.file-upload.org,www.file-upload.com,www.file-upload.in,file-upload.download##div[style^="position:fixed;inset:0px;z-index:2147483647;background:black;opacity:0.01;height:"]:remove() www.file-upload.org,www.file-upload.com,www.file-upload.in,file-upload.download##+js(set-constant, timeout, noopFunc) ! can't set or redfine a function using trusted-set-constant since it is for strings and would need eval() to execute the function !www.file-upload.org,www.file-upload.com,www.file-upload.in,file-upload.download##+js(trusted-set-constant, timeout, setTimeout\(tick\, 1\)) !www.file-upload.org,www.file-upload.com,www.file-upload.in,file-upload.download##+js(trusted-set-constant, timeout, setTimeout(tick, 1)) www.file-upload.org,www.file-upload.com,www.file-upload.in,file-upload.download##+js(aeld, click, function) www.file-upload.org,www.file-upload.com,www.file-upload.in,file-upload.download##+js(set-constant, tick, 0) ! The following rule is necessary if click events are defused/suppressed. www.file-upload.org,www.file-upload.com,www.file-upload.in,file-upload.download##+js(trusted-set-attr, button[id="downloadbtn"], type, submit) www.file-upload.org,www.file-upload.com,www.file-upload.in,file-upload.download##+js(remove-attr, disabled, .downloadbtn, stay) www.file-upload.org,www.file-upload.com,www.file-upload.in,file-upload.download##+js(remove-attr, disabled, #downloadbtn, stay) www.file-upload.org,www.file-upload.com,www.file-upload.in,file-upload.download##+js(remove-attr, onclick, #downloadbtn, stay) !www.file-upload.org,www.file-upload.com,www.file-upload.in,file-upload.download##+js(no-setTimeout-if) ! This makes the countdown very quick from 10 seconds, but the server checks the time so it errors if the button is pressed too soon. www.file-upload.org,www.file-upload.com,www.file-upload.in,file-upload.download##+js(nano-stb, /.?/, 1000) www.file-upload.org,www.file-upload.com,www.file-upload.in,file-upload.download##+js(set-constant, detected, false, stay) www.file-upload.org,www.file-upload.com,www.file-upload.in,file-upload.download##+js(set-constant, BlockAdBlock, noopFunc) www.file-upload.org,www.file-upload.com,www.file-upload.in,file-upload.download##+js(set-constant, adBlockDetected, falseFunc) www.file-upload.org,www.file-upload.com,www.file-upload.in,file-upload.download##+js(set-constant, adBlockNotDetected, trueFunc) www.file-upload.org,www.file-upload.com,www.file-upload.in,file-upload.download##+js(abort-on-property-read, detected) www.file-upload.org,www.file-upload.com,www.file-upload.in,file-upload.download##+js(abort-on-property-write, detected) www.file-upload.org,www.file-upload.com,www.file-upload.in,file-upload.download##+js(set-constant, go, noopFunc) www.file-upload.org,www.file-upload.com,www.file-upload.in,file-upload.download##+js(acs, /go\(\)/) www.file-upload.org,www.file-upload.com,www.file-upload.in,file-upload.download##+js(remove-node-text, script, /window\.location = "/gm) paladinmod.com##div[id="wait-done"]:style(display: block !important; margin-top: 25px !important;) paladinmod.com##+js(remove-attr, style, #wait-done, stay) paladinmod.com##div[id="wait-me"]:remove() paladinmod.com##+js(set-constant, a, 0) paladinmod.com##^script:has-text(countdowntimer):remove() paladinmod.com##+js(remove-node-text, script, /countdowntimer/gm) jiroot.blogspot.com##div[class="banner300"]:remove() ||amanda.v4.omgtnc.com^* www.1001fonts.com##div[aria-label="cookieconsent"]:remove() www.digitalcitizen.life##div[id="wp-gdpr-cookie-notice"]:remove() www.digitalcitizen.life##div[class^="wp-gdpr-cookie-notice"]:remove() www.digitalcitizen.life##amp-ad:remove() www.digitalcitizen.life##div[class^="block--ad"]:remove() www.ghacks.net##div[class="ghacks-ad"]:remove() www.ghacks.net##div[class="rv-ad"]:remove() www.ghacks.net##div[id^="div-gpt-ad-"]:remove() www.ghacks.net##div[id^="ghacks_ad_code"]:remove() www.ghacks.net##div[id^="snhb-snhb_ghacks_top-"]:remove() www.ghacks.net##div[id^="snhb-snhb_ghacks_bottom-"]:remove() www.ghacks.net##div[id]:matches-attr(id=/^td\-incontent\-\d+__ad/):remove() www.ghacks.net##iframe[name="__tcfapiLocator"]:remove() www.ghacks.net##span[class="ad-title"]:remove() www.ghacks.net##script[id="spcloader"]:remove() www.ghacks.net##script[id="read-aloud-player-ads-script-js"]:remove() www.ghacks.net##script[class="rvloader"]:remove() www.ghacks.net##+js(remove-node-text, script, /__tcfapiLocator/gm) www.ghacks.net##+js(set-constant, window.gdprAppliesGlobally, false) www.ghacks.net##+js(remove-node-text, script, /function\s?\(f\,\s?b\,\s?e\,\s?v\,\s?n\,\s?t\,\s?s\)/gm) www.ghacks.net##+js(set-constant, fbq, noopFunc) www.ghacks.net##+js(remove-node-text, script, /revamp\.cmd\.push\(/gm) ||www.ghacks.net/wp-content/themes/new-ghacks-preview/revamp-infinite-leaderboard.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||spn-v1.revampcdn.com/prebid/ghacks/prebid-client.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||spn-v1.revampcdn.com/publishers/ghacks.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||events.newsroom.bi/ingest.php$3p,xhr,method=post ||icu.newsroom.bi/ingest.php$3p,xhr,method=post ||lbingest.cl13.k8s.mrf.io/ingest.php$3p,xhr,method=post ||lbi.cl01.k8s.mrf.io/ingest.php$3p,xhr,method=post ||notix.io/event$3p,xhr,method=post softwarerecs.stackexchange.com##div[class="adsbox"]:remove() softwarerecs.stackexchange.com##div[class*="js-consent-banner"]:remove() www.technipages.com##.entry-content > div:remove() www.technipages.com##ins[class="adsbygoogle"]:remove() www.c-sharpcorner.com##div[id="pgdg-gdpr"]:remove() www.businesswire.com##div[id="onetrust-group-container"]:remove() ubuntu.com##dialog[class="cookie-policy"]:remove() www.tipard.com##div[class="usernotice_pop"]:remove() jaanmusic.in##ins[class="adsbygoogle"]:remove() jaanmusic.in##+js(abort-on-property-read, adsbygoogle) jaanmusic.in##+js(abort-on-property-write, adsbygoogle) !jaanmusic.in##+js(abort-on-property-read, _0x3344) !jaanmusic.in##+js(abort-on-property-write, _0x3344) jaanmusic.in##div[id="alertmsg"]:remove() jaanmusic.in##+js(set-constant, datat, "") www.accuweather.com##div[class="privacy-policy-banner"]:remove() www.accuweather.com##div[class^="glacier-ad"]:remove() www.accuweather.com##div[data-ad-type]:remove() www.accuweather.com##div[id="connatix"]:remove() www.toolbox.com##div[class="adchoice-tag"]:remove() www.toolbox.com##div[id="cookie-consent"]:remove() www.toolbox.com##div[class="privacy-content"]:remove() ||www.homeyloanedmes.work^* ||www.jelabboody.com^* ||homeyloanedmes.work^* ||jelabboody.com^* !||e1f95201b19594.site/advert.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||e1f95201b19594.site^* ! TODO: The following two rules prevent the chat widget from being displayed? Not by themselves !||direct-events-collector.spot.im/api/v2/events?stream_name=init$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||direct-events-collector.spot.im^* !||events-collector.spot.im^* ||metrics-logger.spot.im^* ||traffic.spot.im^* ||spoxy-shard4.spot.im^* ||api-2-0.spot.im/v1.0.0/reactions/stats/default$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||api-2-0.spot.im/v1.0.0/config/ab_test/sp_G5HzpctU/no_post$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api-2-0.spot.im/v1.0.0/config/ab_test/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||dynamic-cdn.spot.im/yad/index.v2.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dynamic-cdn.spot.im/yad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static-cdn.spot.im/production/ads/tags/v16.4.3-1/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static-cdn.spot.im/production/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static-cdn.spot.im/production/conversation/tags/v*/ad-container-bundle.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static-cdn.spot.im/production/launcher/tags/v3.5.2/launcher/metrics-reporter-bundle.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static-cdn.spot.im/production/launcher/tags/*/launcher/metrics-reporter-bundle.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pix.spot.im/api/v1/pixels$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||publisher-assets.spot.im/yad/ad-choises.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||publisher-assets.spot.im/yad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||publisher-assets.spot.im/ad/event-tracking/pixel-ads-google-adsense.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||publisher-assets.spot.im/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||recirculation.spot.im/spot/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.spot.im/api/tracker/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.getdroidtips.com##ins[class="adsbygoogle"]:remove() www.getdroidtips.com##div[class="_ap_apex_ad"]:remove() www.getdroidtips.com##+js(abort-on-property-read, adpushup) www.getdroidtips.com##+js(abort-on-property-write, adpushup) rootmygalaxy.net##ins[class="adsbygoogle"]:remove() !rootmygalaxy.net##div[class*="quads-ad1"]:remove() rootmygalaxy.net##div[class*="quads-ad"]:remove() ||player.adtelligent.com^* ubuntuhandbook.org##ins[class="adsbygoogle"]:remove() ||cupidrecession.com^* ||declinedisobey.com^* ||check.analytics.rlcdn.com^* unix.stackexchange.com##div[class*="js-consent-banner"]:remove() !||mxuiso.com/p/waWQiOjEwNzcyNjEsInNpZCI6MTA4NTM3Miwid2lkIjoxNzQyNTksInNyYyI6Mn0=eyJ.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mxuiso.com^* !||online-fix.me/cdn-cgi/bm/cv/669835187/api.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||online-fix.me/templates/FixLand/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||online-fix.me/templates/FixLand/js/adfox/admixer.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||online-fix.me/templates/FixLand/js/adfox/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||online-fix.me/templates/FixLand/js/helpus.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !*$3p,script,denyallow=translate.googleapis.com|translate.google.com|translate-pa.googleapis.com|videoroll.net,domain=online-fix.me /^https?:\/\/(?!-)[A-Za-z0-9-]+([\-\.]{1}[A-Za-z0-9]+)*\.[A-Za-z]{2,6}\/?\S*/$3p,script,denyallow=translate.googleapis.com|translate.google.com|translate-pa.googleapis.com|videoroll.net,domain=online-fix.me !online-fix.me##div[class="flex-stretch"]:remove() online-fix.me##+js(abort-current-script, "mecash-ad") online-fix.me##+js(abort-current-script, cmod_d) online-fix.me##+js(abort-current-script, replaceWith) online-fix.me##+js(abort-current-script, helpus) online-fix.me##+js(abort-on-property-read, utarget_script) online-fix.me##+js(abort-on-property-write, utarget_script) online-fix.me##+js(abort-on-property-read, cmod_d) online-fix.me##+js(abort-on-property-write, cmod_d) online-fix.me##+js(abort-on-property-read, js) online-fix.me##+js(abort-on-property-write, js) online-fix.me##+js(set-constant, c, 0) online-fix.me##+js(set-constant, cmod_d, false) online-fix.me##+js(nano-stb, /.?/, 1000, 0.10) online-fix.me##a[href*="//softmediya.ru"]:remove() online-fix.me##div[class="right counter"]:remove() online-fix.me##div[id="loading-layer"]:remove() online-fix.me##div[class="container"]:style(height: auto !important;) !online-fix.me##div[data-mecash-adv="7850"]:remove() online-fix.me##div[data-mecash-adv]:remove() online-fix.me##div[id="contema"]:remove() !online-fix.me###gYAhMmKOSyIk:remove() online-fix.me##div[id="gYAhMmKOSyIk"]:remove() online-fix.me##div[id="helpus"]:remove() online-fix.me##div[id="vid_vpaut_div"]:remove() online-fix.me##^script:has-text(/\/counter\.yadro\.ru\//):remove() online-fix.me##+js(remove-node-text, script, /\/counter\.yadro\.ru\//gm) online-fix.me##^script:has-text(/\/mc\.yandex\.ru\//):remove() online-fix.me##+js(remove-node-text, script, /\/mc\.yandex\.ru\//gm) !online-fix.me##^script:has-text(/#helpus/):remove() online-fix.me##^script:has-text(/helpus/):remove() online-fix.me##+js(remove-node-text, script, /#helpus/gm) online-fix.me##^script:has-text(mecash-ad):remove() online-fix.me##+js(remove-node-text, script, /mecash\-ad/gm) online-fix.me##^script:has-text(/replaceWith/):remove() online-fix.me##+js(remove-node-text, script, /replaceWith/gm) online-fix.me##^script:has-text(document.createElement):remove() online-fix.me##+js(remove-node-text, script, /document\.createElement/gm) online-fix.me##^script:has-text(/\.quote/):remove() online-fix.me##+js(remove-node-text, script, /\.quote/gm) !online-fix.me##^script:has-text(/timer\(\)/):remove() !online-fix.me##^script:has-text(data:text/javascript;base64):remove() !won't work since script is decoded before being run. online-fix.me##+js(remove-node-text, script, /data\:text\/javascript;base64/gm) ! TODO: ^script doesn't work with attributes since checked before DOM created? online-fix.me##script[src^="data:text/javascript;base64"]:remove() online-fix.me##+js(addEventListener-defuser, /DOMContentLoaded/) online-fix.me##+js(abort-on-property-read, window.K3) online-fix.me##+js(abort-on-property-write, window.K3) online-fix.me##+js(abort-current-inline-script, replaceWith) !won't work since is a random string that always starts with w !online-fix.me##^script:has-text(w30718356951d090ce9e5eddfe5beed11):remove() !break too many other tags with src attributes !online-fix.me##+js(remove-attr.js, src, , stay) !works but stops Google Translate from working https://translate.googleapis.com/element/TE_20210224_00/e/js/element/element_main.js !online-fix.me##+js(no-setTimeout-if, /^/) online-fix.me##+js(no-setTimeout-if, w, !undefined) online-fix.me##+js(set-constant, gdprApplies, false) online-fix.me##+js(set-constant, uspInterval, noopFunc) online-fix.me##+js(no-setTimeout-if, uspInterval) online-fix.me##+js(set-constant, e8c43d8940_interval, noopFunc) online-fix.me##+js(no-setTimeout-if, e8c43d8940_interval) online-fix.me##+js(set-constant, e7f652f7be_interval, noopFunc) online-fix.me##+js(no-setTimeout-if, e7f652f7be_interval) online-fix.me##+js(set-constant, crWEbPushEl, noopFunc) online-fix.me##+js(abort-on-property-read, crWEbPushEl) online-fix.me##+js(abort-on-property-write, crWEbPushEl) online-fix.ne##div[class="no-pop"]:remove-attr(onclick) online-fix.ne##div[class="no-pop"]:remove-attr(onmouseup) online-fix.ne##div[class="no-pop"]:remove-attr(onmousedown) online-fix.ne##div[class="no-pop"]:remove-attr(oncontextmenu) online-fix.me##div[class="sidebar-block"]:has(font:has-text(/Adblock/i)):remove() drive.online-fix.me##.download-button:remove-attr(onclick) drive.online-fix.me##.download-button:remove-attr(disabled) drive.online-fix.me##.get-key-button:remove-attr(disabled) !drive.online-fix.me##+js(set-attr, '.download-button', disabled, false) drive.online-fix.me##+js(trusted-set-attr, .download-button, type, submit) !drive.online-fix.me##+js(set-attr, '.get-key-button', disabled, false) drive.online-fix.me##+js(set-attr, '#downloadModal', aria-hidden, false) drive.online-fix.me##div[id="downloadModal"]:remove-class(fade) drive.online-fix.me##div[id="downloadModal"]:style(display: block !important; opacity: 100 !important;) drive.online-fix.me##div[class*="swal2-popup"]:style(display: block !important; opacity: 100 !important;) drive.online-fix.me##div[class="modal-footer"]:style(display: block !important;) drive.online-fix.me##div[class="download-button"]:style(pointer-events: all !important; user-select: all !important; -moz-user-select: all !important; -webkit-user-select: all !important;) ||fluffycodepotc.com^* ||solitudeelection.com^* !||venetrigni.com/stats$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||venetrigni.com^* ||distinctcoherentmean.com^* ||trk.lemon-ade.site^* ||kodim.rdtk.io^* ||uvg0u.bemobtracks.com^* ||media.ethicalads.io^* forums.freebsd.org##.notice--cookie:remove() !www.yidio.com##div[class="ad provider question overlay"]:remove() !www.yidio.com##div[class="ad provider bullets vert"]:remove() www.yidio.com##div[class^="ad provider"]:remove() solarmovie-free.com##+js(abort-on-property-read, checkVPNads_shown) solarmovie-free.com##+js(abort-on-property-write, checkVPNads_shown) solarmovie-free.com##^script:has-text(document.addEventListener):remove() solarmovie-free.com##+js(remove-node-text, script, /document\.addEventListener/gm) solarmovie-free.com##^script:has-text(/DOMContentLoaded/):remove() solarmovie-free.com##+js(remove-node-text, script, /DOMContentLoaded/gm) ||solarmovie-free.com/addons/as6sadjhsda6dsf.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||solarmovie-free.com/addons/a7sdtasjdasdas.gif$image solarmovie-free.com###LSlijJBBZc:remove() ||www.thewatchcartoononline.tv/inc/embed/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.thewatchcartoononline.tv##+js(abort-on-property-read, cpmstar_siteskin_settings) www.thewatchcartoononline.tv##+js(abort-on-property-write, cpmstar_siteskin_settings) www.thewatchcartoononline.tv##+js(abort-on-property-read, cpmstar_rnd) www.thewatchcartoononline.tv##+js(abort-on-property-write, cpmstar_rnd) www.thewatchcartoononline.tv##+js(set-constant, isAdBlockActive, false) www.thewatchcartoononline.tv##div[class="adBanner ads.js"]:remove() ! TODO: ^script doesn't work with attributes since checked before DOM created? www.thewatchcartoononline.tv##script[src="ads.js"]:remove() ||js.gumgum.com/services.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.thewatchcartoononline.tv/inc/embed/embed.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css no-kid-hungry.prezly.com##div[class="cookie-consent-bar"]:remove() account.withings.com##div[class^="cookieBar"]:remove() ipcgames.com##div[id="catapult-cookie-bar"]:remove() ||hechcandled.casa^* ||trysprierratty.com^* coupons.cnet.com##div[data-testid="CookieBanner"]:remove() ||ads.us.e-planning.net^* ||hb.aralego.com^* ||sync.aralego.com^* www.merriam-webster.com,www.m-w.com##div[id="fixed-ad-bottom"]:remove() www.merriam-webster.com,www.m-w.com##div[id^="mw-ad-slot-"]:remove() www.merriam-webster.com,www.m-w.com##div[id="main-banner-ad-container"]:remove() www.merriam-webster.com,www.m-w.com##div[class*="mw-ad-slot-"]:remove() www.merriam-webster.com,www.m-w.com##div[class^="cafemedia-ad-slot-"]:remove() www.merriam-webster.com,www.m-w.com##div[class="flex-ad-wrapper"]:remove() www.merriam-webster.com,www.m-w.com##+js(set-constant, window.Sentry, {}) www.merriam-webster.com,www.m-w.com##+js(abort-on-property-read, googletag) www.merriam-webster.com,www.m-w.com##+js(abort-on-property-write, googletag) www.merriam-webster.com,www.m-w.com##+js(set-constant, window.disableAllAds, true) www.merriam-webster.com,www.m-w.com##+js(set-constant, window.mwdata.processAds, false, complete) www.merriam-webster.com,www.m-w.com##+js(set-constant, window.mwdata.gaNoTrackOnLoad, true, complete) www.merriam-webster.com,www.m-w.com##+js(set-constant, w.adthrive, {}) www.merriam-webster.com,www.m-w.com##+js(abort-on-property-read, w.adthrive) www.merriam-webster.com,www.m-w.com##+js(abort-on-property-write, w.adthrive) www.merriam-webster.com,www.m-w.com##+js(set-constant, plausible, noopFunc) www.merriam-webster.com,www.m-w.com##+js(set-constant, window.plausible, noopFunc) ||www.merriam-webster.com/lapi/v1/mwol-search/stats/lookup$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.merriam-webster.com/ads.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stats.merriam-webster.com^* ||telemetry.art19.com^* www.projects-software.com##div[class="cookie-box"]:remove() ! TODO: ^script doesn't work with attributes since checked before DOM created? www.projects-software.com##script[id="BorlabsCookieBoxWrap"]:remove() www.projects-software.com##div[class="BorlabsCookie"]:remove() www.chip.de##^script:has-text(/pushAdTag/):remove() www.chip.de##+js(remove-node-text, script, /pushAdTag/gm) www.chip.de##^script:has-text(/getAdTag/):remove() www.chip.de##+js(remove-node-text, script, /getAdTag/gm) www.chip.de##svg:style(overflow: scroll !important; overflow-y: scroll !important;) !||cmp.chip.de/wrapperMessagingWithoutDetection.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css prevents page scrolling from being disabled, i.e. overflow:hidden ||cmp.chip.de/wrapperMessagingWithoutDetection.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cmp.chip.de/Notice.0c5fe.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.chip.de/c1_impressum/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.blackhatworld.com/js/xf/preamble.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.blackhatworld.com##+js(abort-on-property-read, _avp) www.blackhatworld.com##+js(abort-on-property-write, _avp) www.blackhatworld.com##.notice--cookie:remove() www.blackhatworld.com##div[class*="bhw-banner-"]:remove() ||payhitproveold.live^* ||eveningroundindustrytrade.live^* ||check-primeprize.life^* ||zoneforyourprize.life^* ||3.bro4.biz^* ||91effa509f8f15a.com^* !||getstat.website^* ||patientlyrequisite.com^* ||plantinscription.com^* ||yuppyads.com^* ||popxyz.com^* ||xml.poprtb.com^* ||xml.xmlking.com^* ||bb4cf48126aab4.com^* ||mossyitalian.com^* ||b4caded565.com^* ||ef9af376b7f.com^* ||e23b6d790a5b.com^* ||8c535773f89c8.com^* ||airairgu.com^* ||believeduphold.com^* ||functionssubqueries.com^* ||network.eonads.com^* ||pl16228511.performancetrustednetwork.com^* ||popbyepenthouse.com^* ||timerobstacle.com^* ||www.varietyofdisplayformats.com^* www.escapefromtarkov.com##div[data-legal-cookie]:remove() petri.com##div[class="gdpr-cookie-banner"]:remove() petri.com##div[class^="webinar-ad"]:remove() petri.com##div[class="petri-advertising-ad-container"]:remove() petri.com##div[id="petri-advertising-sponsor-sidebar"]:remove() petri.com##li[data-petri-impression-tracking]:remove() petri.com##script[id^="cookieBanner-"]:remove() petri.com##script[id="hs-analytics"]:remove() !||petri.com/wp-content/themes/petri/assets/advertising/impression-tracking.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||petri.com/wp-content/themes/petri/assets/advertising/high-impact-ad.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||petri.com/wp-content/themes/petri/assets/advertising/adthrive-sponsor.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||petri.com/wp-content/themes/petri/assets/advertising/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||petri.com/wp-content/themes/monstro/assets/scripts/ad-blocker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.itprotoday.com##div[class^="gdpr-popup-"]:remove() www.cybermania.ws##ins[class="adsbygoogle"]:remove() !||www.cybermania.ws/cdn-cgi/bm/cv/669835187/api.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.cybermania.ws##div[class^="san_howtowhitelist"]:remove() www.cybermania.ws##+js(abort-on-property-read, adsbygoogle) www.cybermania.ws##+js(abort-on-property-write, adsbygoogle) www.cybermania.ws##^script:has-text(/Adblock/):remove() www.cybermania.ws##+js(remove-node-text, script, /Adblock/gm) ||www.paypalobjects.com/en_US/i/scr/pixel.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.ecjkroklyxvod.com^* ||ecjkroklyxvod.com^* ||altowriestwispy.com^* ||d1esebcdm6wx7j.cloudfront.net^* ||d2er1uyk6qcknh.cloudfront.net^* ||d5o9dxn3unuqv.cloudfront.net^* ||entsnotesq.fun^* ||keydawnawe.com^* ||pressize.rtb-eu.ak-is2.net^* ||rtb-eu.pressize.com^* ||sprivilpra.biz^* ||userapi5.superbuzz.io^* ||www.gonczpsaceew.com^* ||gonczpsaceew.com^* ||53da5b2bba7.com^* ||psychologywoman.com^* ||123-free-download.com/counters/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||infestpaddle.com^* ||www.licz.pl/counter.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.123-free-download.com/counters/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||therapistpopulationcommentary.com^* windows-repair-toolbox.com##div[id^="cookie-bar"]:remove() windows-repair-toolbox.com##span[class^="Ad-label"]:remove() windows-repair-toolbox.com##+js(abort-on-property-read, adsbygoogle) windows-repair-toolbox.com##+js(abort-on-property-write, adsbygoogle) ||v4.s.arclk.net^* ||track.vcdc.com^* ||www.warez-bb.org/banner_ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css salesforce.stackexchange.com##div[class*="js-consent-banner"]:remove() www.bitdegree.org##div[class="cookie-bar"]:remove() ||kneeansweras.com^* www.gry-online.pl###baner-inner:remove() abandonwaregames.net##a[href*="/track.wg-aff.com/"]:remove() ||www.sordum.org/wp-content/plugins/cookie-notice/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fireads.org/storage/banners/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lialiobrit.tk^* ||lightningprefacegrant.com^* ||salutationcheerlessdemote.com^* ||scrapebust.com^* !conssevarethi.ml##div[class="pass-block"]:style(display: block; margin-top: 140px; text-align: center;) !conssevarethi.ml##div[class="download-block-n"]:style(display: block;) conssevarethi.ml##.pass-block:style(display: block; margin-top: 140px; text-align: center;) conssevarethi.ml##.download-block-n:style(display: block;) conssevarethi.ml##a[class="download_link downloadfour"]:remove() www.w3docs.com##amp-ad:remove() intoupload.net###chkIsAdd:remove-attr(checked) !Gets rid of change event on #chkIsAdd intoupload.net##+js(aeld, change) intoupload.net##.downloadbtn:remove-attr(disabled) intoupload.net###downloadbtn:remove-attr(disabled) !Must remove style from downloadbtn for some reason before can change it to not be hidden later. intoupload.net###downloadbtn:remove-attr(style) intoupload.net##+js(set-constant, remaining, 0) intoupload.net##+js(set-constant, timeout, 0) intoupload.net##+js(set-constant, tick, 0) intoupload.net##button[id="downloadBtnClick"]:style(display: none;) intoupload.net##button[id="downloadBtnClick"]:remove() intoupload.net##button[id="downloadbtn"]:style(display: block !important; visibility: visible !important;) intoupload.net##+js(set-attr, #adblock_detected, value, 0) intoupload.net##input[id="addLinkBtn"]:remove() intoupload.net##+js(set-attr, ##addLinkBtn, value, "") !intoupload.net##+js(trusted-set-attr, #downloadBtnClick, onclick, $('#myDownloadForm').submit();) intoupload.net##+js(trusted-set-attr, #downloadbtn, onclick, $('#myDownloadForm').submit();) ||intoupload.net/js/countdown.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !intoupload.net##+js(nano-stb, /timeout/i, 100, 0.10) !intoupload.net##+js(nano-stb, /tick/i, 100, 0.10) intoupload.net##^script:has-text(/function\(p\,a\,c\,k\,e\,d\)/) intoupload.net##+js(remove-node-text, script, /function\(p\,a\,c\,k\,e\,d\)/gm) intoupload.net##span[id="countdown"]:remove() !intoupload.net##label[for="chkIsAdd"]:remove() intoupload.net##div[class="checkbox checkbox-info off"]:style(display: none; visibility: hidden !important;) ||ctrl.sidebyx.com^* ||mxxzxhnr.ivoryworthwhilebadger.com^* ||totentacruelor.com^* ||b72.info^* ||ecma.sidebyx.com^* !||cdn.sb-inv1.com/sb/notifications/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.sb-inv1.com^* ||oupaumul.net^* ||saptiledispatch.com^* ||sentphysically.com^* ||softwarepastel.com^* ||superbdolly.com^* ||roakicat.net^* ||dyncdn.me/static/20/js/showads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dyncdn.me/static/20/js/expla95.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css rarbg.to##+js(set-constant, abbz, false) !code-boxx.com##span[class^="ezmob-footer"]:remove() code-boxx.com##*[class^="ezmob-footer"]:remove() code-boxx.com##span[class*="ezoic-ad"]:remove() code-boxx.com##span[id^="ezoic-pub-ad"]:remove() ! TODO: ^script doesn't work with attributes since checked before DOM created? code-boxx.com##script[data-ezscrex]:remove() code-boxx.com##+js(abort-on-property-read, __ez) code-boxx.com##+js(abort-on-property-write, __ez) code-boxx.com##+js(abort-on-property-read, gads) code-boxx.com##+js(abort-on-property-write, gads) ||hoowooze.net^* ytoffline.net##+js(no-window-open-if, !/googlevideo\.com|ytoffline\.net|youtube\.com/i) !my.syncplicity.com##+js(remove-class, /disable/i, .upload, stay) my.syncplicity.com##+js(remove-class, /disable/i, , stay) www.leawo.org##div[id^="ad_box"]:remove() ||katie.v4.omgtnc.com^* filesupload.org##+js(set-constant, seconds, 0) ||s4.bcbits.com/bundle/bundle/1/analytics-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bandcamp.com/api/tracker/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s4.bcbits.com/bundle/bundle/1/impl-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sidhe.bandcamp.com/client_log$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css https://bandcamp.com/stat_record?kind=track%20play&track_id=1915455496&track_license_id&from=album%20page&from_url=https%3A%2F%2Fsidhe.bandcamp.com%2Falbum%2Fshatter-official-videogame-soundtrack&stream_duration=448.64535&phase=complete&reference_num=147071071&band_id=1628804031&rand=08375999684271296 ||bandcamp.com/stat_record$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css sidhe.bandcamp.com##div[class^="play-limits-dialog"]:remove() sidhe.bandcamp.com##.ui-widget-content.ui-dialog-content:has(div[class^="play-limits-dialog"]):remove() sidhe.bandcamp.com##.ui-widget-overlay:remove() !||dl.gmx.com/tcf/live/v1/js/tcf-api.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dl.gmx.com/permission/live/v1/ppp/js/permission-client.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.gmx.com/ping.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.gmx.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.gmx.com##div[class="blurredbg"]:remove() www.gmx.com##div[class="error"]:remove() www.gmx.com##div[id^="adservice-"]:remove() www.gmx.com##div[data-adservice-slot]:remove() www.gmx.com##+js(abort-on-property-read, window.ui.consentPageUrl) www.gmx.com##+js(abort-on-property-write, window.ui.consentPageUrl) www.gmx.com##+js(abort-on-property-read, bypassCookieName) www.gmx.com##+js(abort-on-property-write, bypassCookieName) www.gmx.com##+js(abort-on-property-read, bypassCookieValue) www.gmx.com##+js(abort-on-property-write, bypassCookieValue) www.gmx.com##+js(set-constant, window.ui.consentPageUrl, "") www.gmx.com##^script:has-text(/checkIfConsentCookieIsPresent\(\)/i):remove() www.gmx.com##+js(remove-node-text, script, /checkIfConsentCookieIsPresent\(\)/gm) www.gmx.com##+js(set-cookie, euconsent-bypass, 1, /) !www.gmx.com##+js(set-cookie, euconsent-bypass, 1, , reload, 1) !www.gmx.com##+js(set-cookie, euconsent-bypass, 1, /, reload, 1) ! The two cookies in the following two rules must be present to access https://www.gmx.com/mail/ without being redirected. ! TODO: What values should these cookies contain to have consented? www.gmx.com##+js(set-cookie, euconsent-v2, 1, /) www.gmx.com##+js(set-cookie, GDNA, 1, /) www.gmx.com##+js(set-cookie, ushallpass, true, /) www.gmx.com##+js(trusted-replace-node-text, script, /if (document\.cookie\.indexOf\(['"]euconsent\-v2['"]\)\s?===\s?\-1\s?\&\&\s?document\.cookie\.indexOf\(['"]GDNA['"]\)\s?===\s?\-1\)/gm, if (null)) www.gmx.com##+js(remove-cookie, adtrgtng) www.gmx.com##iframe[name]:matches-attr(name=/^__\S+Locator$/):remove() www.gmx.com##+js(remove-node-text, script, /\.push\(\{['"]gtm\.start['"]/gm) www.gmx.com##+js(remove-node-text, script, /ui\.AdServiceConfig\s?=/gm) www.gmx.com##+js(remove-node-text, script, /window\.dataLayer\.push\(\{/gm) www.gmx.com##+js(remove-node-text, script, /function UABPinjectads\(wrappersAndAds/gm) www.gmx.com##+js(trusted-replace-node-text, script, /ui\.adServiceEnabled\s?=\s?(true|null);/gm, ui.adServiceEnabled = false;) www.gmx.com##+js(trusted-replace-node-text, script, /biddingEnabled:\s?(true|null);/gm, biddingEnabled: false) ||videoroll.net/js/vid_vpaut_script.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css davidwalsh.name##^script:has-text(/analyticsID/):remove() davidwalsh.name##+js(remove-node-text, script, /analyticsID/gm) ||davidwalsh.name/demo/gofast-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.filecad.com/js/xads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.filecad.com/themes/spirit/assets/frontend/js/cookiealert.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.filecad.com/themes/spirit/assets/frontend/js/countdown.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.filecad.com##div[aria-label="cookieconsent"]:remove() www.filecad.com##div[class*="cookiealert"]:remove() www.filecad.com##ins[class="adsbygoogle"]:remove() www.filecad.com##+js(abort-on-property-read, adsbygoogle) www.filecad.com##+js(abort-on-property-write, adsbygoogle) www.filecad.com##div[class*="advert-wrapper"]:remove() www.filecad.com##div[class*="advert-page-footer"]:remove() www.filecad.com##div[class*="top-advert"]:remove() www.filecad.com##div[class*="bottom-advert"]:remove() www.filecad.com###iHCIjECYmrkE:remove() www.filecad.com##+js(remove-class, clear-adblock) www.filecad.com##div[id="adblockinfo"]:remove() www.filecad.com##+js(set-constant, seconds, 0) www.filecad.com##+js(set-constant, started, true) ! can't set or redfine a function using trusted-set-constant since it is for strings and would need eval() to execute the function !www.filecad.com##+js(trusted-set-constant, countdownTimer, setInterval('display()', 1)) www.filecad.com##+js(set-constant, countdownTimer, noopFunc) www.filecad.com##^script:has-text(clear-adblock):remove() www.filecad.com##+js(remove-node-text, script, /clear\-adblock/gm) www.filecad.com##^script:has-text(#adblockinfo):remove() www.filecad.com##+js(remove-node-text, script, /#adblockinfo/gm) !www.filecad.com##+js(remove-class, download-timer) www.filecad.com##div[class="download-timer"]:style(display: inline !important;) www.filecad.com##+js(no-setInterval-if, /^display\(\)/) www.filecad.com##a[class="btn btn-subtle"]:style(display: inline !important;) www.filecad.com##+js(set-constant, LOGGED_IN, true) www.amazon.es##span[data-action="sp-cc"]:remove() www.amazon.es##div[class^="sp-cc-"]:remove() www.javascripttutorial.net##div[class="whitelist"]:remove() ||www.hgzuqrtzt.com^* ||hgzuqrtzt.com^* indishare.org##a[href*="//9xlust.in"]:remove() ||dita6jhhqwoiz.cloudfront.net^* ||viewm.moonicorn.network^* ||tyeatment.biz^* ||uiteligularly.fun^* ||market.moonicorn.network^* ||rdifferenco.club^* ||click.advertnative.com^* !||network.eonads.com/adserver/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.lxhkqjqpswhg.com^* ||lxhkqjqpswhg.com^* ||www.owwjelpkhli.com^* ||owwjelpkhli.com^* thekeengames.blogspot.com##div[id="Eonads-responsive"]:remove() ||r3adyt0download.com^* ||matchedule.club^* ||tii.ai/webroot/modern_theme/img/dwndbnr1.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tii.ai/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tii.ai/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css tii.ai##a[href*="/r3adyt0download.com/"]:remove() tii.ai##+js(abort-on-property-read, elem) tii.ai##+js(abort-on-property-write, elem) tii.ai##^script:has-text(/\/apu\.php\?zoneid\s?=/):remove() tii.ai##+js(remove-node-text, script, /\/apu\.php\?zoneid\s?=/gm) tii.ai##^script:has-text(/JSON\.parse\(atob\(/):remove() tii.ai##+js(remove-node-text, script, /JSON\.parse\(atob\(/gm) tii.ai##+js(remove-node-text, script, /document\.createElement\(['"]script['"]\)/gm) tii.ai##div[id="ad-banner"]:remove() !tii.ai##+js(set-constant, go_popup, null) !tii.ai##^script:has-text(/checkAdblockUser\(\)/):remove() !tii.ai##+js(remove-node-text, script, /checkAdblockUser\(\)/gm) !tii.ai##+js(set-constant, e, "") tii.ai##+js(no-window-open-if, !/tii\.ai/) !tii.ai##+js(no-setTimeout-if, /checkAdblockUser/) tii.ai##+js(no-setTimeout-if, /^/, 1000) ||geniusonclick.com^* ||hostingcloud.racing^* ||www.hostingcloud.racing^* ||ptongouh.net^* ||elamigosedition.com/sw-d4649.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||edl.jipo.io/init.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||elamigosedition.com/templates/games/js/adblock.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||elamigosedition.com/templates/games/style/adblockstyle.css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ost43filex.xyz^* ||a8rm1m4msbbh.com^* ||concentratebeauabsolute.com^* ||nationaldeliquencydeliquency.com^* ||pl5161.performancetrustednetwork.com^* ||suspicionsvaluable.com^* ||btrack.site^* ||cdn.yourwebbars.com/sb/interstitial/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||faststore.org/css/adcss2.css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rdr.rtbravo.com^* ||w.usprotects.com^* elamigosedition.com##div[class="cookiePolicyB"]:remove() ||distemshu.biz^* ||offclaydolon.com^* ||www.gjqhufkamcoc.com^* ||gjqhufkamcoc.com^* www.deck13.com##aside[id="moove_gdpr_cookie_info_bar"]:remove() www.dualshockers.com##div[class="GRVAd"]:remove() www.dualshockers.com##div[data-ad-type]:remove() www.dualshockers.com##amp-analytics:remove() www.dualshockers.com##div[class="GRVMpuWrapper"]:remove() !||improving.duckduckgo.com/t/si?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||improving.duckduckgo.com^* ||dffg7clyghtm8.cloudfront.net^* ||apsstoure.biz^* ||amorphysp.fun^* ||d1a3jb5hjny5s4.cloudfront.net^* devhints.io##div[id="carbonads"]:remove() www.thepolyglotdeveloper.com##div[aria-label="cookieconsent"]:remove() www.thepolyglotdeveloper.com##div[class*="cc-revoke"]:remove() www.thepolyglotdeveloper.com##div[class*="cc-banner"]:remove() www.thepolyglotdeveloper.com##div[class*="cc-bottom"]:remove() www.thepolyglotdeveloper.com##div[class*="cc-compliance"]:remove() www.thepolyglotdeveloper.com##span[id="cookieconsent:desc"]:remove() !||us.ads.justpremium.com/adserve/js.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !www.solidfiles.com##+js(remove-class, show-ads, , stay) www.solidfiles.com##+js(remove-class, show-ads) www.solidfiles.com##div[id="outdated"]:remove() www.irishtimes.com##div[class="adwrapper"]:remove() www.irishtimes.com##div[class^="ad-inline-article"]:remove() www.irishtimes.com##div[id^="div-gpt-ad"]:remove() www.neowin.net##div[class*="widget-ad"]:remove() dmde.com##div[id="cookiefooter"]:remove() amp-dailycaller-com.cdn.ampproject.org##amp-ad:remove() amp-dailycaller-com.cdn.ampproject.org##amp-analytics:remove() dailycaller.com##+js(set-constant, fbq, noopFunc) dailycaller.com##script[id="fbpixel-integration"]:remove() dailycaller.com##script[id^="Facebook-Pixel_"]:remove() dailycaller.com##+js(remove-node-text, script, /tude\.refreshAdsViaDivMappings\(/gm) dailycaller.com##+js(remove-node-text, script, /var obReadMoreDiv\s?=/gm) dailycaller.com##+js(remove-node-text, script, /var aditudeScript\s?=/gm) dailycaller.com##+js(remove-node-text, script, /var aditudeDiv\s?=/gm) dailycaller.com##+js(remove-node-text, script, /var fsScript\s?=/gm) dailycaller.com##+js(remove-node-text, script, /var fsDiv\s?=/gm) dailycaller.com##+js(abort-on-property-read, window.tude) dailycaller.com##+js(abort-on-property-write, window.tude) dailycaller.com##+js(abort-on-property-read, obReadMoreDiv) dailycaller.com##+js(abort-on-property-write, obReadMoreDiv) dailycaller.com##+js(abort-on-property-read, aditudeDiv) dailycaller.com##+js(abort-on-property-write, aditudeDiv) dailycaller.com##+js(abort-on-property-read, aditudeScript) dailycaller.com##+js(abort-on-property-write, aditudeScript) dailycaller.com##+js(abort-on-property-read, fsDiv) dailycaller.com##+js(abort-on-property-write, fsDiv) dailycaller.com##+js(abort-on-property-read, fsScript) dailycaller.com##+js(abort-on-property-write, fsScript) dailycaller.com##div[class^="dc-sticky sticky-footer"]:remove() dailycaller.com##div[class^="index__adWrapper"]:remove() dailycaller.com##div[class^="index__adUnitWrapper"]:remove() dailycaller.com##div[class="ad"]:remove() dailycaller.com##div[class*="dailycaller_adhesion"]:remove() dailycaller.com##aside[id="right1forarticles"]:has(div[data-freestar-ad]):remove() dailycaller.com##div[data-freestar-ad]:remove() dailycaller.com##div[class*="adcontainer"]:remove() dailycaller.com##div[id="paywall"]:remove() dailycaller.com##div[id^="dailycaller_incontent_"]:remove() !dailycaller.com##+js(set-constant, window.confiant, {}, end) dailycaller.com##+js(set-constant, window.confiant, {}, complete) !dailycaller.com##+js(set-constant, window.confiant.callback, noopFunc, end) dailycaller.com##+js(set-constant, window.confiant.callback, noopFunc, complete) dailycaller.com##+js(set-constant, impressionData, {}) dailycaller.com##+js(abort-on-property-read, impressionData.prebid) dailycaller.com##+js(abort-on-property-write, impressionData.prebid) dailycaller.com##+js(abort-on-property-read, window.confiant) dailycaller.com##+js(remove-node-text, script, /\.push\(\{['"]gtm\.start['"]/gm) dailycaller.com##+js(set-constant, dc_ad_free, true) dailycaller.com##+js(trusted-replace-node-text, script, /var dc_ad_free\s?=\s?false/gm, var dc_ad_free = true) dailycaller.com##+js(set-constant, setNptTechAdblockerCookie, noopFunc) dailycaller.com##script[src="//www.npttech.com/advertising.js"]:remove-attr(onerror) dailycaller.com##+js(set-constant, adblocker, false) dailycaller.com##+js(remove-node-text, script, /var setNptTechAdblockerCookie\s?=/gm) dailycaller.com##+js(remove-cookie, __adblocker) dailycaller.com##+js(set-local-storage-item, adagio, $remove$) dailycaller.com##+js(set-local-storage-item, adagioScript, $remove$) dailycaller.com##+js(set-local-storage-item, SPOT_AB, $remove$) dailycaller.com##+js(remove-cookie, __stripe_mid) dailycaller.com##+js(remove-cookie, __stripe_sid) dailycaller.com##+js(remove-cookie, spotim_visitId) dailycaller.com##+js(remove-cookie, rl_anonymous_id) dailycaller.com##+js(remove-cookie, rl_page_init_referrer) dailycaller.com##+js(remove-cookie, rl_session) dailycaller.com##iframe[name^="__privateStripeMetricsController"]:remove() dailycaller.com##+js(remove-node-text, script, /const showPaywall\s?=/gm) dailycaller.com##+js(set-constant, showPaywall, noopFunc) dailycaller.com##+js(set-constant, checkPaywall, noopFunc) dailycaller.com##+js(set-constant, window.dcRudderstack.premium, true, complete) dailycaller.com##+js(set-constant, window.dcRudderstack.registered, true, complete) dailycaller.com##+js(set-constant, rudderanalytics, false) dailycaller.com##+js(set-constant, dc_track, noopFunc) www.desmoinesregister.com##aside[aria-label="advertisement"]:remove() www.desmoinesregister.com##div[id^="ad-slot"]:remove() www.desmoinesregister.com##aside[data-u-sr="anon reg"]:remove() www.electronjs.org##a[href*="blacklivesmatter"]:remove() www.electronjs.org##a[href*="/support.eji.org/"]:remove() www.electronjs.org##div:has-text(/Black Lives Matter/i):remove() www.deepbrid.com##span[id="cookieconsent:desc"]:remove() www.deepbrid.com##div[aria-label="cookieconsent"]:remove() linkspremium.download##div[aria-label="cookieconsent"]:remove() ||www.verified-apps.com^* ||abbronzongor.com^* ||aylink.co/webroot/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||edu1xbet.com^* ||aylink.co/webroot/js/push.latest.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rer.marketland.me^* ||www.predictiond.com^* ||d3fxnhizon0tep.cloudfront.net^* ||irsuperleague.com^* ||rdr9.xyz^* ||www.anardan.com^* ||wlbetboo.adsrv.eacdn.com^* ||lamarquetaretona.com^* ||bildirim.eu^* ||adbetnetwork.com^* ||cbox.turkdown.com/checkXi/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cbox.turkdown.com/checkXi/adblock.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cbox.turkdown.com/checkXi/Aab-style.css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||soccerking888.com^* ||jetfilmizle.live^* ||www.adbetnetwork.com^* ||sporttagz.com^* ! TODO: ^script doesn't work with attributes since checked before DOM created? cbox.turkdown.com##script[src="advertisement.js"]:remove() cbox.turkdown.com##div[id="986qPMIlsmuWWBTCZXEeq"]:remove() ||tny.so/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css tny.so##div[class="ad-banner"]:remove() !tny.so##iframe:remove() ||eninterested.biz^* ||apps-lon2.cointraffic.io^* ||appsha-lon2.cointraffic.io^* ||pignuwoa.com^* ||wonderhsjnsd.com^* ||urbedothe.biz^* ||perigshfnon.com^* ||nkyouvery.fun^* ||accommodationinfractructuretwo.com^* ||www.zquotfuofx.com^* ||zquotfuofx.com^* ||inscriptionothernarcotic.com^* ||www.ustxsntseyhwsx.com^* ||ustxsntseyhwsx.com^* ! TODO: ^script doesn't work with attributes since checked before DOM created? tny.so##script[src$="/a.js"]:remove() ||onsideratio.fun^* ||arguerepetition.com^* ||proclaimsubjected.com^* ||shockersheva.com^* ||d1nssfq3xl2t6b.cloudfront.net^* makemoneywithurl.com##div[id^="div-gpt-ad"]:remove() ||adserve.mahimeta.com^* ||adserve2.mahimeta.com^* ||mahimeta.com/networks/tag_config.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mahimeta.com/networks/tag.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d3f4nuq5dskrej.cloudfront.net^* noticiasesports.live##div[class*="eacc-widget-"]:remove() ||static.elfsight.com/apps/cookie-consent/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adshort.live/script_ad.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adshort.live^* !||pingit.im^* noticiasesports.live###adb-enabled:remove() noticiasesports.live##div[id="adb-not-enabled"]:style(display: block !important;) !noticiasesports.live##head > script:nth-child(2):remove() ! TODO: ^script doesn't work with attributes since checked before DOM created? noticiasesports.live##script[src*="/ads.adshort.media/"]:remove() noticiasesports.live##+js(set-constant, window.adblockDetector, false) ||vignerez.net^* ||forzubatr.com^* www.myvirtualserver.com##div[aria-label="cookieconsent"]:remove() www.myvirtualserver.com##span[id="cookieconsent:desc"]:remove() www.websitebuilderexpert.com##div[class="consent-holder consent-show"]:remove() ||www.vwgilkky.com^* ||vwgilkky.com^* reverseengineering.stackexchange.com##div[class*="js-consent-ban"]:remove() !||t.myvisualiq.net/impression_pixel^* www.tomsguide.com##*[class^="hawk-tracking-pixel-"]:remove() www.tomsguide.com##+js(set-constant, window.askForConsent, false) www.tomsguide.com##+js(set-constant, window.waitForConsent, false) www.tomsguide.com##+js(abort-on-property-read, window.askForConsent) www.tomsguide.com##+js(abort-on-property-write, window.askForConsent) www.tomsguide.com##+js(abort-on-property-read, window.waitForConsent) www.tomsguide.com##+js(abort-on-property-write, window.waitForConsent) ||www.findresults.xyz^* ||findresults.xyz^* ||m.mobilesearch.app^* www.minitool.com##div[class="bottom-cookie-wrap"]:remove() exploringbits.com##+js(abort-on-property-read, __ez) exploringbits.com##+js(abort-on-property-write, __ez) exploringbits.com##+js(abort-on-property-read, gads) exploringbits.com##+js(abort-on-property-write, gads) exploringbits.com##+js(abort-on-property-read, _ezaq) exploringbits.com##+js(abort-on-property-write, _ezaq) exploringbits.com##span[class*="ezoic-ad"]:remove() www.sync.com##div[class*="eupopup-"]:remove() www.getfilecloud.com##div[id="gdpr_accept"]:remove() www.filehosting.org##+js(abort-on-property-read, QualiGOAdOptions) www.filehosting.org##+js(abort-on-property-write, QualiGOAdOptions) www.filehosting.org##+js(remove-attr.js, onclick, a.visible-phone, stay) www.filehosting.org##+js(remove-attr.js, onclick, a.hidden-phone, stay) www.couponxoo.com##div[class*="cookiealert"]:remove() www.couponxoo.com##+js(abort-on-property-read, adsenseSettings) www.couponxoo.com##+js(abort-on-property-write, adsenseSettings) www.couponxoo.com##div[class*="modal-adblock"]:remove() www.couponxoo.com##+js(abort-on-property-read, window.googletag) www.couponxoo.com##+js(abort-on-property-write, window.googletag) ||www.ukslphcgs.com^* ||ukslphcgs.com^* ||discountbyte.xyz^* /^https?:\/\/script\.4dex\.io\/(a\/latest\/)?adagio\.js\??/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! TODO: ^script doesn't work with attributes since checked before DOM created? sharemods.com##script[id="cookieinfo"]:remove() sharemods.com##+js(abort-on-property-read, window.googletag) sharemods.com##+js(abort-on-property-write, window.googletag) sharemods.com##+js(remove-attr.js, disabled, .downloadbtn, stay) ||filefreak.com/static/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||see.tfaln.com^* filefreak.com##+js(remove-attr.js, onclick, .btn-primary) ||scamblefeedman.com^* ||unrootpteroid.cam^* ||dsp35.adtelligent.com^* ||www.hqvwniado.com^* ||hqvwniado.com^* ||www.xouzmvlt.com^* ||xouzmvlt.com^* !||stpd.cloud/assets/hb/sharemods.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||stpd.cloud/assets/hb/apkadmincom.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stpd.cloud/assets/hb/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stpd.cloud/saas/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css sharemods.com##div[id="sharemods.com_980x250"]:remove() sharemods.com##iframe[data-id^="sharemods.com_"]:remove() sharemods.com##div[id="sharemods_com_320x50_mobile_sticky"]:remove() www.business-standard.com##span[id="eu_popup"]:remove() www.business-standard.com##div[id^="div-gpt-ad-"]:remove() www.neowin.net##div[class="ad"]:remove() ||7freef.com^* www.g2.com##div[class*="js-cookie-consent-"]:remove() !wetransfer.com##+js(abort-on-property-read, __trackjs__) !wetransfer.com##+js(abort-on-property-write, __trackjs__) wetransfer.com##div[class="banner__container banner__animations-enter-done"]:remove() ||d19ptbnuzhibkh.cloudfront.net/2.10.2/sp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||prod-cdn.wetransfer.net/assets/advertising-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$script about.wetransfer.com##div[class^="cookie-bar"]:remove() ||ads.blogherads.com^* www.cracked.com##section[class*="ad-wrapper"]:remove() www.cracked.com##section[class*="ad-desktop"]:remove() www.cracked.com##section[class*="ad-leaderboard"]:remove() www.cracked.com##div[class="ad-inner-wrapper"]:remove() www.nintendolife.com##div[class="dgp-consent"]:remove() www.studytonight.com##div[id="liveToast"]:remove() ||ascendeum-d.openx.net^* ||track.capitaloneshopping.com^* !||cdn.capitaloneshopping.com/analytics/wa.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.capitaloneshopping.com/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||capitaloneshopping.com/ASTRO_GENERATED/marketing/_astro/AnalyticsJsScript.astro_astro_type_script_index_0_lang.*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||capitaloneshopping.com/ASTRO_GENERATED/marketing/_astro/ChromeUserStats.*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! TODO: The following three rules will prevent the web browser installation buttons on the webpage from having text descriptions. !||capitaloneshopping.com/ASTRO_GENERATED/marketing/_astro/analytics-js.*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||capitaloneshopping.com/ASTRO_GENERATED/marketing/_astro/get-analytics-js-service.*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||capitaloneshopping.com/ASTRO_GENERATED/marketing/_astro/setup-analytics-tracking.*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||minimizeglanceanyway.com^* ||x1337x.ws^$popunder ||defenseaspirinlike.com^* ||fierceharmlessjacket.com^* ||partssubquery.com^* ||cookie-cdn.cookiepro.com^* www.lexology.com##div[id="optanon-popup-bottom"]:remove() ||cs.rin.ru^$removeparam=hilit ||csrinrutkb3tshptdctl5lyei4et35itl22qvk5ktdcat6aeavy6nhid.onion$removeparam=hilit ||forum.torrminatorr.com^$removeparam=hilit ||ade.googlesyndication.com/ddm/activity_ext/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css,domain=www.youtube.com ||www.tvjkilgfanpt.com^* ||tvjkilgfanpt.com^* ||www.akcdinzvcenhjh.com^* ||akcdinzvcenhjh.com^* skidrowfull.com##+js(abort-on-property-read, adsbygoogle) skidrowfull.com##+js(abort-on-property-write, adsbygoogle) ||oldeststrickenambulance.com^* ||mindactual.com^* ||omyourfir.club^* ||tillatingmer.fun^* ||api.news-headlines.co^* ||eu.rollmeout.xyz^* www.komando.com##.ad-leaderboard:remove() www.komando.com##.ad-in-content-wrapper:remove() mw5mercs.com##div[id="cconsent-bar"]:remove() onlineproxy.eu##div[id="cookieChoiceInfo"]:remove() ||tronglyre.club^* ||ippsrvng.xyz^* ||watchgreatly-bestspeedyfile.best^* ||nuqwe.com^* ||downloads.khinsider.com/files/cookies.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||open.scdn.co/cdn/js/retargeting-pixels.1fa1ceda.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||my-torrent.xyz/images/m1.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||my-torrent.xyz/images/3.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||krugacarkeli.ga^* ||raruburneck.tk^* my-torrent.xyz##a[class="genmed"]:remove() my-torrent.xyz##span[id="dedederaha"]:style(display: block) ||momijoy.ru/visitors?visitorid=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.tanikal.com##div[id="$_v_banner"]:remove() ||urmilan.info^* !||melongnaw.com/ren.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||melongnaw.com^* ||lcdn.runative-syndicate.com^* !||tomatoreach.com/ren.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tomatoreach.com^* ||distressedsensesmanage.com^* !||photographicconstablelanded.com/ren.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||photographicconstablelanded.com^* ||voraciousdutylover.com^* ||pl15358356.performancetrustednetwork.com^* ||mergerpep.com^* ||gestyy.com/bundles/advertisement/img/tracking.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gestyy.com/bundles/smeweb/js/xvideos.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gestyy.com/bundles/smeweb/img/tracking-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gestyy.com/bundles/smeweb/img/advertisement-tracking-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.capitalone.com###prebootOverlay:remove() ||smetrics.capitalone.com^*$important !||deviceinfo.capitalone.com/collector/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||deviceinfo.capitalone.com^* hotlink.cc##+js(set-constant, form_ok, 1, stay) hotlink.cc##+js(remove-attr, disabled, #downloadbtn, stay) www.discogs.com##div[class*="ad_container"]:remove() www.discogs.com##div[class*="ad_top"]:remove() ||lngtd.com/prebid/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||addkt-d.openx.net^* ||lngtd.com/discogs_a.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ulozto.net##div[class*="ad-banner"]:remove() ulozto.net##div[class*="ad-sky"]:remove() ulozto.net##div[class*="js-advert"]:remove() ulozto.net##div[class*="t-advert"]:remove() ulozto.net##div[class*="adFull"]:remove() rutracker.org##div[class="bn-topic products"]:remove() !mega.nz##div[class="fm-dialog mega-dialog cookie-dialog lato"]:remove() mega.nz##div[class*="cookie-dialog"]:remove() mega.nz##.ads-left-block, .ads-right-block, .active.top-login-warning, .red.download-button.button, .checkbox-bl.download:remove() ||mega.nz/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||codegeekz.com/wp-content/js/analytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css codegeekz.com##div[id="google-post-adbottom"]:remove() codegeekz.com##ins[class="adsbygoogle"]:remove() !nullphpscript.com##+js(aeld) breaks search and other buttons nullphpscript.com##+js(aeld) nullphpscript.com##+js(aopr, document.oncontextmenu) nullphpscript.com##+js(aopw, document.oncontextmenu) nullphpscript.com##+js(set-constant, vjiezwuqamlbgxo, null) ||nullphpscript.com/wp-content/plugins/npsblocker/js/ads.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css nullphpscript.com##div[class*="wp-gqdxya-kqivb-"]:remove() ! TODO: ^script doesn't work with attributes since checked before DOM created? nullphpscript.com##script[src*="/pagead2.googlesyndication.com/"]:remove() nullphpscript.com##*:style(-webkit-filter: blur(0px) !important; filter: blur(0px) !important;) nullphpscript.com##^script:has-text(/AdBlocker/):remove() nullphpscript.com##+js(remove-node-text, script, /AdBlocker/gm) www.cloudshare.com##div[id="cookie-notice"]:remove() www.cloudshare.com##div[class*="cookie-"]:remove() ||www.seekscripts.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.nextdoor.com^* www.europeup.com##+js(aopr, _gaq) www.europeup.com##+js(aopw, _gaq) www.europeup.com##+js(aopr, adsbygoogle) www.europeup.com##+js(aopw, adsbygoogle) www.europeup.com##ins[class="adsbygoogle"]:remove() www.europeup.com##button[id="downloadbtn"]:style(visibility: visible;) www.europeup.com##button[class="downloadbtn"]:style(visibility: visible;) www.europeup.com##+js(remove-attr.js, disabled, #downloadbtn) www.europeup.com##+js(remove-attr.js, disabled, .downloadbtn) www.europeup.com##+js(set-constant, timeout, 1) www.europeup.com##^script:has-text(/adblock/):remove() www.europeup.com##+js(remove-node-text, script, /adblock/gm) www.europeup.com##+js(set-attr, #adblock_detected, value, 0) !www.europeup.com###adblock_detected:remove-attr(value) gtaforums.com##div[id="elGuestTerms"]:remove() ||cdn.iubenda.com/cookie_solution/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! TODO: ^script doesn't work with attributes since checked before DOM created? www.snopes.com##script[id="ads-js"]:remove() www.snopes.com##div[class*="needsclick"][formtype="POPUP"]:remove() www.snopes.com##div[class*="smg-zone-widget-ads-placement"]:remove() www.snopes.com##div[data-ad-placement-id]:remove() www.snopes.com##div[class="outer_ad_container"]:remove() www.snopes.com##div[class="bigcrunch-sticky-ad-container"]:remove() www.snopes.com##div[class*="htlad-snopes_dt_sticky"]:remove() www.snopes.com##div[class*="banner_ad_between_sections"]:remove() www.snopes.com##div[class*="snopesad"]:remove() www.snopes.com##div[id="sticky_mobile_adslot"]:remove() www.snopes.com##iframe[name]:matches-attr(name=/^__\S+Locator$/):remove() www.snopes.com##iframe[id="loader"]:remove() www.snopes.com##iframe[id="rufous-sandbox"]:remove() www.snopes.com##span,p[class="advertise_text"]:remove() www.snopes.com##+js(aopr, window.googlefc) www.snopes.com##+js(aopw, window.googlefc) www.snopes.com##+js(set-constant, data.gdprApplies, false, complete) www.snopes.com##+js(set-constant, pixel_url, "") www.snopes.com##+js(remove-node-text, script, /window\.googlefc\.callbackQueue\.push\(/gm) www.snopes.com##+js(aopr, ads_project) www.snopes.com##+js(aopw, ads_project) www.snopes.com##+js(aopr, window.BCLighthouseTag) www.snopes.com##+js(aopw, window.BCLighthouseTag) www.snopes.com##+js(set-constant, BCLighthouseTag.cmd.push, noopFunc, complete) www.snopes.com##+js(set-constant, BCLighthouseTag.setTargeting, noopFunc, complete) www.snopes.com##+js(remove-node-text, script, /BCLighthouseTag\.cmd\.push\(/gm) ! The scripts which check the value of window.snopes_config.live_ads expects an int not a string which the definition in the inline script sets. !www.snopes.com##+js(trusted-set-constant, window.snopes_config.live_ads, "0", complete) www.snopes.com##+js(set-constant, window.snopes_config.live_ads, 0, complete) www.snopes.com##+js(trusted-set-constant, site_htl_settings.adx, "no", complete) www.snopes.com##+js(trusted-set-constant, site_htl_settings.send_reports, "0", complete) www.snopes.com##+js(trusted-replace-node-text, script, /logged_in\s*:\s?"0"/gm, logged_in: "1") www.snopes.com##+js(trusted-replace-node-text, script, /live_ads\s*:\s?"1"/gm, live_ads: "0") ! The following two rules apply to more than one inline script, but the script may be removed entirely. www.snopes.com##+js(trusted-replace-node-text, script, /"adx"\s*:\s?"yes"/gm, "adx": "no") www.snopes.com##+js(trusted-replace-node-text, script, /"send_reports"\s*:\s?"1"/gm, "send_reports": "0") www.snopes.com##+js(aopr, _comscore) www.snopes.com##+js(aopw, _comscore) www.snopes.com##+js(set-constant, insert_ad, noopFunc) www.snopes.com##+js(set-constant, adCount, 21) www.snopes.com##+js(remove-node-text, script, /function insert_ad\s?\(/gm) www.snopes.com##+js(aopr, adUnit) www.snopes.com##+js(aopw, adUnit) www.snopes.com##+js(aopr, adLabel) www.snopes.com##+js(aopw, adLabel) www.snopes.com##+js(aopr, adWrapper) www.snopes.com##+js(aopw, adWrapper) www.snopes.com##+js(remove-node-text, script, /var ad_name\s?=/gm) www.snopes.com##+js(aopr, ad_name) www.snopes.com##+js(aopw, ad_name) www.snopes.com##+js(remove-node-text, script, /if\s?\(adsRemovedWith\)\s?\{/gm) www.snopes.com##+js(set-constant, adsRemovedWith, true) ||ship.bigcrunch.com/prebid/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.techiedelight.com##section[class*="widget_eu_cookie_law_widget"]:remove() www.techiedelight.com##div[id="eu-cookie-law"]:remove() www.businesswire.com##div[id="onetrust-banner-sdk"]:remove() www.venea.net##ins[class="adsbygoogle"]:remove() ||8779.BODIS.com^* ||c.trafficcertify.com^* ||majorgeeks.com/images/mg/160.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.majorgeeks.com##div[id^="beacon_"]:remove() ||ra.majorgeeks.com/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.tgzobwoutuwn.com^* ||tgzobwoutuwn.com^* ||www.wnmalshuld.com^* ||wnmalshuld.com^* ||jumotic.com/favicon.ico$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d3g5ovfngjw9bw.cloudfront.net^* www.compucalitv.com##a[href*="/track.wg-aff.com/"]:remove() pkg.go.dev##a[href*="/support.eji.org/"]:remove() pkg.go.dev##div[class="Banner-message"]:has-text(/Black Lives Matter/i):remove() ||dvanced.club^* ||earneydisti.fun^* ||d2fbvay81k4ji3.cloudfront.net^* www.inputmag.com##div[class*="adWrapper"]:remove() www.inputmag.com##div[class^="ytp-ad-persistent-"]:remove() www.inputmag.com##iframe[style="display: none"]:remove() ||pandg.tapad.com^* ||d15kdpgjg3unno.cloudfront.net^*$3p ||concernedglued.com^* ||dialoguehostcreepy.com^* ||nterestint.club^* ||oackoubs.com^* ||jighucme.com^* ||insanityoh.com^* ||sillyflowermachine.com^* ||podregarddomicile.com^* ||selfishsnake.com^$3p www.varonis.com##div[id="cookie_consent_container"]:remove() ||www.varonis.com/vanalytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! Do NOT remove div tags with the "ad-container" class or videos will not play. !www.foxbusiness.com##div[class="pre-content"]:has(div[class^="ad-contain"]):remove() !www.foxbusiness.com##div[class="pre-content"]:has(div[class*="ad-container"]):remove() !www.foxbusiness.com##div[class*="ad-container"]:remove() !www.foxbusiness.com##div[class^="ad-contain"]:remove() !www.foxbusiness.com##div[class="sticky-pre-header"]:has(div[class^="ad-contain"]):remove() !www.foxbusiness.com##div[class="sticky-pre-header"]:has(div[class*="ad-container"]):remove() ! The following rule will shrink the element to no height if it is empty. www.foxbusiness.com##div[class="pre-content"]:style(min-height: min-content !important;) www.foxbusiness.com##div[class="pre-content"]:has(div[class^="ad-contain"]):style(display: none !important; visibility: none !important; min-height: 0px !important; height: 0px !important; min-width: 0px !important; width: 0px !important;) www.foxbusiness.com##div[class="pre-content"]:has(div[class*="ad-container"]):style(display: none !important; visibility: none !important; min-height: 0px !important; height: 0px !important; min-width: 0px !important; width: 0px !important;) www.foxbusiness.com##div[class^="ad-contain"]:style(display: none !important; visibility: none !important; min-height: 0px !important; height: 0px !important; min-width: 0px !important; width: 0px !important;) www.foxbusiness.com##div[class*="ad-container"]:style(display: none !important; visibility: none !important; min-height: 0px !important; height: 0px !important; min-width: 0px !important; width: 0px !important;) www.foxbusiness.com##div[class*="ad-h-"]:style(display: none !important; visibility: none !important; min-height: 0px !important; height: 0px !important; min-width: 0px !important; width: 0px !important;) ! blocking div[class*="amp-ad"] prevents videos from being played !www.foxbusiness.com##div[class*="amp-ad"]:remove() www.foxbusiness.com##.sticky.sidebar > .desktop.ad-container:remove() www.foxbusiness.com##div[data-banner-type="ccpa"]:remove() ! The following is the anti-adblocking modal. www.foxbusiness.com##div[class="fc-ab-root"]:remove() www.foxbusiness.com##div[id^="desk-ad-"]:remove() www.foxbusiness.com##div[id^="tw-ad-"]:remove() www.foxbusiness.com##div[id^="mw-ad-"]:remove() www.foxbusiness.com##div[id^="mobile-mw-ad-"]:remove() www.foxbusiness.com##div[data-ad-lz]:remove() www.foxbusiness.com##div[data-ad-init]:remove() www.foxbusiness.com##div[data-ad-size]:remove() www.foxbusiness.com##div[id^="outbrain_widget"]:remove() www.foxbusiness.com##div[class="partner geo-item"]:has(div[class^="vendor-unit"]):remove() www.foxbusiness.com##iframe[style="display:none;width:0;height:0;"][src^="https://widgets.outbrain.com/"]:remove() www.foxbusiness.com##iframe[id="measurementKnotchReporter"]:remove() www.foxbusiness.com##iframe[name]:matches-attr(name=/^__\S+Locator$/):remove() ! TODO: ^script doesn't work with attributes since checked before DOM created? www.foxbusiness.com##script[src*="/bat.bing.com/"]:remove() www.foxbusiness.com##script[src*="/static.foxnews.com/static/isa/app/lib/omtr_code.js"]:remove() www.foxbusiness.com##script[src*="/s.yimg.com/dy/ads/"]:remove() www.foxbusiness.com##script[src*="/ads.pubmatic.com/"]:remove() www.foxbusiness.com##script[src*="/u.openx.net/"]:remove() www.foxbusiness.com##script[src*="acdn.adnxs.com/"]:remove() www.foxbusiness.com##+js(set-constant, Strike.insertAd, noopFunc) www.foxbusiness.com##+js(acs, /Strike\.insertAd\(/) ||units.knotch.it/reporter/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css en.cdprojektred.com##div[id="eu-cookie"]:remove() ||en.cdprojektred.com/wp-content/themes/evp-cdpr/js/js-cookie.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css speakingjs.com##div[id="adbox"]:remove() ! TODO: ^script doesn't work with attributes since checked before DOM created? speakingjs.com##script[id="_carbonads_js"]:remove() ||www7.securybrowseapp.com^* ||securybrowseapp.com^* www.pcloud.com##div[class="cookie_consent_holder"]:remove() cli.co##div[class="CookieConsent"]:remove() ||loadheavilyquickthefile.vip^* ||one.affiliateland.io^* !||sdpytrdr.sapphireintellectualparrot.online^* ||sapphireintellectualparrot.online^* ||depirsmandk5.com^* !||d1dxcvubdbe4ji.cloudfront.net/* !blocks epic games videos www.cheatsheet.com##div[class*="top-ad"]:remove() www.cheatsheet.com##div[class*="has-ad"]:remove() www.cheatsheet.com##div[class*="ad-loaded"]:remove() ||click.expmediadirect1.com^* webnode.es##div[class*="wnd-free-stripe"]:remove() www.raymond.cc##.adsbygoogle:remove() www.raymond.cc###adngin-sidebar_1-0:remove() www.raymond.cc###adngin-sidebar_2-0:remove() www.raymond.cc###adngin-sidebar_3-0:remove() ||spl.zeotap.com^* ||pop5sjhspear.com^* ||pixel.placed.com^* www.amd.com##div[id="onetrust-consent-sdk"]:remove() uploadev.org##div[id="gdpr-cookie-notice"]:remove() revclouds.com##div[id="cookie-notice"]:remove() ||washedinmate.com^* ||offsetdamn.com^* ||betshucklean.com^* ||chultoux.com^* ||lockingadmitted.com^* ||upshroomishtor.com^* www.cbackup.com##div[class="ensureCookie"]:remove() syncthing.net##a[href*="/forum.syncthing.net/t/the-syncthing-foundation-stands-against-racism/"]:remove() syncthing.net##div[class^="alert"]:has-text(/racism/i):remove() syncthing.net##div[class^="alert"]:has-text(/Ukrain/i):remove() ! TODO: ^script doesn't work with attributes since checked before DOM created? s0ft4pc.com##script[data-ad-client]:remove() s0ft4pc.com##+js(noeval) ||unspeakablepurebeings.com^* ||perceivefilthy.com^* ||www.warez-bb.ir/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||beta.mybetterdl.com^* ||165.trackingms.com^* www.gdatasoftware.com##div[id="gd-cookie-consent"]:remove() smartbear.com##div[class*="cc-pop"]:remove() www.theblaze.com##div[class^="gdpr-cookie"]:remove() ||dutorterraom.com^* ||roilsnadirink.com^* ||comasoiling.casa^* ||tackledisplay.com^* ||h1.fastlyanalytics.map.fastly.net^* ||static.wikia.nocookie.net/fandom-ae-assets/tracking-opt-in/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||seg.ad.gt^* ||a.ad.gt^* ||tag.durationmedia.net^* ||adgt.fandom.com^* ||p.ad.gt^* ||pixels.ad.gt^* !||public.servenobid.com/nobidtag/nobidtag.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||public.servenobid.com^* ||sync.srv.stackadapt.com^* ||originhermichermicpros.com^* ||dozubatan.com^* ||flongshartail.com^* ||tracking.mediaxpedia.com^* ||con.tryzens-analytics.com^* ||accesstra.de^* ||immigratethorn.com^* ||practisecolander.com^* ||installerleading.com^* ||glaresling.com^* ||masslistener.com^* ||etrecantformation.com^* ||installfree.pro^* ||ownandthaiho.biz^* ||positionas.club^* ||ipp1s.xyz^* ||cessyntactu.fun^* ||echnolog.club^* ||sensationaleducate.com^* ||muffinyourself.com^* ||hadsimz.com^*$script www.scientificamerican.com##.square-ad:remove() ||adsafen.com^* ||skimegcolder.com^* ||www.onclickmega.com/a/display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.onclickmega.com/ad/display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||steamdb.info/static/js/vendor/bugsnag.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ifastnet.com##div[id="cookiescript_injected"]:remove() ||geo.cookie-script.com/s/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cookie-script.com/s/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sproutstarbarnacle.com^* ||understandingharmoniousillegal.com^* ||anbox.io/js/cookieconsent.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css anbox.io##div[aria-label="cookieconsent"]:remove() anbox.io##span[id="cookieconsent:desc"]:remove() www.bonohost.net##div[class*="cookie-notice"]:remove() crypto.stackexchange.com##div[class*="js-consent-banner"]:remove() crypto.stackexchange.com##div[class="adsbox"]:remove() !www.dcode.fr##div[id="xb7295"]:remove() !www.dcode.fr##div[id="y2097"]:remove() !||cdn-a.yieldlove.com/yieldlove-bidder.js?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn-a.yieldlove.com^* www.dcode.fr##+js(aopr, insertAds) www.dcode.fr##+js(aopw, insertAds) !||quantcast.mgr.consensu.org/choice/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.dcode.fr##ins[class="adsbygoogle"]:remove() opg.life##*[class*="notice--cookie"]:remove() www.includehelp.com##ins[class="adsbygoogle"]:remove() www.includehelp.com##div[id="vi-sticky-ad"]:remove() www.includehelp.com##div[id="vi-ad"]:remove() www.includehelp.com##div[class="adsbyvli"]:remove() www.includehelp.com##div:nth-child(1):has-text(/advertisement/i):remove() www.includehelp.com##div[class="main-panel"]:style(width: 99vw !important;) neurosciencenews.com##div[class="mv-ad-box"]:remove() !neurosciencenews.com##div[class="adunitwrapper"]:remove() neurosciencenews.com##div[class*="adunit"]:remove() ||oa.openxcdn.net^* krakenfiles.com##div[id="cc_div"]:remove() ||krakenfiles.com/assets/js/cookie-banner.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css add0n.com##div[id="cookie"]:remove() webbrowsertools.com##div[class="card shadow card-body mb-2 m-lr description"]:has-text(/Advertisement/i):remove() www.section.io##div[id="termly-code-snippet-support"]:remove() www.base64decode.org##ins[class*="adsbypublift"]:remove() ||firestore.googleapis.com/google.firestore.v1.Firestore/Listen/channel?database=projects%2Fi-cnet-engagement-prod$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||newimagitasinc.hb.omtrdc.net^* linuxsecurity.com##div[class="cadre_alert_cookies"]:remove() linuxsecurity.com##div[class="adtype"]:remove() linuxsecurity.com##div[class^="ad_prev_main"]:remove() ||linuxsecurity.com/component/socialads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.devart.com##div[class="popup-wrapper js-popup-height"]:remove() www.remove.bg##div[class*="cookie-consent-info"]:remove() www.remove.bg##*[class*="consent-class"]:remove() www.remove.bg##div[data-v-7c792270]:remove() www.pngtosvg.com##div[class*="ezo_ad"]:remove() www.pngtosvg.com##*[class*="ezmob-footer"]:remove() www.pngtosvg.com##*[class*="ezoic-ad"]:remove() www.aconvert.com##div[id="cck-box"]:remove() svg-converter.com##div[id="catapult-cookie-bar"]:remove() ! TODO: ^script doesn't work with attributes since checked before DOM created? svg-converter.com##script[id^="cookie-consent-js"]:remove() ||svg-converter.com/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||svg-converter.com/wp-content/plugins/uk-cookie-consent/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css svg-converter.com##ins[class="adsbygoogle"]:remove() svg-converter.com##div[id="vBOdfHgubrSo"]:remove() ||barbedgoodnight.com^* ||polldenunciationdeveloping.com^* ||clutchsavage.com^* ||hibernateagitationpre.com^* svg-clipart.com##ins[class="adsbygoogle"]:remove() www.gamersnexus.net##div[id^="div-gpt-ad-"]:remove() www.gamersnexus.net##div[class="gsc-adBlockInvisible"]:remove() www.gamersnexus.net##div[class="googlead"]:remove() www.gamersnexus.net##ins[class="adsbygoogle"]:remove() softgateon.herokuapp.com##:xpath(//div[5]):remove() sedo.com##div[class^="cookie__"]:remove() sedo.com##aside[data-cookie-banner]:remove() masterkreatif.net##button:has-text(/Download Crack/i):remove() www.mazterize.com##button[id="dl-b"]:remove() www.mazterize.com##button[id="dl-r"]:remove() www.mazterize.com##button[id="dl-g"]:remove() ouo.io##span[class="msg-adblock"]:remove() ouo.io##div[id^="M282855ScriptRootC"]:remove() ||cdn.sedo.com/components/TfcP3WYRyZ9A/cookie-banner.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css uploadev.org##+js(remove-attr.js, disabled, #downloadbtn, stay) ||uc-static.azureedge.net/static/js/new-design/ctr/cookies.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css unicode-table.com##div[id="js-cookie"]:remove() !||sivian-ebe.com/imp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sivian-ebe.com^* ||ositioninyv.biz^* ||ngmillaget.fun^* ||d1ev866ubw90c6.cloudfront.net^* www.gsmarena.com##span[class="ad-label"]:remove() www.gsmarena.com##span[class="ad-c-label"]:remove() www.gsmarena.com##div[id^="div-gpt-ad-"]:remove() gpuopen.com##div[id="cookie-notice"]:remove() www.hanselman.com##div[aria-label="cookieconsent"]:remove() ||www.hanselman.com/blog/theme/jinyang/scripts/cda-tracker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.hanselman.com##div[id^="div-gpt-ad-"]:remove() www.hanselman.com##div[class*="ad-item"]:remove() www.hanselman.com##div[class*="ad-sponsoreditem"]:remove() www.hanselman.com##div[class="lqm_ad"]:remove() ||www.hanselman.com/blog/theme/jinyang/scripts/cookieconsent.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.nhnuofzjh.com^* ||www.xkipnbabzbmwmr.com^* ||apexwantstar.com^* !||query.pureleads.com^* www.tenorshare.net##div[id="gdprAgree"]:remove() www.imei-unlocker.com##div[class="cookiealert"]:remove() ||www.uhqpnhorurueku.com^* ||www.tywzyhfliwdbu.com^* ! TODO: ^script doesn't work with attributes since checked before DOM created? romforandroid.com##script[data-ad-client]:remove() romforandroid.com##body:style(overflow: scroll !important;) ||ealthetime.biz^* ||herwisegim.fun^* www.firmwarefilesearch.com##ins[class="adsbygoogle"]:remove() www.firmwarefilesearch.com##div[id^="floating_ads_bottom_"]:remove() samsungfirmware.net##div[id="ezmobfooter"]:remove() ||samsungfirmware.net/wp-content/plugins/ad-inserter/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||samsungfirmware.net/ezoic_awesome/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css samsungfirmware.net##span[class*="ezoic-ad"]:remove() samsungfirmware.net##+js(aopr, __ez) samsungfirmware.net##+js(aopw, __ez) !blocks lazyload images !samsungfirmware.net##script[data-ezscrex]:remove() samsungfirmware.net##+js(set-constant, secs, 0) www.droidviews.com##+js(aopr, __ez) www.droidviews.com##+js(aopw, __ez) www.droidviews.com##+js(aopr, _ezaq) www.droidviews.com##+js(aopw, _ezaq) www.droidviews.com##span[class="ezoic-adpicker-ad"]:remove() www.droidviews.com##span[id^="ezoic-pub-ad-"]:remove() www.droidviews.com##span[id^="div-gpt-ad-"]:remove() www.thecustomdroid.com##div[class="sidebar-ad"]:remove() www.thecustomdroid.com##div[class="_ap_apex_ad"]:remove() www.thecustomdroid.com##+js(aopr, adpushup) www.thecustomdroid.com##+js(aopw, adpushup) www.thecustomdroid.com##div[class="adsbyvli"]:remove() www.thecustomdroid.com##+js(aopr, ai_debug_cookie_status) www.thecustomdroid.com##+js(aopw, ai_debug_cookie_status) www.thecustomdroid.com##ins[class*="adsbygoogle"]:remove() alabsidev.blogspot.com##div[class="SeoPlusAds"]:remove() android.stackexchange.com##div[class*="js-consent-banner"]:remove() www.leakite.com##div[data-ad]:remove() ||uwoaptee.com^* ||stovoori.net^* ||egreephu.com^* ||bikrurda.net^* ||acidpigs.com^* !||fm.cnbc.com/applications/cnbc.com/resources/files/2020/04/27/AppMeasurement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fm.cnbc.com/applications/cnbc.com/resources/files/*/AppMeasurement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||fm.cnbc.com/applications/cnbc.com/resources/files/2020/03/28/VisitorAPI.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fm.cnbc.com/applications/cnbc.com/resources/files/*/VisitorAPI.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||oimg.nbcuni.com^* llamadaoculta.com##ins[class="adsbygoogle"]:remove() !||d1xkyo9j4r7vnn.cloudfront.net/public/external/check.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||d1xkyo9j4r7vnn.cloudfront.net/public/external/impression.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||d1xkyo9j4r7vnn.cloudfront.net/public/external/t.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||d1xkyo9j4r7vnn.cloudfront.net/public/click.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d1xkyo9j4r7vnn.cloudfront.net^* !||dgu9g3a2kzqx2.cloudfront.net/public/external/check.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !dgu9g3a2kzqx2.cloudfront.net##+js(trusted-set-constant, closeType, redirect) !dgu9g3a2kzqx2.cloudfront.net##+js(set-constant, offersCompleted, 3, stay) !dgu9g3a2kzqx2.cloudfront.net##+js(set-constant, payoutCompleted, 3, stay) !dgu9g3a2kzqx2.cloudfront.net##+js(set-constant, logged_impression, true, stay) !dgu9g3a2kzqx2.cloudfront.net##+js(set-constant, logged_event, true, stay) ||dgu9g3a2kzqx2.cloudfront.net^* smartunlock.me##+js(trusted-set-constant, closeType, redirect) smartunlock.me##+js(set-constant, offersCompleted, 3, stay) smartunlock.me##+js(set-constant, payoutCompleted, 3, stay) smartunlock.me##+js(set-constant, logged_impression, true, stay) smartunlock.me##+js(set-constant, logged_event, true, stay) cpabuild.com##+js(trusted-set-constant, userSettings.onClose, redirect) cpabuild.com##+js(set-constant, offersCompleted, 3, stay) cpabuild.com##+js(set-constant, payoutCompleted, 3, stay) cpabuild.com##+js(set-constant, logged_impression, true, stay) cpabuild.com##+js(set-constant, logged_event, true, stay) ||playbuzzltd-d.openx.net^* smallbusiness.chron.com##div[data-ad-unit-name]:remove() smallbusiness.chron.com##div[class="exp-ui__cta-fullscreen"]:remove() ||atrack.avplayer.com^* ||prd-collector-anon.ex.co^* www.dummies.com##div[class="footer-ads-slide"]:remove() www.dummies.com##div[class*="du-ad-unit"]:remove() www.dummies.com##div[class="ads-sidebar"]:remove() ||confiant-integrations.global.ssl.fastly.net/BycVE6aBbhYomq3GgyNrFJLjajc/gpt_and_prebid/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||get.s-onetag.com^* ||www.dummies.com/wp-content/plugins/dummies-ads-manager/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! TODO: ^script doesn't work with attributes since checked before DOM created? www.dummies.com##script[id^="dummies-ads-manager-"]:remove() gsm.vpnwp.com##div[id="catapult-cookie-bar"]:remove() ||gsm.vpnwp.com/wp-content/cache/min/1/wp-content/plugins/uk-cookie-consent/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css gsm.vpnwp.com##div[class*="ytp-paid-content-"]:remove() www.softwarecrackguru.com##div[id="gourabblock"]:remove() ! TODO: ^script doesn't work with attributes since checked before DOM created? www.softwarecrackguru.com##script[data-ad-client]:remove() www.softwarecrackguru.com##ins[class="adsbygoogle"]:remove() ||cdn.staticaly.com/gist/pyarmeindia/*/gourabblock.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||glow-hostz.xyz^* ||ciid2servr.xyz^* ||54.145.152.252/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css techznpp.blogspot.com##div[id="pop-body-73868"]:remove() techznpp.blogspot.com##div[id="header-ads"]:remove() techznpp.blogspot.com##sbt[class*="sbt-adnet"]:remove() techznpp.blogspot.com##div[id^="adm-container-"]:remove() techznpp.blogspot.com##div[id^="xyz-interstitial-background"]:remove() techznpp.blogspot.com##sbt[id="sbt-block256256"]:remove() techznpp.blogspot.com##iframe[id^="adm-id-"]:remove() !||bulletprofitpop.com/display/index.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bulletprofitpop.com^* ||account.bulletprofit.com/upload/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bulletprofitads.com/display/items.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bulletprofitadclick.com/track/index.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css bulletprofitads.com##+js(set-constant, skipinter, 0) www.martview-forum.com##li[class*="notice--cookie"]:remove() www.martview-forum.com##div[class*="samBannerUnit"]:remove() a2zflashfile.com##div[id^="floating_ads_bottom"]:remove() a2zflashfile.com##ins[class="adsbygoogle"]:remove() ||fie4host.xyz^* ||544bd1e82a9c8c39.com^* ||extentitle.space^* ||mawlaybob.com^* ||potentingaknt.club^* ||e21b1642db801b2a.com^* ||ngmeabou.biz^* ||822f797ef9d68ad3.com^* ||dikkoplida.cam^* ||34ed5da2977d1ace.com^* ||feb12740de5be9b3.com^* ||6f363e072e82206b.com^* ||777ff1571bab7667.com^* www.upload-4ever.com##+js(set-constant, tick, 0) www.upload-4ever.com##+js(nano-stb, /.?/, 500) ||s3.us-east-2.amazonaws.com/dexteritydownloads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||downloads24754.downflscloud.com^* androidmtk.in##div[id="eu-cookie-law"]:remove() androidmtk.in##aside[class*="widget_eu_cookie_law_widget"]:remove() ! TODO: ^script doesn't work with attributes since checked before DOM created? androidmtk.in##script[id="eu-cookie-law-script-js"]:remove() ||c0.wp.com/p/jetpack/9.9/_inc/build/widgets/eu-cookie-law/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css androidmtk.in##+js(aopr, document.oncontextmenu) ||ribz-server.xyz^* ||fliedridgin.com^* ||yahoo.bannertrack.net^* veryfiles.com##ins[class^="bmadblock-"]:remove() veryfiles.com##+js(remove-attr, disabled, .downloadbtn, stay) veryfiles.com##+js(aopr, interstitialSlot) veryfiles.com##+js(aopw, interstitialSlot) veryfiles.com##+js(aopr, gdprApplies) veryfiles.com##+js(aopw, gdprApplies) veryfiles.com##+js(aopr, adunit) veryfiles.com##+js(aopw, adunit) veryfiles.com##+js(aopr, _0x57e0) veryfiles.com##+js(aopw, _0x57e0) veryfiles.com##+js(aopr, XrhwLPllmYD) veryfiles.com##+js(aopw, XrhwLPllmYD) veryfiles.com##input[id="adblock_detected"]:remove() veryfiles.com##^script:has-text(/adblock/):remove() veryfiles.com##+js(remove-node-text, script, /adblock/gm) veryfiles.com##a[href*="/www.passtechusa.com/"]:remove() veryfiles.com##div[id="ads-left"]:remove() veryfiles.com##div[id="ads-right"]:remove() veryfiles.com##iframe[data-id^="veryfiles.com_"]:remove() veryfiles.com##div[id*="ScriptRootC"]:remove() veryfiles.com##meta[name="verify-admitad"]:remove() veryfiles.com##meta[name="propeller"]:remove() ||yasni.adclixx.net^* ||yasni.adtrackers.net^* ||torrentz.adclixx.net^* ||yasni.adnetasia.com^* ||torrentz.bannertrack.net^* ||www.doubleclickbygoogle.com^* ||crunchyroll.adnetasia.com^* ||www.passtechusa.com^* ||d3tqvsgpuj2be2.cloudfront.net^* ||mobileoffers-du-download.com^* ||4jsdhsfd4.monster^* ||hypevpn.club^* ||apk4all.com/wp-content/cache/busting/google-tracking/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gussame.com^* ||phortaub.com^* ||glimtors.net^* ||js.mobileapps-v-download.com^* ||mobileoffers-7-v-download.com^* ||rd.mobileoffers-5-j-download.com^* ||ozongees.com^* ||jeehathu.com^* ||wheeshoo.net^* ||casual.plarium.com^* ||cdn01.x-plarium.com/browser/content/portalclientpixels/src/Static/en/js/ad_vikings_en_with_callback.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||df2c37j126n3o.cloudfront.net^* ||plarium.com/landings/api/user/data/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css apkzz.com##ins[class="adsbygoogle"]:remove() ||smartproxy.com/wp-content/plugins/uk-cookie-consent/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css smartproxy.com##div[id="catapult-cookie-bar"]:remove() ! TODO: ^script doesn't work with attributes since checked before DOM created? smartproxy.com##script[id^="cookie-consent-js"]:remove() www.guidingtech.com##ins[class="adsbygoogle"]:remove() www.guidingtech.com##div[class="ad-centered"]:remove() www.guidingtech.com##div[class*="detail-ad"]:remove() ||dlupload.com/adbanner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||verifychocolate.com^* ||latentcreeper.com^* ||congressaffrayghosts.com^* ||depictimproperdenunciation.com^* ||khabarbabal.online^* ||crisistuesdayartillery.com^* dlsharefile.com##ins[class="adsbygoogle"]:remove() dlsharefile.com##+js(aopr, decodedCookie) dlsharefile.com##+js(aopw, decodedCookie) ||dlupload.com/dlad3.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dlupload.com/dlaads7.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dellswhinyrank.com^* !||goraps.com/fullpage.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||goraps.com^* ||ptoangir.com^* gsmatoztool.com##iframe[data-google-container-id] gsmatoztool.com##ins[class="adsbygoogle"]:remove() www.the-sun.com##div[class*="advert-wrapper"]:remove() www.the-sun.com##div[class*="dfp-ad"]:remove() www.the-sun.com##div[class*="-advert-"]:remove() www.the-sun.com##div[id^="advert-"]:remove() www.the-sun.com##div[class*="small-ad"]:remove() www.the-sun.com##div[class*="mpu-ad"]:remove() www.the-sun.com##div[class="cookie-sync-wrapper"]:remove() www.the-sun.com##div[class^="amp-adv-wrapper"] > span[class="amp-adv-wrapper__text"]:has-text(Advertisement):upward(1):remove() www.the-sun.com##script[id="adTestgroupScript"]:remove() www.the-sun.com##amp-script[id="adTestgroup"]:remove() www.the-sun.com##amp-ad:remove() www.the-sun.com##amp-sticky-ad:remove() www.the-sun.com##amp-consent:remove() www.the-sun.com##amp-analytics:remove() ! The following rule removes non-advertising content too. !www.the-sun.com##div,span[class*="amp-adv-wrapper"]:remove() ||ads.the-sun.com^* divyanet.com##div[id="customad"]:remove() divyanet.com##div[id="above-the-fold-ad"]:remove() divyanet.com##ins[class="adsbygoogle"]:remove() ! TODO: ^script doesn't work with attributes since checked before DOM created? divyanet.com##script[src^="data:text/javascript;base64,"]:remove() ||cundumbagroom.com^* www.getdroidtips.com##div[class="code-block-label"]:has-text(/advertisements/i):remove() samsungcombinationfile.com##+js(aopr, document.oncontextmenu) samsungcombinationfile.com##+js(aopr, document.onselectstart) samsungcombinationfile.com##+js(aopr, document.onmousedown) samsungcombinationfile.com##ins[class="adsbygoogle"]:remove() ! TODO: ^script doesn't work with attributes since checked before DOM created? !samsungcombinationfile.com##script[id='rocket-preload-links-js-after']:remove() !samsungcombinationfile.com##+js(aeld, /^(?:copy|test|mouseout|mousedown|touchstart|selectstart|dragstart)$/) odindownloader.com##+js(aopr, document.oncontextmenu) odindownloader.com##+js(aopr, document.onselectstart) odindownloader.com##+js(aopr, document.onmousedown) odindownloader.com##ins[class="adsbygoogle"]:remove() www.gsmbase.com##div[id="COOKIELAW"] www.dsmedia24.com##ins[class="adsbygoogle"]:remove() www.dsmedia24.com##+js(aopr, document.onselectstart) ||ptauxofi.net^* ||nooroapo.com^* ||ceesty.com/bundles/advertisement/img/tracking.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ceesty.com/bundles/smeweb/img/advertisement-tracking-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ceesty.com/bundles/smeweb/img/tracking-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||exchange.mediavine.com^* ||scripts.mediavine.com/tags/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! TODO: ^script doesn't work with attributes since checked before DOM created? www.wipelock.com##script[id="mv-script-wrapper-js"]:remove() www.wipelock.com##div[class="mv-ad-box"]:remove() www.wipelock.com[class*="adunitwrapper"]:remove() www.wipelock.com[class="adunitlabel"]:remove() www.imeione.com##div[id="COOKIELAW"]:remove() ||thejobandl.biz^* hurirk.net##+js(aopr, _0x3f76) hurirk.net##+js(aopw, _0x3f76) hurirk.net##div[id="continue"]:style(display: inline; !important;) hurirk.net##div[id="daily_limit_captcha_fade"] hurirk.net##div[id="_bd"] hurirk.net##div[id="fade"] hurirk.net##div[id="cookie_notice"] !||cdn.hurirk.net/static/js/amvn.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||hurirk.net/js/display.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css hurirk.net##+js(set-constant, optout_adfly, 1, stay) !hurirk.net##a[id="skip_bu2tton"]:style(display: inline !important;) hurirk.net##*[id="skip_bu2tton"]:style(display: inline !important;) hurirk.net##+js(set-constant, countdown, 0, stay) hurirk.net##a[class="mwButton"]:style(display: inline !important;) hurirk.net##iframe www.gizmogrind.com##div[id="obfx-cookie-bar"] www.movical.net##div[id="aviso-ck"] www.99images.com##div[class*="ad-unit"] www.99images.com##ins[class="adsbygoogle"]:remove() ||cdn.jsdelivr.net/gh/jokerx000/js/arlinablock.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css links.apksvip.com##div[id="cookie-pop"] links.apksvip.com##ins[id="adsbygoogle"] ||links.apksvip.com/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css links.apksvip.com##div[class="ad-banner"] ||oagnatch.com^* links.apksvip.com##+js(remove-class, disabled, , stay) links.apksvip.com##+js(remove-class, hidden, #go-link, stay) links.apksvip.com##+js(remove-class, hidden, #go-submit, stay) !prevents countdown !links.apksvip.com##+js(set-constant, counter_start_object, {}, stay) !links.apksvip.com##+js(nostif.js, /checkAdblockUser/i) links.apksvip.com##+js(nostif.js, checkAdblockUser()) links.apksvip.com##+js(nostif.js, /^/, 1000) miraclebox4unlock.blogspot.com##div[id="ignielAdBlock"] !miraclebox4unlock.blogspot.com##+js(remove-attr, style, html,body.item) miraclebox4unlock.blogspot.com##html,body[class="item"]:style(overflow:scroll !important;) !miraclebox4unlock.blogspot.com##html,body[class="item"]:style(overflow:auto !important;) miraclebox4unlock.blogspot.com##+js(aopr, document.oncontextmenu) miraclebox4unlock.blogspot.com##+js(aeld, /^(?:mouseenter)$/) miraclebox4unlock.blogspot.com##*:style(user-select: text; -webkit-user-select: text; -ms-user-select: text;) miraclebox4unlock.blogspot.com##button[class="button1 button2 buttonPress-38"] ||southvane.com^* ||space00.xyz^* flash-firmware.blogspot.com##.tutupAds flash-firmware.blogspot.com##div[id="ignielAdBlock"] flash-firmware.blogspot.com##div[class="isiAds"] flash-firmware.blogspot.com##div[id="footer-ad"] flash-firmware.blogspot.com##ins[class="adsbygoogle"]:remove() flash-firmware.blogspot.com##div[id="topad"] flash-firmware.blogspot.com##*[class*="ad-inside"] flash-firmware.blogspot.com##+js(aopr, adsbygoogle) flash-firmware.blogspot.com##+js(aopw, adsbygoogle) !flash-firmware.blogspot.com##*:style(overflow: scroll;) !flash-firmware.blogspot.com##div:style(overflow: hidden;) !flash-firmware.blogspot.com##h1:style(overflow: hidden;) !flash-firmware.blogspot.com##h2:style(overflow: hidden;) !flash-firmware.blogspot.com##h3:style(overflow: hidden;) !flash-firmware.blogspot.com##h4:style(overflow: hidden;) !flash-firmware.blogspot.com##li:style(overflow: hidden;) !flash-firmware.blogspot.com##a:style(overflow: hidden;) !flash-firmware.blogspot.com##ol:style(overflow: hidden;) !!flash-firmware.blogspot.com##slider:style(overflow: hidden;) !flash-firmware.blogspot.com##ul:style(overflow: hidden;) !flash-firmware.blogspot.com##p:style(overflow: hidden;) !flash-firmware.blogspot.com##strong:style(overflow: hidden;) !flash-firmware.blogspot.com##span:style(overflow: hidden;) !flash-firmware.blogspot.com##*[class*="fa"]:style(overflow: hidden;) flash-firmware.blogspot.com##html,body[class="item"]:style(overflow:scroll !important;) !flash-firmware.blogspot.com##html,body[class="item"]:style(overflow:auto !important;) flash-firmware.blogspot.com##+js(aeld, /^(?:mouseenter:test:click)$/) flash-firmware.blogspot.com##*:style(user-select: text; -webkit-user-select: text; -ms-user-select: text;) ||mobileoffers-7-l-download.com^* ||lock521.xyz^* apkboxdl.com##a[href*="/mobileoffers-7-l-download.com/"] ||twigwagcalligraphy.com^* ||quandarydisadvantage.com^* ||alcoholicsort.com^* ||scoutdealingdrift.com^* ||tcs.upayurl.com^* www.techgsmsolutions.com##button[class="user button-red"] www.techgsmsolutions.com##button[class="button-green user"] www.techgsmsolutions.com##button[class="button-red user"] !dl.technicalcomputersolution.com##button[class="user button-red"] !dl.technicalcomputersolution.com##button[class="button-green user"] !dl.technicalcomputersolution.com##button[class="button-red user"] !www.technicalcomputersolution.com##button[class="user button-red"] !www.technicalcomputersolution.com##button[class="button-green user"] !www.technicalcomputersolution.com##button[class="button-red user"] technicalcomputersolution.com##button[class="user button-red"] technicalcomputersolution.com##button[class="button-green user"] technicalcomputersolution.com##button[class="button-red user"] ||thefileslocker.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||thefileslocker.com/js/countdown.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css thefileslocker.com##button[data-user="565"] thefileslocker.com##+js(remove-attr, disabled, #downloadbtn) thefileslocker.com##span[id="countdown"] ||sightjutfar.com^* ||myroaster.xyz^* !security.stackexchange.com##div[class*="js-consent-banner"] stackexchange.com##div[class*="js-consent-banner"] jis-eurasipjournals.springeropen.com##img[class="tracker"] ||jis-eurasipjournals.springeropen.com/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css jis-eurasipjournals.springeropen.com##*[class*="c-ad"] jis-eurasipjournals.springeropen.com##*[class*="adsbox"] jis-eurasipjournals.springeropen.com##div[id^="div-gpt-ad-"] ||api.countapi.xyz^* gsmcracktools.blogspot.com##div[id="ignielAdBlock"] gsmcracktools.blogspot.com##div[class="isiAds"] gsmcracktools.blogspot.com##div[id="footer-ad"] gsmcracktools.blogspot.com##button[data-user="45"] gsmcracktools.blogspot.com##html,body[class="item"]:style(overflow:scroll !important;) !gsmcracktools.blogspot.com##html,body[class="item"]:style(overflow:auto !important;) ||sollsectivej.fun^* ||reaboumei.biz^* flashbd24.blogspot.com##div[id="ignielAdBlock"]:remove() flashbd24.blogspot.com##div[class="isiAds"]:remove() flashbd24.blogspot.com##div[id="footer-ad"]:remove() flashbd24.blogspot.com##html,body[class="item"]:style(overflow:scroll !important;) !flashbd24.blogspot.com##html,body[class="item"]:style(overflow:auto !important;) ||biggsti.com^* !||cellularnews.com/wp-content/plugins/cn-lozad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cellularnews.com/wp-content/themes/blog-prime-child/assets/js/lazyload-ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css cellularnews.com##.responsive-thin-ad-wrapper:remove() !cellularnews.com##div[class*="responsive-ad-wrapper"]:remove() cellularnews.com##div[class*="responsive-ad"]:remove() cellularnews.com##div[class*="adsense"]:remove() cellularnews.com##div[class="first-ad"]:remove() cellularnews.com##div[id^="floating_ads_"]:remove() cellularnews.com##div[id^="sticky-footer-ads"]:remove() ||msoplease.biz^* www.phonemore.com##div[class="gdpr"]:remove() www.androidweblog.com##+js(abort-on-property-read, __ez) www.androidweblog.com##+js(abort-on-property-write, __ez) www.androidweblog.com##+js(abort-on-property-read, window.ezogtk) www.androidweblog.com##+js(abort-on-property-write, window.ezogtk) ! TODO: ^script doesn't work with attributes since checked before DOM created? www.androidweblog.com##script[data-ezscrex]:remove() www.androidweblog.com##span[class="ezoic-adpicker-ad"]:remove() www.androidweblog.com##span[class*="ezoic-ad"]:remove() www.androidweblog.com##span[class*="adtester-container"]:remove() www.androidweblog.com##span[class*="adsbygoogle"]:remove() gsmcracklink.blogspot.com##button[class="button1 button2 buttonPress-38"]:remove() zcpa.us##div[id="cookie-pop"]:remove() zcpa.us##div[class="ad-banner"]:remove() ||zcpa.us/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||iptautup.com^* ! TODO: ^script doesn't work with attributes since checked before DOM created? zcpa.us##script[data-zone-domain="https://iptautup.com"]:remove() !zcpa.us##+js(set-constant, counter_start_object, {}, stay) !zcpa.us##+js(nostif.js, /checkAdblockUser/) zcpa.us##+js(nostif.js, /checkAdblockUser\(\)/) zcpa.us##+js(nostif.js, /^/, 1000) zcpa.us##form[id="go-popup"]:remove() zcpa.us##+js(remove-class, disabled, .btn-success, stay) zcpa.us##+js(remove-class, hidden, #go-submit, stay) ||zcpa.us/whugesto.net/afu.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||roujonoa.net^* gsm9x.in##+js(aeld, /^(?:dragstart|keydown|keyup|click|contextmenu|mousedown)$/) gsm9x.in##+js(aopr, document.oncontextmenu) gsm9x.in##+js(aopr, document.onselectstart) gsm9x.in##+js(aopr, document.onmousedown) !gsm9x.in##*:style(user-select: text; -webkit-user-select: text; -ms-user-select: text;) gsm9x.in##ins[class="adsbygoogle"]:remove() www.wish.com##div[id="consent_blackbar"]:remove() www.wish.com##div[id="teconsent"]:remove() ||static.securedtouch.com/sdk/st-ping-1.1.0p.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.securedtouch.com/sdk/pong.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css halabtech.com##*[class*="ezoic-ad"]:remove() halabtech.com##span[class*="adtester-container"]:remove() halabtech.com##span[class*="ezmob-footer"]:remove() halabtech.com##+js(aopr, advanced_ads_ready) halabtech.com##+js(aopw, advanced_ads_ready) ! TODO: ^script doesn't work with attributes since checked before DOM created? halabtech.com##script[id^="advanced-ads"]:remove() halabtech.com##script[id^="advanced_ads"]:remove() ||halabtech.com/wp-content/plugins/image-watermark/js/no-right-click.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||halabtech.com/wp-content/plugins/wp-content-copy-protection/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||halabtech.com/wp-content/plugins/advanced-ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||halabtech.com/wp-content/plugins/advanced-ads-sticky-ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||halabtech.com/wp-content/plugins/advanced-ads-pro/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||halabtech.com/wp-content/plugins/advanced-ads-responsive/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css halabtech.com##+js(aeld, /^(?:keydown|test|click|dblclick|pagehide)$/) phandroid.com##link[id^="cookie-law-info"]:remove() phandroid.com##div[id^="cookie-law-info"]:remove() ||phandroid.com/wp-content/plugins/cookie-law-info/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||downloadsfreefile.com^* ||s3.us-east-2.amazonaws.com/startdllocations/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.gsmcrack.com##a[id="u5673122"]:remove() ! TODO: ^script doesn't work with attributes since checked before DOM created? zeemalcrack.com##script[id="wpcp_css_disable_selection"]:remove() zeemalcrack.com##script[id="wpcp_disable_Right_Click"]:remove() zeemalcrack.com##script[src^="data:text/javascript;base64"]:remove() zeemalcrack.com##+js(aopr, document.oncontextmenu) zeemalcrack.com##+js(aopw, document.oncontextmenu) zeemalcrack.com##+js(aeld, /^(?:keydown|dragstart|click|contextmenu|mousedown|selectstart)$/) zeemalcrack.com##+js(set-constant, iscontenteditable, true, stay) zeemalcrack.com##^script:has-text(/wccp_free_iscontenteditable/) zeemalcrack.com##+js(remove-node-text, script, /wccp_free_iscontenteditable/gm) ||zeemalcrack.com/wp-content/plugins/google-analytics-dashboard-for-wp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css zeemalcrack.com##button[name="continuebtn"]:remove() zeemalcrack.com##div[id="wpcp-error-message"]:remove() zeemalcrack.com##*:style(-moz-user-select:text; -webkit-user-select:text; -webkit-touch-callout: text; -khtml-user-select: text; -ms-user-select: text; user-select: text;) ||nerexmen.xyz^* www.gsmfirmware.net##+js(aopr, _ezaq) www.gsmfirmware.net##+js(aopw, _ezaq) www.gsmfirmware.net##*:style(-moz-user-select:text; -webkit-user-select:text; -webkit-touch-callout: text; -khtml-user-select: text; -ms-user-select: text; user-select: text;) dl.gsmfirmware.net##ins[class="adsbygoogle"]:remove() dl.gsmfirmware.net##+js(aopr, adsbygoogle) dl.gsmfirmware.net##+js(aopw, adsbygoogle) !dl.gsmfirmware.net##+js(aopr, t.fuckAdBlock) !dl.gsmfirmware.net##+js(aopw, t.fuckAdBlock) ||cdn.jsdelivr.net/gh/AsifKamboh-COM/tools@main/levelmaxblock.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.techoxygen.com##*:style(-moz-user-select:text; -webkit-user-select:text; -webkit-touch-callout: text; -khtml-user-select: text; -ms-user-select: text; user-select: text;) ! TODO: ^script doesn't work with attributes since checked before DOM created? !www.techoxygen.com##script[id="wpcp_disable_selection"]:remove() !www.techoxygen.com##script[id="wpcp_disable_Right_Click"]:remove() www.techoxygen.com##script[id^="wpcp_disable_"]:remove() www.techoxygen.com##+js(aopr, _statcounter) www.techoxygen.com##+js(aopw, _statcounter) www.techoxygen.com##+js(remove-class, unselectable, ,) www.techoxygen.com##div[id^="quads-ad"]:remove() www.techoxygen.com##div[id="wpcp-error-message"]:remove() www.techoxygen.com##+js(aopr, document.onkeydown) www.techoxygen.com##+js(aopw, document.onkeydown) www.techoxygen.com##+js(aopr, document.onselectstart) www.techoxygen.com##+js(aopw, document.onselectstart) www.techoxygen.com##+js(aopr, document.onmousedown) www.techoxygen.com##+js(aopw, document.onmousedown) www.techoxygen.com##+js(aopr, document.onclick) www.techoxygen.com##+js(aopw, document.onclick) www.techoxygen.com##+js(aopr, document.ondragstart) www.techoxygen.com##+js(aopw, document.ondragstart) www.techoxygen.com##+js(aopr, document.oncontextmenu) www.techoxygen.com##+js(aopw, document.oncontextmenu) !www.techoxygen.com##+js(aopr, window.event.keyCode) !www.techoxygen.com##+js(aopw, window.event.keyCode) www.techoxygen.com##+js(aopr, target.onselectstart) www.techoxygen.com##+js(aopw, target.onselectstart) www.techoxygen.com##+js(aopr, target.onmousedown) www.techoxygen.com##+js(aopw, target.onmousedown) www.techoxygen.com##+js(aeld, /^(?:click|mousedown)$/) !www.techoxygen.com##+js(set-constant, token, '', stay) www.techoxygen.com##^script:has-text(/disableSelection/):remove() www.techoxygen.com##+js(remove-node-text, script, /disableSelection/gm) ||backjawtanoa.com^* ||greenrecru.biz^* ||ofyouope.club^* makemoneywithurl.com##+js(aeld, /^(?:mouseover)$/) makemoneywithurl.com##+js(remove-class, disabled, #getlink) makemoneywithurl.com##div[id="hidden"] > form:nth-child(1) > div:nth-child(2):style(display: inline;) ||lib.wtg-ads.com^* ||d3beefy8kd1pr7.cloudfront.net^* ||ysenidorre.biz^* ||waytogrow-d.openx.net^* ||www.gobrowse.net/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nuclearads.com/display/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nuclearads.com/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lnfcdn.getsurl.com/js/aab.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dflikvabz4suu.cloudfront.net^* ||spuezain.com^* ||konradsneak.com^* ||spewyelks.com^* za.gl##+js(remove-class, hidden, #go-submit) za.gl##+js(remove-attr, disabled, #go-submit) za.gl##form[id="go-popup"]:remove() za.gl##div[id="cookie-pop"]:remove() ||www.clarity.ms/eus2/collect$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.clarity.ms/eus/collect$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.clarity.ms/scus/collect$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||onsanothi.biz^* ||za.gl/external/visitorsfilter/geo/redir.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||winprize.axyf.xyz^* !blocks disqus comments !||d231vab146qzfb.cloudfront.net^* !||cdn.ampproject.org/rtv/011911052130250/v0/amp-ad-0.1.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.ampproject.org/rtv/011911052130250/v0/amp-ad-network-adsense-impl-0.1.js !||cdn.ampproject.org/rtv/012105072136000/v0/amp-ad-network-doubleclick-impl-0.1.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.ampproject.org/rtv/012105072136000/v0/amp-analytics-0.1.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.ampproject.org/rtv/012105072136000/v0/analytics-vendors/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.ampproject.org/rtv/*/v0/amp-ad-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.ampproject.org/rtv/*/v0/amp-analytics-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.ampproject.org/rtv/*/v0/analytics-vendors/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.ampproject.org/v0/amp-ad-0.1.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.ampproject.org/v0/amp-ad-exit-0.1.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.ampproject.org/v0/amp-analytics-0.1.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.ampproject.org/v0/amp-story-auto-ads-0.1.mjs$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.ampproject.org/v0/amp-auto-ads-0.1.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.ampproject.org/v0/amp-ad-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.ampproject.org/v0/amp-analytics-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.ampproject.org/v0/amp-sticky-ad$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.ampproject.org/v0/amp-story-auto-ads-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.ampproject.org/v0/amp-auto-ads-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.ampproject.org/v0.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.ampproject.org/amp-ad-verifying-keyset.json$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.ampproject.org/amp4ads-v0.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css odindownload.com##*[class^="i-amphtml-new-loader-ad-"]:remove() odindownload.com##amp-ad:remove() foxtrot.com##div[id="cookie-notice"]:remove() www.express.co.uk##div[id^="div-gpt-ad-"]:remove() www.express.co.uk##div[class="taboola-container"]:remove() www.express.co.uk##div[class="taboola-above-article"]:remove() www.express.co.uk##div[id="taboola-ad"]:remove() www.express.co.uk##div[id="bottomad"]:remove() www.express.co.uk##div[id="taboola-right-rail-express"]:remove() www.vivo.com##div[class^="common_prompt-privacy"]:remove() www.vivo.com##div[id="onetrust-banner-sdk"]:remove() ||cdn-apac.onetrust.com/consent/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.vivo.com##*[class*="vep-one-trust-cookie-setting"]:remove() www.vivo.com##div[class*="privacy-pop-up"]:remove() www.vivo.com##+js(aopr, dataTrackingPage) www.vivo.com##+js(aopw, dataTrackingPage) www.vivo.com##+js(aeld, /^(?:click|keydown|pointerdown|mousedown|MSPointerDown|selectstart|contextmenu|scroll)$/) !www.vivo.com##div[class="reta-top-map"]:style(overflow: scroll !important;) !www.vivo.com##html,body:style(overflow: scroll !important;) www.vivo.com##+js(remove-class, public_noscroll, , stay) tsar3000.com##div[id="cookie-notice"]:remove() www.frp-tool.com##ins[class="adsbygoogle"]:remove() softwareworld-us.blogspot.com##div[class="overlay"]:remove() ||sdarchpro.biz^* alltips24.needsrom.com##ins[class="adsbygoogle"]:remove() alltips24.needsrom.com##+js(aopr, adsbygoogle) alltips24.needsrom.com##+js(aopw, adsbygoogle) ||cdn.jsdelivr.net/gh/Indzign/InSEO@master/levelmaxblock.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.avastudio.org##div[id="top-ads"]:remove() www.farsroid.com##div[id="btndl"]:remove() www.farsroid.com##a[class*="farsroid-ads"]:remove() www.technologynetworks.com##div[class="base_privacy_policy_notification"]:remove() www.technologynetworks.com##div[class^="adverts_header_"]:remove() www.technologynetworks.com##div[class^="adverts_footer_"]:remove() www.technologynetworks.com##div[class^="adverts_side_"]:remove() www.timesys.com##div[id="cookie-notice"]:remove() obits.theadvocate.com##+js(aopr, dataLayer) obits.theadvocate.com##+js(aopw, dataLayer) obits.theadvocate.com##^script:has-text(/blockerDetected/):remove() obits.theadvocate.com##+js(remove-node-text, script, /blockerDetected/gm) ||carpentercomparison.com^* liliputing.com##div[class*="adthrive"]:remove() beebom.com##ins[class*="adsbygoogle"]:remove() beebom.com##ins[class*=" headerads"]:remove() !www.kron4.com##aside[class*="ad-unit"]:remove() www.kron4.com##*[class*="ad-unit"]:remove() www.insider.com##div[class*="subnav-ad-"]:remove() www.insider.com##div[class*="ad-wrapper"]:remove() ||9itmr1lzaltn.com^* ||reconsiderallowinggunfire.com^* ||stagepopkek.com^* ||www.vorrireer.com^* ||nimhuemark.com^* ||windscreenregimepros.com^* ||www.vmctzaxkc.com^* filelox.com##+js(aopr, atOptions) filelox.com##+js(aopw, atOptions) uptocloud.co##div[id="gdpr-cookie-notice"]:remove() uptocloud.co##+js(aopr, _gaq) uptocloud.co##+js(aopw, _gaq) ||bowfile.com/themes/spirit/assets/frontend/js/cookiealert.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bowfile.com/themes/spirit/assets/frontend/js/cookieconsent-config.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bowfile.com/js/xads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css bowfile.com##div[class="adsbygoogle"]:remove() bowfile.com##div[class*="cookiealert"]:remove() bowfile.com##div[class*="advert-wrapper"]:remove() bowfile.com##div[class*="top-advert"]:remove() bowfile.com##div[id="popup1"]:remove() bowfile.com##div[id="adblockinfo"]:remove() ! TODO: ^script doesn't work with attributes since checked before DOM created? bowfile.com##script[data-ad-client]:remove() bowfile.com##+js(remove-class, clear-adblock, , stay) bowfile.com##+js(set-constant, adblockEnabled, false, stay) bowfile.com##+js(aopr, adblockEnabled) bowfile.com##+js(aopw, adblockEnabled) bowfile.com##+js(aopr, adElement) bowfile.com##+js(aopw, adElement) bowfile.com##+js(set-constant, seconds, 0) !bowfile.com##+js(set-constant, countdownTimer, noopFunc) !bowfile.com##+js(no-setInterval-if, /display\(\)/) ||waust.at^* ||rt.ad-score.com^* ||d3o49rridkfcxi.cloudfront.net^* !push-decdbgj-177.boustahe.com##div[class*="push-notice"]:remove() boustahe.com##div[class*="push-notice"]:remove() !push-decdbgj-177.boustahe.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||boustahe.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||push-decdbgj-177.boustahe.com^* !||nativepu.sh/ntfc.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nativepu.sh^* !||cdn.adapex.io/hb/aaw.*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.adapex.io^* ||streamrail.net^$script,domain=linkvertise.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! https://github.com/uBlockOrigin/uAssets/issues/6487 nullpress.net##+js(set-constant, mdpUnGrabber, {}) nullpress.net##+js(aopr, mdpUnGrabber) nullpress.net##+js(aopw, mdpUnGrabber) nullpress.net##+js(set-constant, UnGrabber, noopFunc) nullpress.net##+js(aopr, UnGrabber) nullpress.net##+js(aopw, UnGrabber) nullpress.net##+js(set-constant, adsBlocked, falseFunc) nullpress.net##+js(set-constant, window.mdpDeBlockerDestroyer, false) nullpress.net##+js(set-constant, disableTextSelection, noopFunc) nullpress.net##+js(set-constant, disableContextMenu, noopFunc) nullpress.net##+js(set-constant, disableHotKeys, noopFunc) nullpress.net##+js(set-constant, disableDeveloperTools, noopFunc) nullpress.net##div[id="mdp-deblocker-ads"]:remove() ||nullpress.net/wp-content/plugins/better-adsmanager/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css nullpress.net##ins[class="adsbygoogle"]:remove() nullpress.net##+js(aopr, betterads_screen_width) nullpress.net##+js(aopw, betterads_screen_width) ! TODO: The class name in the following three rules changes. !nullpress.net##div[class*="wp-jguiqcfkiytmu-wrapper"]:remove() !nullpress.net##div[class*="wp-jguiqcfkiytmu-blackout"]:remove() nullpress.net##div[class]:matches-attr(class=/wp\-[a-z]+\-(wrapper|blackout)/):remove() nullpress.net##+js(remove-class, wp-jguiqcfkiytmu-blur, , stay) !nullpress.net##img[alt="Widget Ads"]:remove() nullpress.net##+js(aopr, window.mdpDeBlockerDestroyer) nullpress.net##+js(aopw, window.mdpDeBlockerDestroyer) !naijarom.com##+js(aeld, /^(?:contextmenu|dragstart|selectstart|mousedown|touchstart)$/i) naijarom.com##+js(acs, document.oncontextmenu) naijarom.com##+js(acs, document.onselectstart) naijarom.com##+js(acs, document.onmousedown) naijarom.com##+js(acs, document.ondragstart) naijarom.com##+js(acs, document.ontouchstart) naijarom.com##ins[class="adsbygoogle"]:remove() !naijarom.com##*:style(-moz-user-select:text; -webkit-user-select:text; -webkit-touch-callout: text; -khtml-user-select: text; -ms-user-select: text; user-select: text;) www.mobile5tech.com##+js(aeld, /^(?:contextmenu|keydown|mousedown|click|copy|cut)$/i) www.mobile5tech.com##+js(acs, document.oncontextmenu, document.onkeydown, document.onmousedown) www.mobile5tech.com##ins[class="adsbygoogle"]:remove() www.mobile5tech.com##+js(set-constant, Z, [], stay) www.mobile5tech.com##+js(aopr, Z) www.mobile5tech.com##+js(aopw, Z) www.mobile5tech.com##*:style(user-select: text; -webkit-user-select: text; -ms-user-select: text;) www.mobile5tech.com##^script:has-text(/contextmenu/):remove() www.mobile5tech.com##+js(remove-node-text, script, /contextmenu/gm) ||nnnp.xyz^* ||mediaadvisor.ru^* ||plusclick.biz^* ||traff0221.com^* ||clk.rtpdn14.com^* ||hanner-blobal.com^* ||iencefortdhi.biz^* www.androidgsm.com##ins[class="adsbygoogle"]:remove() www.androidgsm.com##a[name^="ad-post-"]:remove() www.androidgsm.com##a[id="b1"]:style(display: inline-block !important;) www.androidgsm.com##a[id="b2"]:style(display: inline-block !important;) www.androidgsm.com##a[id="b3"]:style(display: inline-block !important;) www.androidgsm.com##^script:has-text(/antiblock/):remove() www.androidgsm.com##+js(remove-node-text, script, /antiblock/gm) ! TODO: ^script doesn't work with attributes since checked before DOM created? www.androidgsm.com##script[data-ad-client]:remove() www.androidgsm.com##script[src="https://cdn.adf.ly/js/link-converter.js"]:remove() www.androidgsm.com##+js(aopr, pop_tag) www.androidgsm.com##+js(aopw, pop_tag) www.androidgsm.com##+js(aopr, puShown) www.androidgsm.com##+js(aopw, puShown) www.androidgsm.com##+js(set-constant, puShown, true) www.androidgsm.com##+js(aopr, adfly_advert) www.androidgsm.com##+js(aopw, adfly_advert) ||lowseelan.com^* ||aulteeby.net^* www.dl.avastudio.org##ins[class="adsbygoogle"]:remove() www.hexkeyunlocks.com##div[id="COOKIELAW"]:remove() www.hexkeyunlocks.com##div[id="COOKIESETT"]:remove() ||amanda.v6.omgtnc.com^* ||getrockerbox.com^* ||nuclearads.com^* www.pocket-lint.com##div[class="squirrel_intelligent_widget squirrel_widget"]:remove() www.pocket-lint.com##div[class="squirrel_widget"]:remove() www.pocket-lint.com##div[class="recommended-best-deal"]:remove() www.pocket-lint.com##div[id="SA-Unit11"]:remove() www.pocket-lint.com##div[id="taboola-below-article-thumbnails"]:remove() www.pocket-lint.com##p[class^="sqr_p"]:remove() ||squirrels.getsquirrel.co^* ||s3-eu-west-1.amazonaws.com/squirrels.getsquirrel.co^* www.phonearena.com##div[class*="ad_728_90"]:remove() www.phonearena.com##div[class*="ad_300_250"]:remove() www.phonearena.com##div[id="adOverlay"]:remove() www.phonearena.com##+js(aopr, abTestingId) www.phonearena.com##+js(aopw, abTestingId) ||s-cdn.phonearena.com/js/prebidjs/phones_adhesion_desktop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||phone-arena-d.openx.net^* ! TODO: ^script doesn't work with attributes since checked before DOM created? xdarom.com##script[id="mdp-deblocker-js-extra"]:remove() xdarom.com##div[class^="mdp-deblocker-"]:remove() xdarom.com##ins[class="adsbygoogle"]:remove() xdarom.com##+js(set-constant, adsBlocked, falseFunc) xdarom.com##+js(set-constant, window.mdpDeBlockerDestroyer, false) xdarom.com##+js(set-constant, disableTextSelection, noopFunc) xdarom.com##+js(set-constant, disableContextMenu, noopFunc) xdarom.com##+js(set-constant, disableHotKeys, noopFunc) xdarom.com##+js(set-constant, disableDeveloperTools, noopFunc) xdarom.com##+js(aopr, mdp_deblocker) xdarom.com##+js(aopw, mdp_deblocker) xdarom.com##+js(aopr, adsbygoogle) xdarom.com##+js(aopw, adsbygoogle) ||edgecast-vod.yimg.com/geminivideoads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.igorslab.de##div[id="cc-window"]:remove() business.vive.com##div[id="vive-cookie-notice"]:remove() snwritetool.com##+js(aeld, /^(?:contextmenu|dragstart|selectstart|mousedown|touchstart)$/i) snwritetool.com##+js(acs, document.oncontextmenu, document.onselectstart, document.onmousedown, document.ondragstart) www.androidinfotech.com##div[class*="ezmob-footer"]:remove() www.androidinfotech.com##[class*="ezo_ad"]:remove() www.androidinfotech.com##div[class*="ezoic-floating-"]:remove() www.androidinfotech.com##span[class="ezoic-adpicker-ad"]:remove() www.androidinfotech.com##span[class*="adtester-container"]:remove() www.androidinfotech.com##span[class="ez-report-ad-button"]:remove() www.androidinfotech.com##span[id^="ezoic-pub-ad-"]:remove() ! TODO: ^script doesn't work with attributes since checked before DOM created? www.androidinfotech.com##script[id^="ez-toc-js"]:remove() www.igorslab.de##script[id="advanced-ads-sticky-footer-js-js"]:remove() www.igorslab.de##script[id^="advadsTracking"]:remove() www.igorslab.de##button[class*="cmplz-blocked-content-notice"]:remove() www.igorslab.de##button[class*="cmplz-accept-marketing"]:remove() !||servedbyadbutler.com/app.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||servedbyadbutler.com/adserve/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||servedbyadbutler.com^* ||www.igorslab.de/wp-content/plugins/complianz-gdpr/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hjmagamal.com^* www.coolblue.nl##div[class="cookie"]:remove() www.coolblue.nl##html,body:style(overflow: auto !important;) ||yydtbpms8tf4.com^* ||headstonerinse.com^* ||www.hiprofitnetworks.com^* ||open.popnc.com^* ||juryinvolving.com^* mobiprox.myviptuto.com##div[class="Ads-vip"]:remove() mobiprox.myviptuto.com##div[class*="ads-here"]:remove() mobiprox.myviptuto.com##div[class="inline-ad"]:remove() mobiprox.myviptuto.com##ins[class="adsbygoogle"]:remove() ! TODO: ^script doesn't work with attributes since checked before DOM created? smallbusiness.chron.com##script[id="adPositionManagerScriptTag"]:remove() smallbusiness.chron.com##+js(aopr, _comscore) smallbusiness.chron.com##+js(aopw, _comscore) smallbusiness.chron.com##+js(aopr, DWH_COOKIE) smallbusiness.chron.com##+js(aopw, DWH_COOKIE) itstillworks.com##div[class="taboola-ads"]:remove() itstillworks.com##div[class="main-ad"]:remove() itstillworks.com##div[data-ad-unit-name="adblock-medianet-main"]:remove() itstillworks.com##div[class="fixed-bottom-ad"]:remove() www.techjunkie.com##div[data-freestar-ad]:remove() primeuploads.com##div[class*="cookiealert"]:remove() ||primeuploads.com/themes/spirit/assets/frontend/js/cookiealert.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||aii.sh/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||aii.sh/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sionfodrseis.biz^* ||specialofferpromoter.com^* ||fosiecajeta.com^* ||bahmemohod.com^* ||ovenbifaces.cam^* ||nandlookfo.fun^* ||ursegreatm.fun^* ||aii.sh/webroot/modern_theme/img/dwndbnr1.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.jsdelivr.net/gh/vli-platform/adb-analytics$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.rhmsg.online^* ||objective-carrot-jj9lbrxqnluavhd3br7dkmnk.herokudns.com^* ||www.routeme.one^* ||mybetterdl.com^* ||lovelywap.minewap.com^* ||yfetyg.com^* ||tgpsew.com^* ||ndroip.com^* ||msgose.com^* ||aff.av-mntzr.xyz^* ||funnyfoto.xyz^* ||funnyfoto.me^* ||track.mob0ffers.site^* ||counter.jdi5.com^* !||dl2.wapkizfile.info^* !||dl4.wapkizfile.info^* ||wapkizfile.info^* ||adprofit.is-great.net^* ||fast.kizcdn.info^* ||fast.wapkizcdn.xyz^* ||tracking.adzfun.me^* ||adzfun.me^* ||ad.jetx.info^* ||website-analytics.net/js/script.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css press.handy-games.com##div[class*="cookie-consent-bar"]:remove() ||analytics-cdn.prezly.com^* ||analytics.prezly.com^* ||molodgytot.biz^* ||promisingjournalist.com^* ||passwordscompound.com^* ||tygafso.com^* www.newsweek.com##div[id^="dfp-ad-"]:remove() www.newsweek.com##div[class*="block-fusion-ads"]:remove() www.newsweek.com##div[id="right1ad"]:remove() www.newsweek.com##div[id="topad"]:remove() www.newsweek.com##div[class*="DisplayAd__"]:remove() www.newsweek.com##div[class*="index__adWrapper"]:remove() www.newsweek.com##div[class*="index__adUnitWrapper"]:remove() www.newsweek.com##iframe[id="rufous-sandbox"]:remove() www.newsweek.com##+js(remove-node-text, script, /ad_ix\s?=/gm) www.newsweek.com##+js(aopr, totalads) www.newsweek.com##+js(aopw, totalads) www.newsweek.com##+js(aopr, ad_ix) www.newsweek.com##+js(aopw, ad_ix) www.newsweek.com##+js(aopr, ad_ix_lazy) www.newsweek.com##+js(aopw, ad_ix_lazy) www.newsweek.com##+js(remove-node-text, script, /function gtmAnalyticsEvent\(\)/gm) www.newsweek.com##+js(set-constant, gtmAnalyticsEvent, noopFunc) ! The following rule prevents the video player from initializing. !www.newsweek.com##+js(remove-node-text, script, /googletag\.cmd\.push\(/gm) ||gc.newsweek.com/front/js/counter.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||td.deliveryengine.adswizz.com^* ||na-report.live.streamtheworld.com/imp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||na-west-ondemand-impression.tritondigital.com^* ||depart.trinitymedia.ai/api/collect?t=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||synchroscript.deliveryengine.adswizz.com^* ||content.cdn.targetspot.com/content/act/beacon/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||vd.trinitymedia.ai/audio/playerAudioFiles/en/before-roll.mp3$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The following rule redirects the audio to a null file instead. ||vd.trinitymedia.ai/audio/playerAudioFiles/en/before-roll.mp3$media,redirect=noop-0.1s.mp3 ||cmodmedia.live.streamtheworld.com/media/appnexus-audio/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pityneedsdads.com^* www.dev-times.me##div[id="HTML7"]:remove() www.dev-times.me##div[class^="adblockInfo"]:remove() www.dev-times.me##+js(aopr, importFAB) www.dev-times.me##+js(aopw, importFAB) www.dev-times.me##+js(aopr, fuckAdBlock) www.dev-times.me##+js(aopw, fuckAdBlock) www.dev-times.me##+js(aopr, _0x205f) www.dev-times.me##+js(aopw, _0x205f) www.dev-times.me##+js(aopr, _0x1ec6) www.dev-times.me##+js(aopw, _0x1ec6) www.dev-times.me##*:style(-webkit-user-select:text; -moz-user-select:text; -ms-user-select:text; user-select:text !important;) www.dev-times.me##+js(aeld, /^(?:click|mousedown|touchstart)$/i) www.dev-times.me##+js(acs, document.ontouchstart, document.onmousedown) www.blogger.com##*:style(-webkit-user-select:text; -moz-user-select:text; -ms-user-select:text; user-select:text !important;) ||gocdnbwt.com^* ||pvipgaj.com^* xsolla.com##div[id="gdpr-consent-form"]:remove() add0n.com##div[class="ads"]:remove() www.whatismybrowser.com##div[class*="fun-adsense"]:remove() ||eram-95-my-cheetah-website-3.cheetah.builderall.com^* !||rd.consoletarget.com/static/js/view116_bidshow.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||apsolutamente.com^* ||tik-ttok.net^* ||feed.r-tb.com^* ||cdn.ocmhood.com^* ||www.kxbvazfrioxs.com^* ||kxbvazfrioxs.com^* ||www.obkcnezxxuw.com^* ||obkcnezxxuw.com^* ||destinilocators.com^* mobile.hotspot##+js(aeld, /^(?:copy|paste)$/i) alseery.blogspot.com##*:style(-webkit-user-select:text; -moz-user-select:text; -ms-user-select:text; user-select:text !important;) alseery-blogspot-com.translate.goog##*:style(-webkit-user-select:text; -moz-user-select:text; -ms-user-select:text; user-select:text !important;) www.mobileflasherbd.com##div[id="arlinablock"]:remove() www.mobileflasherbd.com##+js(acs, document.onclick) www.mobileflasherbd.com##+js(acs, document.onselectstart) www.mobileflasherbd.com##+js(acs, document.onmousedown) www.mobileflasherbd.com##+js(acs, PopWin) www.mobileflasherbd.com##+js(acs, popURL) www.mobileflasherbd.com##div[id='ads-blog']:remove() www.mobileflasherbd.com##script[id='_waubeb']:remove() ||www.clarity.ms/tag/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||apprefaculty.pro^* ||www.thodowaro.com^* ||rawcdn.githack.com/sanjoy944/jonaki/*/SupportAdsblocker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rawcdn.githack.com/sanjoy944/jonaki/*/adblockerpupup.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.getdroidtips.com##div[id="ad-container"]:remove() www.getdroidtips.com##div[id="adScript"]:remove() ||s.console.adtarget.com.tr^* cdmadev1.blogspot.com##*:style(-webkit-user-select:text; -moz-user-select:text; -ms-user-select:text; user-select:text !important;) cdmadev1.blogspot.com.translate.goog##*:style(-webkit-user-select:text; -moz-user-select:text; -ms-user-select:text; user-select:text !important;) cdmadev1.blogspot.com##+js(aeld, /^(?:mouseup|mousedown|selectstart|contextmenu)$/i) cdmadev1.blogspot.com##+js(aopr, omitformtags) cdmadev1.blogspot.com##+js(acs, document.onmouseup) cdmadev1.blogspot.com##+js(acs, document.onselectstart) cdmadev1.blogspot.com##+js(acs, document.onmousedown) cdmadev1.blogspot.com##+js(acs, document.oncontextmenu) cdmadev1.blogspot.com.translate.goog##+js(acs, document.onmouseup) cdmadev1.blogspot.com.translate.goog##+js(acs, document.onselectstart) cdmadev1.blogspot.com.translate.goog##+js(acs, document.onmousedown) cdmadev1.blogspot.com.translate.goog##+js(acs, document.oncontextmenu) www.protocol.com##div[class="gdpr-cookie"]:remove() www.protocol.com##div[class*="rm-gdpr"]:remove() www.theregister.com,forums.theregister.com##div[class*="gtag_display"]:remove() www.theregister.com,forums.theregister.com##div[class^="adun"]:remove() www.theregister.com,forums.theregister.com##+js(set-constant, RegSendGA, noopFunc) www.theregister.com,forums.theregister.com##+js(acs, /RegSendGA\(/) !||www.theregister.com/design_picker/c00f80f04b0eaf0123d821f6c9488fc1cb55fd0a/javascript/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.theregister.com/design_picker/*/javascript/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css boxwares.net##div[aria-label="cookieconsent"]:remove() shell.boxwares.com##div[aria-label="cookieconsent"]:remove() gsmusbdriver.com##+js(acs, document.ondragstart) gsmusbdriver.com##+js(acs, document.onselectstart) gsmusbdriver.com##+js(acs, document.onmousedown) gsmusbdriver.com##+js(acs, document.oncontextmenu) ||instant.page^* ||www.effectivedisplayformat.com^* ||ambientaboveboard.com^* ||events.audioplace.me^* !||yield-op-idsync.live.streamtheworld.com/idsync.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||yield-op-idsync.live.streamtheworld.com^* !||playerservices.live.streamtheworld.com/api/idsync.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||playerservices.live.streamtheworld.com^* ||gateway.adrta.com^* ||ha-ing.adk2.com^* ||www.variouscreativeformats.com^* ||difficultydilapidationsodium.com^* ||xs3.instreamatic.com/stat/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||na-east-ondemand-impression.tritondigital.com^* ||audio.excitead.com^* snwritetool.com##+js(acs, document.oncontextmenu) snwritetool.com##+js(acs, document.onselectstart) snwritetool.com##+js(acs, document.onmousedown) snwritetool.com##+js(acs, document.ondragstart) spflashtools.com##+js(aeld, /^(?:contextmenu|dragstart|selectstart|mousedown|touchstart)$/i) spflashtools.com##+js(acs, document.oncontextmenu) spflashtools.com##+js(acs, document.onselectstart) spflashtools.com##+js(acs, document.onmousedown) spflashtools.com##+js(acs, document.ondragstart) androidmtk.com##+js(acs, document.oncontextmenu) androidmtk.com##+js(acs, document.onselectstart) androidmtk.com##+js(acs, document.onmousedown) androidmtk.com##+js(acs, document.ondragstart) androidmtk.com##*:style(-webkit-user-select:text; -moz-user-select:text; -ms-user-select:text; user-select:text !important;) writeimei.com##+js(acs, document.oncontextmenu) writeimei.com##+js(acs, document.onselectstart) writeimei.com##+js(acs, document.onmousedown) writeimei.com##+js(acs, document.ondragstart) tricksmash.com##div[aria-label="cookieconsent"]:remove() www.rockpapershotgun.com##.advert_container:remove() ||sejs.moatads.com^* ||premiumsrv.aniview.com/api/adserver/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.nolimitscoaster.com##div[id="easycookieinfo"]:remove() turbofuture.com##div[id="ad-"]:remove() turbofuture.com##div[class*="m-header-ad"]:remove() ||turbofuture.com/.bootscripts/webcomponents/ad.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||turbofuture.com/.bootscripts/PhoenixGoogleAnalytics.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||turbofuture.com/.bootscripts/analytics.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tag-api-2-1.ccgateway.net^* ||privacy-location-edge.ccgateway.net^* ||hubpages.com/ctracker/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||turbofuture.com/.bootscripts/hubPagesViewDurationTracker.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||turbofuture.com/.bootscripts/hubPagesTracker.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.builtbybel.com##div[id="easycookieinfo"]:remove() ||www.user-shield-check.com^* ||lgazyaq.com^* ||ocdnmq.com^* ||kesmatic.com^* a2zrom.com##*:style(-moz-user-select:text; -webkit-user-select:text; -webkit-touch-callout: text; -khtml-user-select: text; -ms-user-select: text; user-select: text;) ||perfads.bouncex.net^* www.gsmware.com##div[id="ezmobfooter"]:remove() www.gsmware.com##span[id^="div-gpt-ad"]:remove() www.gsmware.com##span[class*="ezoic-ad"]:remove() www.gsmware.com##ins[class="adsbygoogle"]:remove() www.gsmware.com##+js(acs, document.oncontextmenu) www.gsmware.com##+js(acs, document.onclick) www.gsmware.com##*:style(-moz-user-select:text; -webkit-user-select:text; -webkit-touch-callout: text; -khtml-user-select: text; -ms-user-select: text; user-select: text;) ||www.itcertbox.com^* ||domakuhitaor.com^* ||getbitly.pro^* ||viralsparks.io^* ||ctrl.i-afk.com^* ||omoonsih.net^* ||retaindeductionperformed.com^* ||raiphupi.com^* ||ecma.sidebyz.com^* ||stronglygathering.com^* ||ecma.i-afk.com^* ||agukalty.net^* ||coursesghar.com/wp-content/plugins/deblocker/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||drentothem.biz^* ||s3.tebi.io/kanfi-web-fa/stub/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wendyk.herokuapp.com^* ||djnaivalj34ub.cloudfront.net^* ||grivupie.net^* ||derhavious.space^* ||additionsselfemployedpeachy.com^* ||technicalityplayground.com^* ||encouragingpast.com^* ||www.highperformancecpm.com^* ||presidentialthriceinefficient.com^* ||biasedrepercussion.com^* ||negatejusticehaw.com^* ||ettv.proxybit.me/cdn-cgi/images/trace/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||partiesrelyfoliage.com^* ||www.zkbkcdhieqcoev.com^* ||zkbkcdhieqcoev.com^* ||puzzledolefulcourier.com^* ||measurelavender.com^* ||www.cqxgtafgnc.com^* dotesports.com##.proper-ad-insert:remove() dotesports.com##.proper-ad-unit:remove() ||dotesports.com/ads.txt*$subdocument !||d8yw4927nnimu.cloudfront.net/script.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d8yw4927nnimu.cloudfront.net^* !||k62h7d0yhu.kameleoon.eu/kameleoon.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||k62h7d0yhu.kameleoon.eu^* ||telemetries.jeeng.com^* !||harpocrates.ethyca.com/emp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||harpocrates.ethyca.com^* ||assets.ubembed.com/universalscript/releases/v0.179.1/bundle.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.dailywire.com##div[class*="text-ad"]:remove() www.dailywire.com##div[class*="textAd"]:remove() www.dailywire.com##div[class*="text_ad"]:remove() www.dailywire.com##div[class*="pub_300x250"]:remove() www.dailywire.com##div[class*="pub_728x90"]:remove() www.dailywire.com##div[class="ad-wrapper"]:remove() !www.dailywire.com##button[data-testid="continue-reading-button-reader"]:remove() www.dailywire.com##div[style="text-align:center;max-width:624px;margin:8px auto 32px"]:has(button[data-testid="continue-reading-button-reader"]):remove() ! remove() doesn't work with :: styles !www.dailywire.com##div::before www.dailywire.com##+js(remove-class, css-160lw9c) www.dailywire.com##+js(set-constant, OptanonWrapper, noopFunc) www.dailywire.com##+js(set-constant, analytics, []) www.dailywire.com##+js(aopr, analytics) www.dailywire.com##+js(aopw, analytics) www.dailywire.com##script[id="segment-js"]:remove() www.dailywire.com##button[data-paywall-action-type]:remove() www.codevoila.com##div[class^="cookieConsent"]:remove() answers.unity.com##div[class="consent-banner"]:remove() ||ads.penreader.com^* ||mobilecrashreporting.googleapis.com^* www.ubergizmo.com##div[role="ad"]:remove() www.ubergizmo.com##div[class="ubergizmo-dfp-ad"]:remove() petapixel.com##.instream_ad:remove() www.ubergizmo.com##div[class="in_article_ad_wrapper"]:remove() www.ubergizmo.com##div[class*="ad_container"]:remove() apk-galaxy.site##div[id="cookie-notice"]:remove() ! TODO: ^script doesn't work with attributes since checked before DOM created? apk-galaxy.site##script[src="https://cdn.adf.ly/js/link-converter.js"]:remove() techyneed.com##script[data-ad-client]:remove() techyneed.com##^script:has-text(/debugger;/):remove() techyneed.com##+js(remove-node-text, script, /debugger;/gm) techyneed.com##:xpath(//script[contains(text(), 'debugger;')]):remove() !techyneed.com##+js(trusted-replace-node-text, script, /debugger;/gm, "") !techyneed.com##+js(trusted-replace-node-text, script, /^debugger;/gm, "") ! TODO: Really abort on debugger as that is what the debugger statement already does? techyneed.com##+js(acs, /debugger;/) techyneed.com##ins[class="adsbygoogle"]:remove() techyneed.com##+js(aopr, _0x3344) techyneed.com##+js(aopw, _0x3344) techyneed.com##+js(aopr, adsbygoogle) techyneed.com##+js(aopw, adsbygoogle) techyneed.com##+js(set-constant, _0x3344, []) techyneed.com##div[id="alertmsg"]:remove() techyneed.com##iframe[data-aa]:remove() techyneed.com##+js(noeval) jaanmusic.in,techyneed.com##+js(no-setInterval-if, _0x) jaanmusic.in##.adsbygoogle:remove() jaanmusic.in,techyneed.com##div[style="background:#ededed;"]:remove() jaanmusic.in,techyneed.com###galax2:remove() alfacast.net##div[id^="cookie-law-info"]:remove() alfacast.net##div[id="cliSettingsPopup"]:remove() apkxmods.com##ins[class="adsbygoogle"]:remove() apkxmods.com##+js(aopr, adsbygoogle) ||redirectbuzz.club^* betacast.net##div[id^="cookie-law-info"]:remove() betacast.net##div[id="cliSettingsPopup"]:remove() www.appypie.com##div[id="cookiesPopup"]:remove() ||bomero.net^* ||hindversion.com^* www.asciitable.com##div[class*="ezo_ad"]:remove() www.asciitable.com##div[id="ezmobfooter"]:remove() www.asciitable.com##span[id^="ezoic-pub-ad"]:remove() www.asciitable.com##.adtester-container:remove() www.asciitable.com##ins[class="adsbygoogle"]:remove() www.seqrite.com##div[class*="cookie-bar"]:remove() coder.com##+js(set-local-storage-item, cookie, true) ||simpleanalyticsexternal.com/simple.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sa.coder.com/simple.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! TODO: Is the following rule correct, i.e. div.body under another div tag and not an iframe? coder.com##div[class="jss55"]:has(div.body, img[src="/cookies.png"]):remove() coder.com##div[class="jss178"]:has(div.body, img[src="/cookies.png"]):remove() ||vitals.vercel-insights.com^* ||aloofvest.com^* ! Wondershare apps tracking ||was.wondershare.com^* www.samsungknox.com##div[id="cookie-consent"]:remove() realpython.com##div[class^="rpad"]:remove() www.partitionwizard.com##div[class="bottom-cookie-wrap"]:remove() www.ugmfree.it##div[id="divPolicyBar"]:remove() ||pigtre.com^* !||stuiop.com/v1/sdk.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stuiop.com^* ||js.mobileoffers-ac-download.com^* ||mobileoffers-7-d-download.com^* www.bostonglobe.com##html,body:style(overflow:auto !important;) www.bostonglobe.com##div[id^="ad_position_ad"]:remove() www.bostonglobe.com##+js(remove-class, overflow_hidden, , stay) www.bostonglobe.com##+js(remove-class, paywall, , stay) www.bostonglobe.com##button[class*="continue_button"]:has-text(/Read full article/i):remove() ||dz9qn8fh4jznm.cloudfront.net^* ||dc8xl0ndzn2cb.cloudfront.net^* ||d1zokzhal29fpg.cloudfront.net^* ||tags.rd.linksynergy.com^* www.verywellhealth.com##div[class*="mntl-gpt-adunit"]:remove() www.verywellhealth.com##div[class*="mntl-flexible-ad"]:remove() www.verywellhealth.com##div[class*="scads-"]:remove() www.goodhousekeeping.com##div[class*="vertical-ad"]:remove() www.goodhousekeeping.com##div[class*="leaderboard-ad"]:remove() www.goodhousekeeping.com##div[class*="ad-container"]:remove() www.goodhousekeeping.com##div[class*="gpt-adslot"]:remove() www.goodhousekeeping.com##div[class*="breaker-ad"]:remove() www.goodhousekeeping.com##div[class*="adhesion-unit"]:remove() www.goodhousekeeping.com##div[class^="ad-disclaimer"]:remove() www.goodhousekeeping.com##div[class^="oop-ad"]:remove() www.goodhousekeeping.com##div[class="css-124940i e1f1sunr2"]:style(margin-left: 0px !important; max-width: 100vw !important; width: 99vw !important;) www.goodhousekeeping.com##div[class^="standard-container content-container article-container"]:style(margin-left: 0px !important; max-width: 100vw !important; width: 99vw !important;) www.goodhousekeeping.com##div[id="adAdhesion"]:remove() ! TODO: The following rule also removes non-ad content from the page. !www.goodhousekeeping.com##div[id="gpt-leaderboard-ad"]:remove() www.goodhousekeeping.com##div[id="gpt-leaderboard-ad"]:style(display: none !important; visibility: none !important;) www.goodhousekeeping.com##div[id="ad-article-rail-default-wrapper"]:remove() ! TODO: Should writeable be set to true (!0) in the following rule? www.goodhousekeeping.com##+js(trusted-replace-node-text, script, /\{ADSFREE:\s?\{value:\s?false,\s?writable:\s?!1\}/gm, {ADSFREE:{value:true,writable:!0}) ! TODO: ^script doesn't work with attributes since checked before DOM created? www.goodhousekeeping.com##script[id*="ad-breaker"]:remove() www.goodhousekeeping.com##script[id="onetrust-script"]:remove() www.goodhousekeeping.com##script[id="cmp-script"]:remove() ||www.goodhousekeeping.com/_assets/fre/scopes/hdm/_next/static/media/cmp.script.*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.inquirer.com##div[class*="arcad"]:remove() www.inquirer.com##div[class*="arc-ad-wrapper"]:remove() www.greenevillesun.com##div[class*="tnt-ads"]:remove() www.greenevillesun.com##div[class*="dfp-ad"]:remove() www.tok001.com##html,body:style(overflow:auto !important;) www.linuxhospital.com##div[data-app="cookie_consent"]:remove() www.linuxhospital.com##div[class*="shareaholic-cookie-consent"]:remove() exbulletin.com##+js(set-constant, ai_adb_active, 0, stay) exbulletin.com##+js(aopr, _ezaq) exbulletin.com##+js(aopw, _ezaq) www.xoom.com##div[id="cookiePolicyBanner"]:remove() ||collector.sophi.io^* ||satisfycork.com^* ||pub.doubleverify.com/signals/pub.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.sophi.io/latest/sophi.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.mlive.com##div[class*="ad--"]:remove() www.hotdeals.com##div[class="privacy_policy_pop"]:remove() ||initiateextremelyquickthefile.vip^* ||soaheeme.net^* ||ulourgaz.net^* !perr.h-cdn.com/be_client_cgi/perr?id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||perr.h-cdn.com^* ||cdn.jsdelivr.net/gh/Arlina-Design/quasar@master/arlinablock.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css chedrive.com##div[id="arlinablock"]:remove() chedrive.com##div[id="gdpr-cookie-notice"]:remove() chedrive.com##div[class="as_ads_guard"]:remove() chedrive.com##ins[class="adsbygoogle"]:remove() www.salon.com##.ad_paid-content:style(display: block !important; visibility: visible !important;) www.salon.com##.hidden-paragraph:style(display: block !important; visibility: visible !important;) www.salon.com##a[id^="ad_free_dropdown_link"]:remove() www.salon.com##a[onclick^="ga("]:remove-attr(onclick) www.salon.com##+js(remove-attr, onclick, a[onclick^="ga("]) www.salon.com##div[class="outer_ad_container"]:remove() www.salon.com##div[class="outer-ad-unit-wrapper"]:remove() www.salon.com##div[class="proper-ad-unit"]:remove() www.salon.com##div[class="right-rail"] > div[class*="sidebar_ad"]:upward(1):remove() www.salon.com##div[class="layout_template_wrapper"] > div[class="sub_promo"]:upward(1):remove() www.salon.com##div[class^="htlad-"][data-targeting]:remove() www.salon.com##div[id^="proper-ad-salon"]:remove() www.salon.com##div[id="sticky_ad_container"]:remove() www.salon.com##iframe[name="googlefcPresent"]:remove() www.salon.com##iframe[id="loader"]:remove() www.salon.com##span[class="advertise_text"]:remove() www.salon.com##+js(remove-node-text, script, /googletag\.cmd\.push\(/gm) ! The following rule will remove more than one inline script. !www.salon.com##+js(remove-node-text, script, /googletag\.pubads\(\)/gm) www.salon.com##+js(remove-node-text, script, /htlbid\.setTargeting\(/gm) www.salon.com##+js(remove-node-text, script, /var ads_project\s?=/gm) www.salon.com##+js(set-constant, _bmb, noopFunc) www.salon.com##+js(set-constant, site_htl_settings.report_url, "", complete) www.salon.com##+js(trusted-set-constant, site_htl_settings.adx, "no", complete) www.salon.com##+js(trusted-set-constant, site_htl_settings.send_reports, "0", complete) www.salon.com##+js(trusted-set-constant, site_htl_settings.logging_turned_on, "0", complete) www.salon.com##+js(trusted-replace-node-text, script, /"adx"\s*:\s?"yes"/gm, "adx": "no") www.salon.com##+js(trusted-replace-node-text, script, /"send_reports"\s*:\s?"1"/gm, "send_reports": "0") www.salon.com##+js(trusted-replace-node-text, script, /"logging_turned_on"\s*:\s?"1"/gm, "logging_turned_on": "0") ! \S* doesn't work with the following rule since it includes ". Use [A-Za-z0-9\-\._~!\$\&\'\(\)\*\+\,;=:@\/\?\#]* instead for URI/URL's. www.salon.com##+js(trusted-replace-node-text, script, /"report_url"\s*:\s?["']https?:\/\/[A-Za-z0-9\-\._~!\$\&\'\(\)\*\+\,;=:@\/\?\#]*["']/gm, "report_url": "") www.salon.com##+js(trusted-set-constant, salon_config.live_ads, "0", complete) www.salon.com##+js(trusted-set-constant, salon_config.admin_toolbar, "1", complete) www.salon.com##+js(trusted-replace-node-text, script, /live_ads\s?:\s?"1"/gm, live_ads: "0") www.salon.com##+js(trusted-replace-node-text, script, /admin_toolbar\s?:\s?"0"/gm, admin_toolbar: "1") www.salon.com##+js(set-constant, signalGooglefcPresent, trueFunc) www.salon.com##+js(remove-node-text, script, /function signalGooglefcPresent\(\)\s?\{/gm) www.salon.com##+js(remove-node-text, script, /document\.write\("\
script:nth-child(3):remove() www.apkmirror.com##+js(remove-attr.js, style, div.noPadding.col-md-12) www.apkmirror.com##div[class="ains ains-15 ains-apkm_apk_page_downloadtab"]:remove() www.apkmirror.com##div[class*="google-ad-square"]:remove() www.apkmirror.com##+js(remove-class, disabled, .downloadButton, stay) ruslangxp.ucoz.org##div[id="cookiePolicy"]:remove() ruslangxp.ucoz.org##div[class^="js-teasers-wrapper"]:remove() ||cdn.directadvert.ru^* ||deebcards-themier.com^* ||hidelen.com^* ||ncddiqisisy.top^* ||yourcoolfeed.com^* !||news.2xclick.ru/loader.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||news.2xclick.ru^* ||ruslangxp.ucoz.org/stat/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||feewuvoo.net^* ||mileagechronic.com^* ||pacifyrespirator.com^* ||essqvwhhhondt.xyz^* ||censusmiles.com^* ||ethnicbrotherhoodunmoved.com^* ||specificallythesisballot.com^* ||umbrellaomendear.com^* ||jollytestpartying.com^* ||departurealtar.com^* short.katflys.com##div[id="gdpr-cookie-notice"]:remove() ||1frozenthrone1.com^* !||adoto.net/dashboard/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adoto.net/dashboard/display/serve.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adoto.net/dashboard/display/items.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adoto.net/dashboard/common/js/common.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||adpays.net/serve/ads.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adpays.net/serve/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ugahutoa.com^* ||mx.gearbest.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.fusoidactuate.com^* ||fusoidactuate.com^* ||www.pbhrxxcuobz.com^* ||pbhrxxcuobz.com^* ||www.yvukxuqh.com^* ||yvukxuqh.com^* ||benoopto.com^* ||tapappalling.com^* www.systutorials.com##script[id="_carbonads_js"]:remove() www.systutorials.com##div[id="carbon-block"]:remove() www.systutorials.com##div[style*="min-height: 250px"]:has(div[class="waldo-display-unit"]):remove() www.systutorials.com##div[class="sidebar-item"]:has(div[class="waldo-display-unit"]):remove() ! The following rule should be placed below the previous two since they supercede it. www.systutorials.com##div[class="waldo-display-unit"]:remove() ||infinitytrk.com^* ||yvgbpqsbfidfcch.top^* ||itineraryupper.com^* ||nisperodonax.com^* ||xmllover.com^* ||q.xmlrtb.com^* www.maketecheasier.com##div[class="header-widget"]:has([id^="adngin-top-"]):remove() www.maketecheasier.com##div[id^="adngin-top-"]:remove() www.sportingnews.com##div[id="onetrust-banner-sdk"]:remove() www.sportingnews.com##div[data-role="ad"]:remove() www.sportingnews.com##div[class*="widget-ad-skin"]:remove() www.sportingnews.com##div[id="desktop-anchor"]:has(div[id="ad_D_sticky_banner"]):remove() www.sportingnews.com##div[id="ad_D_sticky_banner"]:remove() ||mersionbronze.cam^* ||punyvamos.com^* ||mobileoffers-7-m-download.com^* ||atstuffwith.com^* ||sitisaoukn.com^* ||dq06u9lt5akr2.cloudfront.net^* ||inpage-push.com^* ||chatakauntewed.com^* ||services.brid.tv/player/build/plugins/adunit.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.android-x86.org##div[class="brid-advert-container"]:remove() www.geeky-gadgets.com##div[data-freestar-ad]:remove() en.videotutorial.ro##ins[class="adsbygoogle"]:remove() en.videotutorial.ro##div[class="after-post-ad"]:remove() en.videotutorial.ro##script[custom-element="amp-auto-ads"]:remove() techvodoo.com##ins[class="adsbygoogle"]:remove() techvodoo.com##div[id^="quads-ad"]:remove() techvodoo.com##+js(abort-current-inline-script, mi_track_user) !||bmfads.com/app/upload/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||bmfads.com/app/images/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||bmfads.com/app/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bmfads.com^* ||selfswayjay.com^* www.unified-streaming.com##div[class*="cookie"]:remove() ||lftracker.leadfeeder.com^* techviewleo.com##div[class*="ezo_ad"]:remove() techviewleo.com##span[class*="ezoic-ad"]:remove() techviewleo.com##span[class*="adtester-container"]:remove() techviewleo.com##div[class="td-header-ad-wrap"]:remove() techviewleo.com##span[id^="ezoic-pub-ad"]:remove() techviewleo.com##script[id*="-price-alert-js"]:remove() techviewleo.com##script[id^="google_gtagjs"]:remove() ||techviewleo.com/wp-content/plugins/affiliate-egg/res/js/price_alert.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||techviewleo.com/wp-content/plugins/content-egg/res/js/price_alert.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css tutorialforlinux.com##*[class*="moove-gdpr-"]:remove() tutorialforlinux.com##div[class*="center ad"]:remove() tutorialforlinux.com##ins[class="adsbygoogle"]:remove() daylifetips.com##div[class*="ezo_ad"]:remove() daylifetips.com##span[class*="ezoic-ad"]:remove() daylifetips.com##span[class*="adtester-container"]:remove() daylifetips.com##script[id*="-price-alert-js"]:remove() daylifetips.com##script[id^="google_gtagjs"]:remove() ||daylifetips.com/wp-content/plugins/affiliate-egg/res/js/price_alert.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||daylifetips.com/wp-content/plugins/content-egg/res/js/price_alert.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css daylifetips.com##div[class*="td-header-ad-wrap"]:remove() daylifetips.com##div[class*="td-ad"]:remove() www.droid8k.com##div[id="cookie-notice"]:remove() linuxconfig.org##div[class="incontent_ads"]:remove() linuxconfig.org##p:has-text(/in-article-ads-banner/i):remove() linuxconfig.org##div[class="sticky_ads"]:remove() snapstats.org##*[class*="cookieConsent"]:remove() www.webcontactus.com##ins[class*="adsbygoogle"]:remove() www.a2hosting.in##div[id="gdpr_notice"]:remove() www.a2hosting.com##div[id="gdpr_notice"]:remove() !||affiliates.a2hosting.com/scripts/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||affiliates.a2hosting.com^* www.snbforums.com##div[id^="div-gpt-ad-"]:remove() dmarcian.com##div[id="cookie-notice"]:remove() dmarcian.com##+js(remove-node-text, script, /function\(h\,o\,t\,j\,a\,r\)\s?\{/gm) dmarcian.com##section[class="cookies"]:remove() dmarcian.com##+js(remove-node-text, script, /newrelic_header:/gm) dmarcian.com##+js(remove-node-text, script, /NREUM\.info\s?=\s?\{/gm) dmarcian.com##+js(aopr, window.NREUM) dmarcian.com##+js(aopw, window.NREUM) dmarcian.com##+js(aopr, NREUM.info) dmarcian.com##+js(aopw, NREUM.info) dmarcian.com##+js(remove-node-text, script, /api\.weglot\.com\//gm) ||api.weglot.com/pageviews?$3p,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adactioner.com/asset-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||eu-adsrv.rtbsuperhub.com^* ||sl-adsrv.rtbsuperhub.com^* ||doublepimpads.com^* ||creative.xxxjmp.com^* !||a.shukriya90.com/api/spots/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.shukriya90.com^* ||cdn.twinrdsrv.com/Scripts/infinity.js.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||twinrdsrv.com/Redirect.eng$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||twinrdsrv.com/Tag.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||twinrdsrv.com/link.engine$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||smetrics.regions.com^* ||t.co/i/adsct^* !||1013536406.privacysandbox.googleadservices.com^* ||*.privacysandbox.googleadservices.com^* www.tutorialspoint.com##div[id="privacy-banner"]:remove() www.tutorialspoint.com###google-right-ads:remove() www.tutorialspoint.com###adp1:remove() www.tutorialspoint.com###adp2:remove() www.tutorialspoint.com###google-bottom-ads:remove() !www.tutorialspoint.com##+js(set-constant, cval, 1, stay) ||archive.org/includes/analytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css blogspot.com##.search-box-overlay:remove() csharpforums.net##*[class*="notice--cookie"]:remove() www.itsfoss.net##html,body:style(overflow:scroll !important;) www.looklinux.com##div[id^="mks_ads_widget"]:remove() www.looklinux.com##ins[class="adsbygoogle"]:remove() www.news.com.au##div[class*="header_ads-container"]:remove() www.news.com.au##div[class*="ad-hybrid"]:remove() www.news.com.au##div[class*="ad-block"]:remove() gameskeys.net##+js(aopr, __ez) gameskeys.net##+js(aopw, __ez) gameskeys.net##+js(aopr, __banger_pmp_deals) gameskeys.net##+js(aopw, __banger_pmp_deals) gameskeys.net##span[class*="ezoic-ad"]:remove() gameskeys.net##span[class*="adtester-container"]:remove() blog.malwarebytes.com##div[id="consentDialog"]:remove() www.kamatera.com##*[class*="cookies-"]:remove() sloppy.io##div[id="cookie-notify"]:remove() www.fotor.com##div[class*="UseCookie_"]:remove() www.arkansasedc.com##div[id^="tracking-consent-dialog"]:remove() usconnect.llc##div[id="obfx-cookie-bar"]:remove() homeinternet.ultramobile.com##div[class^="FeatureBar_root"]:has(span:has-text(/This site uses cookies/i)):remove() www.easeus.com##div[class="usernotice_pop"]:has-text(/cookies/i):remove() www.easeus.com##+js(set-constant, window.gtag, noopFunc) www.easeus.com##+js(set-constant, gtag, noopFunc) www.easeus.com##+js(set-constant, dataLayer.push, noopFunc, complete) ||recorder.easeus.com/default/js/ga.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.easeus.com/default/js/ad_download.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.easeus.com.cdn.cloudflare.net/default/js/ad_download.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.easeus.com.cdn.cloudflare.net/default/js/aff_buy_tracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.easeus.com/default/js/aff_buy_tracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||easeusinfo.us-east-1.log.aliyuncs.com^* www.psaudio.com##div[id="cookie-notice"]:remove() community.amd.com##div[id="onetrust-banner-sdk"]:remove() ||soyerten.xyz^* ||rigrighostfancygoz.xyz^* abbaspc.net##button[class="getox"]:remove() screamingbee.com##div[id="cookieConsent"]:remove() gsmatoztool.com##a[onclick*="/rigrighostfancygoz.xyz"]:remove() simcast.com##div[class="gdpr-block"]:remove() www.hitc.com##amp-analytics:remove() www.hitc.com##amp-embed:remove() www.hitc.com##div[data-ad-type]:remove() www.hitc.com##div[class="GRVMpuWrapper"]:has(div[data-ad-type]):remove() www.dealabs.com##div[class*="popover--oreo-message"]:remove() www.dealabs.com##+js(remove-class, overflow--hidden, , stay) fostips.com##aside[id="rb-cookie"]:remove() www.inverse.com##amp-ad:remove() ||www.sbmrwzkwshit.com^* ||sbmrwzkwshit.com^* ||www.rigxpadydyveja.com^* ||rigxpadydyveja.com^* download.revouninstaller.com##div[id="consentAccepted"]:remove() www.prepaiddigitalsolutions.com##div[id="cookieConsent"]:remove() ||unacceptablepit.com^* ||www.wppdgupelr.com^* ||wppdgupelr.com^* ||joopaish.com^* ||psootchu.net^* ||d301cxwfymy227.cloudfront.net^* drevitalize.com##div[id="cookie-law-info-bar"]:remove() drevitalize.com##div[id="cookie-law-info-again"]:remove() drevitalize.com##div[id="cliSettingsPopup"]:remove() ||thyourretyequ.com^* ||d11hjbdxxtogg5.cloudfront.net^* ||taspectsofcu.com^* ||x.kinja-static.com/assets/new-client/vendor~adEditor~$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||x.kinja-static.com/assets/new-client/adEditor~$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gizmodo.com/x-kinja-static/assets/new-client/adEditor~$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gizmodo.com/x-kinja-static/assets/new-client/vendor~adEditor~$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||gizmodo.com/x-kinja-static/assets/new-client/runtime~adManager.b878b4877a2739bba287.js ||gizmodo.com/x-kinja-static/assets/new-client/runtime~adManager.*.js ||gizmodo.com/x-kinja-static/assets/new-client/adManager~$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gizmodo.com/x-kinja-static/assets/new-client/adManager.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gizmodo.com/x-kinja-static/assets/new-client/vendor~trackers.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gizmodo.com/x-kinja-static/assets/new-client/runtime~trackers.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gizmodo.com/x-kinja-static/assets/new-client/trackers.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gizmodo.com/x-kinja-static/assets/new-client/taboolaLoader.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gizmodo.com/x-kinja-static/assets/new-client/runtime~taboolaLoader.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gizmodo.com/x-kinja-static/assets/new-client/layoutShiftTrackerLoader.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gizmodo.com/x-kinja-static/assets/new-client/runtime~layoutShiftTrackerLoader.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gizmodo.com/stats/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gizmodo.com/assets/ad_iframe.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||gizmodo.com/api/kala/stats/beacon$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gizmodo.com/api/kala/stats/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css gizmodo.com##div[data-ad-unit]:remove() gizmodo.com##div[class*="js_sticky-top-ad"]:remove() gizmodo.com##div[class*="js_ad-sticky-footer"]:remove() gizmodo.com##div[class*="ad-top-banner"]:remove() gizmodo.com##div[class*="ad-container"]:remove() gizmodo.com##div[class*="js_related-stories-inset"]:remove() gizmodo.com##div[class*="js_suggested-stories"]:remove() gizmodo.com##div[class*="taboola-container"]:has(div[id="taboola-below-article-thumbnails"]):remove() !gizmodo.com##div[class*="ad-mobile-dynamic"]:remove() gizmodo.com##div[class*="ad-mobile"]:remove() gizmodo.com##div[class*="js_ad-dynamic"]:remove() ! TODO: Does the following classname vary? gizmodo.com##div[class="sc-bxm4mm-1 eQuXvI"]:remove() gizmodo.com##div[class="optidigital-wrapper-div"]:has(div[id^="optidigital-adslot-"]):upward(1):remove() gizmodo.com##div[id^="dfp-ad-"]:remove() gizmodo.com##div[id="trackers"]:remove() gizmodo.com##div[id="splashy-ad-container-top"]:remove() !gizmodo.com##div[id="leftrail_dynamic_ad_wrapper"]:remove() gizmodo.com##div[id$="_dynamic_ad_wrapper"]:remove() gizmodo.com##iframe[style="width: 1px; height: 1px; display: none; border: 0px; margin: 0px; padding: 0px;"]:remove() gizmodo.com##iframe[name]:matches-attr(name=/^__\S+Locator$/):remove() gizmodo.com##div[class*="QyMNg"]:style(max-width:100% !important;) gizmodo.com##main[class*="dAHyXr"]:style(width:100% !important;) gizmodo.com##p[class*="fnnahv"]:style(width:100% !important; max-width:100% !important;) ! The following rule is used for a parent of the cnx-video-container. gizmodo.com##div[class*="ilZXoP"]:style(max-width: 100% !important; width: 100% !important;) gizmodo.com##video[class="cnx-video-tag"]:style(height: 100% !important;) gizmodo.com##video[class="cnx-video-tag"][disableremoteplayback]:remove-attr(disableremoteplayback) gizmodo.com##+js(remove-attr, disableremoteplayback, video[class="cnx-video-tag"][disableremoteplayback]) gizmodo.com##video[class="cnx-video-tag"][disablepictureinpicture]:remove-attr(disablepictureinpicture) gizmodo.com##+js(remove-attr, disablepictureinpicture, video[class="cnx-video-tag"][disablepictureinpicture]) gizmodo.com##+js(trusted-set-attr, video[class="cnx-video-tag"], x-webkit-airplay, allow) gizmodo.com##+js(trusted-set-attr, video[class="cnx-video-tag"], data-autoplay-mute-lock, false) gizmodo.com##+js(trusted-set-attr, video[class="cnx-video-tag"], controls, true) gizmodo.com##+js(trusted-set-attr, video[class="cnx-video-tag"], width, 100%) gizmodo.com##+js(trusted-set-attr, video[class="cnx-video-tag"], height, 100%) gizmodo.com##+js(trusted-set-attr, video[class="cnx-video-tag"], crossorigin, anonymous) gizmodo.com##+js(trusted-set-attr, video[class="cnx-video-tag"], preload, metadata) gizmodo.com##+js(trusted-set-attr, video[class="cnx-video-tag"], playsinline, true) gizmodo.com##+js(trusted-set-attr, video[class="cnx-video-tag"], webkit-playsinline, true) gizmodo.com##span[data-css-selector^="ad-container."]:remove() gizmodo.com##script[id="id5-cnx-script"]:remove() gizmodo.com##script[id="lexicon-cnx-script"]:remove() gizmodo.com##+js(set-constant, _comscore, []) gizmodo.com##+js(abort-on-property-read, _comscore) gizmodo.com##+js(abort-on-property-write, _comscore) gizmodo.com##+js(acs, /_comscore\.push\(/) gizmodo.com##+js(set-constant, window.defaultPageContext.googleAnalyticsID, "", complete) gizmodo.com##+js(set-constant, window.defaultPageContext.adsEnabled, false, complete) gizmodo.com##+js(abort-on-property-read, window.taboolaInit) gizmodo.com##+js(abort-on-property-write, window.taboolaInit) gizmodo.com##+js(abort-on-property-read, data.adSourceData.adId) gizmodo.com##+js(abort-on-property-write, data.adSourceData.adId) gizmodo.com##+js(set-constant, window.__gpp_addFrame, noopFunc) gizmodo.com##+js(aopw, window.__gpp_addFrame) gizmodo.com##+js(aopr, window.__gpp_addFrame) gizmodo.com##+js(trusted-set-constant, window.__consent__, "CCPA") gizmodo.com##+js(remove-node-text, script, /__uspapiLocator/gm) gizmodo.com##+js(remove-node-text, script, /__gppLocator/gm) gizmodo.com##+js(set-constant, window['gtag_enable_tcf_support'], false) gizmodo.com##+js(remove-node-text, script, /\.push\(\{['"]gtm\.start['"]/gm) gizmodo.com##+js(remove-node-text, script, /trackerDataWoodford/gm) gizmodo.com##+js(aopw, trackerDataWoodford) gizmodo.com##+js(aopr, trackerDataWoodford) gizmodo.com##+js(aopw, trackerData) gizmodo.com##+js(aopr, trackerData) gizmodo.com##script[optidigital-ad-init]:remove() www.desksoft.com##p:has-text(/Ads by Google/i):remove() ||cdn.vax-now.com^* ||vax-now.com^* ||fast-protect.com^* ||communitymam.shop^* www.passfab.com##div[id="cookies-eu-banner"]:remove() ||kitwkuouldhu.com^* ||dyh1wzegu1j6z.cloudfront.net^* ||www.htsysltuujfjcb.com^* ||htsysltuujfjcb.com^* ||tpmr.com^* ||delahuerta.co^* ||click.junmediadirect.com^* ||www.mzlscqarnm.com^* ||mzlscqarnm.com^* ||www.hxnfgzotzkhbpw.com^* ||hxnfgzotzkhbpw.com^* ||supportmetrics.v.aaplimg.com^* ||infuriateharder.com^* ||caperedlevi.com^* ||impressivepointcircular.com^* ||poodledopas.cam^* uploadhub.to##div[class*="cookiealert"]:remove() www.phonearena.com##div[class="pa-sticky-container"]:has(div[class*="ad_728_90"]):remove() www.phonearena.com##div[class*="ad_940_0"]:remove() www.romsgames.net##div[class^="adlabel"]:remove() www.romsgames.net##div[data-pg-ad]:remove() www.romsgames.net##li[class="affiliate-container"]:remove() www.romsgames.net##div[class="mb-2"]:has-text(ADVERTISEMENT):remove() andropalace.co##div[id="sgpb-popup-dialog-main-div-wrapper"]:remove() andropalace.co##div[class*="sgpb-popup-overlay"]:remove() ||choupsee.com^* ||cdn.itskiddoan.club^* ||www.andropalace.org/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.andropalace.org##aside[class*="ads_"]:remove() ||www2.securysearchapp.com^* 9to5google.com##div[id^="div-gpt-ad-"]:remove() 9to5google.com##div[class*="ad-container"]:remove() ||mopemodelingfrown.com^* ||exportspring.com^* www.usbdev.ru##ins[class="adsbygoogle"]:remove() ||arketingeffort.com^* ||eableandwo.com^* ||dw55pg05c2rl5.cloudfront.net^* www.techwalla.com##div[class*="component-header-sticky-ad"]:remove() www.techwalla.com##div[class*="component-ar-horizontal-bar-ad"]:remove() www.techwalla.com##div[class*="component-ad-gpt"]:remove() www.techwalla.com##div[class*="ad-desktop"]:remove() ccm.net##div[data-ad-link]:remove() ||attributora.com^* ||nsecurrent.com^* videocardz.com##*[class*="adtester-container"]:remove() videocardz.com##*[class*="ezoic-ad"]:remove() videocardz.com##div[id="header-ad"]:remove() videocardz.com##div[id="vc-maincontainer-ad"]:remove() videocardz.com##div[id="vc-maincontainer-midad"]:remove() videocardz.com##ins[class*="adsbygoogle"]:remove() videocardz.com##ins[class*="google-main-ad"]:remove() videocardz.com##script[id^="google_gtagjs-js"]:remove() videocardz.com##span[id^="ezoic-pub-ad-"]:remove() ||rldwideorga.com^* ||grangilo.net^* ||qdawavxvrcnkg.com^* ||cagothie.net^* ||houndfleetmule.com^* ||icycorrection.com^* ||eclogicmeows.com^* ||l.sharethis.com^ ! The host in the following rule is a cdn for l.sharethis.com ||httplogserver-lb.global.unified-prod.sharethis.net^* fastclick.to##+js(remove-attr, disabled, .btn-download, stay) fastclick.to##+js(remove-class, disabled, .btn-download, stay) fastclick.to##button[id="downloadbtn"]:remove-attr(disabled) fastclick.to##button[id="downloadbtn"]:remove-class(disabled) fastclick.to##+js(set-constant, seconds, 0) fastclick.to##+js(aopr, adsbygoogle) fastclick.to##+js(aopw, adsbygoogle) fastclick.to##+js(set-constant, _gaq, []) fastclick.to##+js(aopr, _gaq) fastclick.to##+js(aopw, _gaq) fastclick.to##input[id="adblock_detected"]:remove() !fastclick.to##+js(no-setInterval-if, /^/) fastclick.to##+js(no-setInterval-if, /^function\(\)/) apk4k.fun##div[class="ad_spoiler"]:remove() apk4k.fun##div[class="ad"]:remove() ||wildroid.ru/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.rollingstone.com##div[id^="adm-inline-article-ad-"]:remove() www.rollingstone.com##div[class*="pmc-adm-boomerang-pub-div"]:remove() www.eonline.com##div[class*="--topad"]:remove() ||nertablisst.com^* ||nizationsuch.com^* ||slovakslarree.com^* androidphone.fr##div[class*="ezo_ad"]:remove() androidphone.fr##span[class*="ezoic-ad"]:remove() androidphone.fr##div[id^="ezwrap_adsense_"]:remove() androidphone.fr##div[id="text-2"]:has(div[id^="ezwrap_adsense_responsive"]):remove() ||in.pushmaster-in.xyz^* ||naucaish.net^* ||pseepsie.com^* ||apkfap.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css fstore.biz##+js(remove-attr, disabled, #at-btn-download) fstore.biz##+js(remove-attr, disabled, .at-btn-download) androjungle.com##amp-ad:remove() pythonawesome.com##ins[class="adsbygoogle"]:remove() ||dgelnham.com^* ||asricewaterh.com^* ||formanen.com^* ||malinesmanses.com^* ||softballwaiting.com^* ||ak.hetaruvg.com^* ||ak.hetaruwg.com^* ||clenchedyouthmatching.com^* ||inrhyhorntor.com^* ||getcam4.com^* ||track.cam4tracking.com^* ||tendontoss.com^* ||eu.messenger-notify.digital^* digital.olivesoftware.com##div[class*="fancybox-overlay"]:remove() ||plugins.blueconic.net/lightboxinteractiontype/2.4.1/frontend/src/lib/fancybox/fancybox_overlay.png$image ||sedna-aca.com^* oatmealdome.me##div[aria-label="cookieconsent"]:remove() www.actualidadiphone.com##div[id="machete_cookie_container"]:remove() ||tsshruggle.com^* ||pol.azureedge.net^* ||bolrookr.com^* ||downloadfree101.com^* ||beevakum.net^* ||trk.quillframe.online^* ||gardoult.com^* ||open.pullshock.icu^* datalinks.cc##div[class="code-block code-block-4"]:has(script[src*="/pol.azureedge.net/"]):remove() andoridgameshafeezullahdal.blogspot.com##div[class="overlay"]:remove() andoridgameshafeezullahdal.blogspot.com##div[id^="cookies"]:remove() short.sbenny.com##ins[class="adsbygoogle"]:remove() short.sbenny.com##div[id^="sbenny-com_300X250"]:remove() andoridgameshafeezullahdal.blogspot.com##div[id^="main-ads"]:remove() andoridgameshafeezullahdal.blogspot.com##a[class="piki-ads"]:remove() ||tags.remixd.com^* ||androidauth.wpengine.com/wp-json/api/advanced_placement/api-in-article-ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.androidauthority.com/_next/static/chunks/pages/_error-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.androidauthority.com/_next/static/chunks/pages/*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.androidauthority.com/_next/static/chunks/*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.androidauthority.com/_next/static/*/_middlewareManifest.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.androidauthority.com##div[class="--___Mb"]:has(div[class="--___jb --___kb"]):remove() www.androidauthority.com##div[class*="ad-banner"]:remove() www.androidauthority.com##div[class*="adBanner"]:remove() www.androidauthority.com##+js(set-constant, window._pwGA4PageviewId, "") www.androidauthority.com##+js(set-constant, addTakeover, noopFunc) www.androidauthority.com##+js(acs, /addTakeover\(/) ! Remove all of the div[class^="--_-___" EXCEPT div[class^="--_-___d"] !www.androidauthority.com##div[class^="--_-___"]:remove() www.androidauthority.com##div[class^="--_-___mb"]:remove() www.androidauthority.com##div[class="--_-___sd"]:remove() www.androidauthority.com##div[class="--_-___Pb"]:remove() www.androidauthority.com##div[class="--_-___1k"]:remove() www.androidauthority.com##div[class="--_-___5c"]:remove() www.androidauthority.com##.--_-___0k.--_-___cc.--_-___d:remove() www.androidauthority.com##.--_-___0k.--_-___d.--_-___e.--_-___7b:remove() www.androidauthority.com##div[data-ad-type="leaderboard_atf"]:upward(1):remove() www.androidauthority.com##div[data-ad-type]:remove() www.androidauthority.com##p:has-text(/Affiliate links on Android Authority may earn us a commission\./i):remove() ! TODO: Does the class name set in the following rule change? www.androidauthority.com##div[class="d_e d_8b d_ql"]:remove() www.androidauthority.com##+js(remove-node-text, script, /function addTakeover\(\)\s?\{/gm) www.androidauthority.com##+js(remove-node-text, script, /dataLayer\.push\(arguments\)/gm) www.androidauthority.com##iframe[id="pw_user_data"]:remove() ||sites.google.com/_/view/logImpressions$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css xervoo.net##div[id="cookie_notice"]:remove() ||6ldn4.voluumtrk3.com^* ||rndskittytor.com^* ! These three block videos. !||www914.ff-02.com^* !||www1135.ff-03.com^* !||www888.ff-02.com^* ||pdalife.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css mobdisc.com##a[class="b-download__button"][href^="//hantsailsyte.com/"]:remove() mobdisc.com##+js(set-constant, cur_val, 0) ||mobdisc.com/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !*$3p,script,denyallow=pdalife.com|www.google.com|www.gstatic.com,domain=mobdisc.com /^https?:\/\/(?!-)[A-Za-z0-9-]+([\-\.]{1}[A-Za-z0-9]+)*\.[A-Za-z]{2,6}\/?\S*/$3p,script,denyallow=pdalife.com|www.google.com|www.gstatic.com,domain=mobdisc.com ||spanuletubings.com^* dwdisc.com##span[class="b-rec"]:remove() www.moregameslike.com##div[class="container"]:has(ins[class="adsbygoogle"]):remove() www.moregameslike.com##ins[class="adsbygoogle"]:remove() www.moregameslike.com##div[class="label top"]:has-text(/ADVERTISEMENT/i):remove() www.moregameslike.com##div[class="adsbyvli"]:remove() www.measurementlab.net##div[id="cookie-notice"]:remove() apkfree.com##div[id="apf3"]:remove() apkfree.com##div[class="ads"]:remove() apkfree.com##ins[class="adsbygoogle"]:remove() www.kitguru.net##div[id="ljcomwpb-blanket"]:remove() www.kitguru.net##+js(remove-class, ljcomwpb-disable-scroll, body, stay) www.kitguru.net##a[id^="href-ad-"]:remove() www.onmsft.com##div[id="zd-leaderboard"]:remove() www.onmsft.com##div[id="adBanner"]:remove() ||hdbcode.com^* www.softwaretestinghelp.com##div[data-freestar-ad]:remove() voicechanger.io##p:has-text(/ADVERTISEMENT:/i):remove() voicechanger.io##ins[class="adsbygoogle"]:remove() geekflare.com##div[class*="page-advertisement"]:remove() geekflare.com##div[class*="post-advertisement-sidebar"]:remove() en.softonic.com##div[class*="sam-slot__"]:remove() !en.softonic.com##div[id$="-leaderboard-app-page-desktop-wrapper"]:remove() en.softonic.com##div[id*="-leaderboard-app-page-desktop-"]:remove() ||nsqedcmktda.xyz^* ||nessainy.net^* ||opkuyewm.xyz^* ||rauwoafe.com^* ||www.aaoomqpaydap.com^* ||aaoomqpaydap.com^* ||www.knkkpmtdesg.com^* ||knkkpmtdesg.com^* ||1570375906.rsc.cdn77.org/jl.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||1811086411.rsc.cdn77.org/i.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.ycbetnqpnjwptu.com^* ||ycbetnqpnjwptu.com^* ||1043818511.rsc.cdn77.org/zcpj.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||crm.automationhomesystem.com^* ||indocantika.com^* ||sweepstakes.3d-find.com^* ||redwood.fuse-cloud.com^* ||carinsuranceratesus.com^* ||gameassetsfree.com/js/block-ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css unityassets4free.com##div:has-text(/Adblock Detected!/i):remove() unityassets4free.com##span[class="background-image-page-header-overlay"]:remove() unityassets4free.com##div[id^="floating_ads_"]:remove() ||taghaugh.com^* ||track.xara.com^* uploadgig.com###freevid:remove() uploadgig.com##+js(remove-class, hideme, #countdownContainer) uploadgig.com##+js(set-constant, free_window, noopFunc) uploadgig.com##+js(set-constant, newWindow, noopFunc) uploadgig.com##+js(abort-on-property-read, newWindow) uploadgig.com##+js(abort-on-property-write, newWindow) uploadgig.com##+js(set-constant, counter, 0) www.warezbook.org/sw$important,script www.warezbook.org##li[class="item-flagrow-ad"]:remove() www.warezbook.org##div[class="Flagrow-Ads-under-header"]:remove() www.warezbook.org##div[id="alerts"]:remove() freemagazines.top##div[id^="chp_ads_blocker-"]:remove() freemagazines.top##div[id="chp_branding"]:remove() fileaxa.com##+js(remove-attr, disabled, #downloadbtn, stay) asphalt.fandom.com##div[id="WikiaBar"]:remove() !asphalt.fandom.com##div[data-wikiabarcontent]:remove() asphalt.fandom.com##div[class="top-ads-container"]:remove() asphalt.fandom.com##div[class*="ad-slot-placeholder"]:remove() !apkxmods.com##+js(remove-class, postlink, ,) apkxmods.com##+js(remove-attr, href, .postlink) !||up-load.io/ds1/js/countdown.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||up-load.io^$inline-script makes the page blank !causes adblock popup !up-load.io##+js(set-constant, remaining, 0) !up-load.io##+js(set-constant, tick, 1) ! removing or stopping the script with JSON.parse(atob()) will prevent the "create your link" button from being created !up-load.io##+js(acs, JSON.parse(atob())) !up-load.io##^script:has-text(/y=JSON\.parse\(atob\(\)\)/):remove() !up-load.io##iframe:remove() !up-load.io##img[src$="//i.imgur.com/ne03PNi.png"]:upward(3):remove() up-load.io##+js(abort-on-property-read, ael) up-load.io##+js(abort-on-property-write, ael) up-load.io##+js(acs, ael) up-load.io##+js(abort-on-property-read, adsbygoogle) up-load.io##+js(abort-on-property-write, adsbygoogle) up-load.io##+js(abort-on-property-read, atOptions) up-load.io##+js(abort-on-property-write, atOptions) up-load.io##+js(abort-on-property-read, _ofkhpt) up-load.io##+js(abort-on-property-write, _ofkhpt) up-load.io##+js(acs, _ofkhpt) up-load.io##script[id="_ofkhpt"]:remove() up-load.io##^script:has-text(\"s65c\"):remove() up-load.io##+js(remove-node-text, script, /"s65c"/gm) !up-load.io##+js(acs, s65c) up-load.io##+js(acs, \"s65c\") up-load.io##span[id="s65c"]:remove() !up-load.io##+js(aeld, DOMNodeRemoved) up-load.io##+js(aeld, DOMNodeRemoved, onload) up-load.io##+js(remove-attr, disabled, #downloadbtn, stay) up-load.io##+js(remove-class, btn-block, #downloadbtn, stay) up-load.io##+js(set-constant, atOptions, {}) up-load.io##a[id="__bgd_link"]:remove() up-load.io##div[class*="ad-layout-"]:remove() up-load.io##div[class="ad-display-section"]:remove() up-load.io##div[class="ads"]:remove() up-load.io##div[class="contentDivOuter"]:remove() up-load.io##div[class="cookie-message"]:remove() up-load.io##div[id="gdpr-cookie-notice"]:remove() up-load.io##ins[class="adsbygoogle"]:remove() up-load.io##div[id="proxydetected"]:remove() up-load.io##script[onerror]:remove-attr(onerror) up-load.io##script[onload]:remove-attr(onload) up-s1.com,up-load.io##+js(no-window-open-if) ||up-load.io/ds1/img/logo.png#-page-peel//adnetwork468./ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||up-load.io/pcheck.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||up-load.io/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! TODO: The following rule may prevent "garbage" domains with unwanted ad and tracking scripts from being contacted. up-load.io##+js(no-xhr-if, method:HEAD) ||up-load.io^$3p,xhr ||up-load.io^$3p,script,redirect-rule=noopjs ||up-load.io/ds1/js/nt.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! using remove() above will change the position of the following scripts and make the hard-coded values invalid, so remove the scripts in reverse order of appearance in the page up-load.io##:xpath(/html/body/script[3]):remove() up-load.io##:xpath(/html/body/script[1]):remove() up-load.io##:xpath(/html/head/script[13]):remove() up-load.io##span:has(*[id="adContext"]):remove() up-load.io##span:has(*[id="downloadAd"]):remove() up-load.io##span:has(*[id="ad_img"]):remove() up-load.io##span:has(*[id="onpageads"]):remove() up-load.io##span:has(*[id="adsense"]):remove() up-load.io##span:has(*[id="topBannerAd"]):remove() up-load.io##span:has(*[id="weatherad"]):remove() ||upskittyan.com^* ||qrhwossbcconwxc.xyz^* ||vgfutxwgq.com^* ||1freeefastadn1.com^* ||pfaijlrcc.xyz^* ||ulsfygmmupivd.com^* ||oamoatch.com^* apkcunk.com##div[class="ad-unit"]:remove() www.medicalnewstoday.com##div[id="ccpa-banner"]:remove() www.medicalnewstoday.com##div[data-ad="true"]:remove() www.medicalnewstoday.com##div[data-testid="qualtrics-container"]:remove() www.medicalnewstoday.com##div[class^="css-"][data-empty="true"]:remove() www.medicalnewstoday.com##aside[class="css-cd0nvx"]:remove() ||www.zlajnpfqgsleo.com^* ||zlajnpfqgsleo.com^* ||www.quizz2win.com^* ||www.nxuktkuoazvizd.com^* ||nxuktkuoazvizd.com^* ||www.nulledfrm.com/service_worker.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.easybytez.com##+js(remove-attr, disabled, #btn_download, stay) hot4share.com##+js(remove-attr, disabled, #downloadbtn, stay) ||blyckidxmuq.com^* ||voonogoa.net^* ||othxgfawwmambdx.xyz^* ||cdn.adlook.me^* ||d.gcdn.co/js/rlf.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||news-oginet.cc/code/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads2.adlook.me^* www.system-rescue.org##div[aria-label="cookieconsent"] !||news-muxeta.cc/code/https.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||news-muxeta.cc^* ||disruptorgan.com^* ||pl16326236.safestcontentgate.com^* www.stellarinfo.com##div[class="cookies_message"]:remove() apkdone.com##+js(aopr, oncontextmenu) apkdone.com##+js(aeld, contextMenus) www.xformgames.com##div[aria-label="cookieconsent"]:remove() www.dariagames.com##div[id^="cookieBar"]:remove() www.dariagames.com##div[class^="ads160_300_right"]:remove() www.zeegames.com##p[align="center"]:has(ins[class="adsbygoogle"]):remove() www.zeegames.com##div[class="header728x90_ads"]:remove() www.zeegames.com##div[class="left_column_ads"]:remove() www.zeegames.com##ins[class="adsbygoogle"]:remove() forum.skilledg.com##div[class^="cookie_"]:remove() apkgods.net##+js(remove-attr, type, #hd_link_download, stay) www.windowslatest.com##div[class*="code-block"]:has(ins[data-ad-client]):remove() www.windowslatest.com##div[id^="gpt-passback"]:remove() www.windowslatest.com##h4[class="block-title"]:has-text(Advertisement):remove() www.carifred.com##div[id="cookieChoiceInfo"]:remove() ||pubhotmax.com^* ||betotodilea.com^* ||ahvclick.com^* ||markofathenaluk.com^* ||fondlecokecombination.com^* !||twentyhandful.com/impr.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||twentyhandful.com^* ||givekeeperstirring.com^* !||cdnjs.cloudflare.com/ajax/libs/axios/0.22.0/axios.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||opcharizardon.com^* ||static.x-plarium.com/browser/canvas/landings.pp.analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||collector.plarium.com^* viewsb.com##+js(aeld, contextmenu) viewsb.com##div:has(a[href*="//opcharizardon.com/"]):remove() ||hetadinh.com^* ||www.xgwqjjgwhgke.com^* ||xgwqjjgwhgke.com^* ||sleetwelk.casa^* ||itemedjhvh.casa^* !||metrica-yandex.com/metrika/tag.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||metrica-yandex.com^* ||meat.sjtactic.com^* ||atjigglypuffor.com^* ||affecteddetectrome.com^* ||vpn-offers.org^* ||boftogro.net^* ||eensoans.com^* ||sbfarhyhf.xyz^* ||magnetdl.uproxy.to/helper-js/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||magnetdl.uproxy.to/x.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||magnetdl.uproxy.to/k9.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mylink.vc/ad.sense/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hosehonoured.com^* ||mylink.vc/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||matomo3.org/matomo.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||matomo3.org^* ||silklanguish.com^* ||boahoupi.com^* ||1337x.unblockproject.top/cdn-cgi/apps/head/*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pyropenunmould.com^* ||www.wyrtaxbhappt.com^* ||wyrtaxbhappt.com^* www.fosshub.com##div[aria-label="cookieconsent"]:remove() www.fosshub.com##form[id="donateAdsForm"]:remove() www.fosshub.com##div[id="adLocation"]:remove() www.fosshub.com##aside[class="ad"][aria-label="Advertisement"]:remove() ||www.fosshub.com/media/js/adblock.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mpuxzyuiyejwe.com^* ||cart00.xyz^* !onhax.io##+js(aeld, contextmenu) onhax.io##+js(acs, nocontext) ||onhax.io/wp-content/cache/min/1/7d50eaf8b4ce5a09960c0a5c959e6abd.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css onhax.io##button:has-text(Download Crack File):remove() onhax.io##button:has-text(Download Crack + Setup):remove() onhax.io##button:has-text(Download Crack Only):remove() www.apeaksoft.com##div[class="usernotice_pop"]:has-text(/cookies/i):remove() ||buildsintellecttweak.com^* ||outragedisgraceful.com^* ||itweepinbelltor.com^* ||immoderatesulky.com^* gbplus.org##div[style*="width: 100vw; height:280px;"]:has(ins[data-ad-client]):remove() gbplus.org##div[style="width: 100vw; text-align:center; height:250px;"]:has(ins[data-ad-client]):remove() www.gamekiller.net##div[class="baseHtml noticeContent"]:has(div[class="noticeCookiesContent"]):remove() www.gamekiller.net##div[class="noticeCookiesContent"]:remove() cheatware.net##aside[class^="ads ads_single_"]:remove() www.360moddownload.com##div[class="ad-wrap"]:remove() ||zoukooso.com^* ||fish.sjtactic.com^* ||btdb.oneproxy.net/cdn-cgi/apps/head/*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||btdb.oneproxy.net/x.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||btdb.oneproxy.net/hy.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||btdb.oneproxy.net/helper-js/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||woujoami.com^* ||vyovakadn.xyz^* ||www.jfqzwsczsf.com^* ||jfqzwsczsf.com^* ||www.ysnvlxop.com^* ||ysnvlxop.com^* www.fcportables.com##div[id^="chp_ads_blocker-"] www.fcportables.com##div[class*="bs-wrap-gdpr-law"] www.fcportables.com##div[id^="bsa-zone_"] ||www.oxqvbjitvqqv.com^* ||oxqvbjitvqqv.com^* ||fuegeek.xyz^* ||haxpc.net/wp-content/plugins/perfmatters/js/analytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css haxpc.net##button[class="getox"] ||grovebrainwashtroubles.com^* ||www.effectivedisplaycontent.com^* !dl.tech-story.net##div[class="alert alert-danger"]:has-text(/Adblock/i):remove() !||dl.tech-story.net/cloud_theme/build/js/script.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !dl.tech-story.net##+js(remove-class, hidden, ,) dl.tech-story.net##+js(acs, adblock_message) dl.tech-story.net##+js(aopr, adblock_message) dl.tech-story.net##+js(aopw, adblock_message) dl.tech-story.net##+js(set-constant, adblock_message, '', stay) dl.tech-story.net##+js(nostif.js, checkAdblockUser) !dl.tech-story.net##+js(nostif.js, /^/, 1000) ||www.electricalbicyclelistnonfiction.com^* dl.tech-story.net##+js(remove-class, disabled, a.btn.btn-success.btn-lg.get-link.disabled, stay) dl.tech-story.net##+js(remove-class, hidden, #go-submit, stay) dl.tech-story.net##div[style="display:none;"]:style(display:block !important;) platinmods.com##div[data-ad-slot]:remove() ||platinmods.com/service_worker.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.ywxi.net/js/1.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dtx9pzf7ji0d9.cloudfront.net/js/1.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css xenupload.com##div[aria-label="cookieconsent"]:remove() ||chooxaur.com^* ||qrekifgvxtk.xyz^* ||noanawie.com^* katfile.com##._ad_cover:remove() ! The element in the following rule is used by the website for the adblock checking. katfile.com##.ad-box:remove() katfile.com##.ads_iran:remove() katfile.com##.ads_not_iran:remove() katfile.com##a[href^="https://bmjidc.xyz/"]:remove() katfile.com##a[id="dllinked"]:remove() katfile.com##a[id="dllinked2"]:remove() katfile.com##a[id="dllinked3"]:remove() katfile.com##div[id="ads"]:remove() katfile.com##img[src="/video3.jpg"]:remove() katfile.com##+js(set-constant, adblock, false) katfile.com##+js(aopr, adBoxEl) katfile.com##+js(aopw, adBoxEl) katfile.com##+js(set-constant, hasAdBlock, false) katfile.com##+js(remove-node-text, script, /var adBoxEl\s?=\s?/gm) katfile.com##+js(remove-node-text, script, /function shuffle\(array\)\s?\{/gm) katfile.com##+js(set-constant, shuffle, noopFunc) ! TODO: Do not abort on ads or remove the inline script from which it is present. katfile.com##+js(set-constant, ads, []) ! TODO: Do not abort on arr or remove the inline script from which it is present. katfile.com##+js(set-constant, arr, []) katfile.com##+js(set-constant, adEnable, false) katfile.com##+js(trusted-replace-node-text, script, /e\.preventDefault\(\);/gm, return;) katfile.com##+js(set-constant, download_click, true) katfile.com##+js(trusted-set-attr, button[id="fbtn1"], type, submit) katfile.com##+js(trusted-set-attr, button[id="m_fbtn1"], type, submit) katfile.com##button[id="fbtn1"]:remove-attr(disabled) katfile.com##+js(remove-attr, disabled, button[id="fbtn1"]) katfile.com##button[id="m_fbtn1"]:remove-attr(disabled) katfile.com##+js(remove-attr, disabled, button[id="m_fbtn1"]) ! The following two rules will start the countdown after the page is loaded even if the time limit between downloads has not passed. ! TODO: This causes the page to continually refresh, so don't use the following two rules. !katfile.com##+js(trusted-click-element, button[id="fbtn1"]) ! The following rule is for mobile devices. !katfile.com##+js(trusted-click-element, button[id="m_fbtn1"]) ! TODO: The following rule doesn't defuse the click event. katfile.com##+js(aeld, click, /onclick\(event\)/) ! Either of the following two rules will unhide the two alternative input tags that can act as submit buttons for the form, but does NOT bypass the wait time. ! This button bypasses the countdown before download, but not the wait time between downloads. katfile.com##div[class="row hide"]:remove-class(hide) katfile.com##+js(remove-class, hide, div[class="row hide"]) ! The following rule isn't necessary to make the input element look like a button. !katfile.com##+js(add-class, btn.btn-primary, input[id="freebtn"]) ! TODO: The following rule clicks the "free download" button; if the wait time between downloads has not expired, will have to reload the page; if logged into a premium account, disable this rule? !katfile.com##+js(trusted-click-element, input[id="freebtn"]) ! TODO: The following rule should remove the client-side countdown time, but doesn't even though the variable shows to be set in the console. katfile.com##+js(set-constant, estimated_time, 0) katfile.com##+js(trusted-replace-node-text, script, /var estimated_time\s?=\s?\d+;/gm, var estimated_time = 0;) katfile.com##+js(trusted-replace-node-text, script, /var orig\s?=\s?"/gm, var orig = mess = ") katfile.com##+js(trusted-replace-node-text, script, /var mess\s?=\s?['"]Delay between downloads must be not less than 120 minutes\, try again later\.\\Do not want to wait\? please \click here\<\/a\>\.['"];/gm, null;) ! TODO: The following two rules may trigger showing of a direct download link. katfile.com##+js(trusted-set-constant, lng, 'japan') katfile.com##+js(trusted-replace-node-text, script, /if\s?\(lng\s?==\s?['"]japan['"]\)\s?\{/gm, if (true) {) ! Do NOT use the following rule to remove the script. !katfile.com##+js(remove-node-text, script, /BetterJsPop\./gm) katfile.com##+js(set-constant, BetterJsPop, {}) katfile.com##+js(set-constant, BetterJsPop.add, noopFunc, complete) ! The following four rules will skip over automatic clicking of ad links. katfile.com##+js(set-constant, captcha_click, true) katfile.com##+js(set-constant, download_click, true) katfile.com##+js(set-constant, adcash_click, true) katfile.com##+js(set-constant, softexter_click, true) katfile.com##+js(trusted-replace-node-text, script, /window\.open\('http:\/\/www\.predictivdisplay\.com\/jump\/next\.php\?r=\d+'\);/gm, "") katfile.com##+js(trusted-replace-node-text, script, /window\.open\(arr\[count\]\);/gm, "") katfile.com##+js(set-constant, i, 0) ! Block third-party popups instead of the following rule. !katfile.com##+js(no-window-open-if, !/katfile\.com/i) *$3p,popup,domain=katfile.com ! TODO: using the following rule doesn't block popups from about:blank !/^https?:\/\/(?!-)[A-Za-z0-9-]+([\-\.]{1}[A-Za-z0-9]+)*\.[A-Za-z]{2,6}\/?\S*/$3p,popup,domain=katfile.com ||katfile.com/f706v6c9ntf2/output-onlinepngtools.png.zip.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! "important" is necessary in the following rule to override @the "@/adframe.js$script" rule in the "AakList (Anti-Adblock Killer)" filter list/ ||katfile.com/js/adframe.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||katfile.com/js/countdown.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||katfile.com/js/pu.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||katfile.com/js/pu.lc.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||katfile.com/cgi-bin/stats.fcgi?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||slipdashedundermine.com^* ||ceargentsse.com^* ||tysolomonau.com^* ||nsionscorm.com^* ||d2kd9y1bp4zc6.cloudfront.net^* ||www.hscpbysqsepnyw.com^* ||hscpbysqsepnyw.com^* ||www.sttdsrewciiqq.com^* ||sttdsrewciiqq.com^* ||tlpblwipcipgmtd.com^* ||koochaud.net^* ||pqpqjlrihobtfck.top^* ||www.qlmqzznfcb.com^* ||www.jmtomcgqnsczl.com^* ||vmpwpvawmrdjj.com^* www.gametdb.com##div[aria-label="cookieconsent"]:remove() www.elotrolado.net##div[id^="dfp_"]:remove() ||sspervicearg.com^* ||d1clmik8la8v65.cloudfront.net^* ||tedmonastyd.com^* ||parashparro.com^* ||www.squvlmycieyl.com^* ||squvlmycieyl.com^* ||nflxafyh.com^* ||tbhdqecyn.xyz^* ||www.stbzekvyt.com^* ||stbzekvyt.com^* crackshash.com##div[class="crack-after-content"]:remove() crackshash.com##div[class="crack-before-content"]:remove() crackshash.com##div[class="ad-boxxx"]:remove() crackshash.com##button[class^="wp-ad"]:remove() ||cmp.uniconsent.com^* ||www.ywbcdeyqgfzx.com^* ||ywbcdeyqgfzx.com^* ||www.zicyqbpqsg.com^* ||zicyqbpqsg.com^* ||www.vahfzpfyg.com^* ||vahfzpfyg.com^* !||sanet.st/assets/min/public/all_*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sanet.st^$3p,script ||rsc.cdn77.org^$script,domain=sanet.st lapelotita.com##+js(remove-class, hidden, #go-submit, stay) lapelotita.com##+js(remove-class, disabled, a) lapelotita.com##button[id="go-submit"]:style(display:block !important;) ||www.nuctcflay.com^* ||nuctcflay.com^* ||www.scblqvoiypcoy.com^* ||scblqvoiypcoy.com^* ||www.hamhrpccxs.xyz^* ||hamhrpccxs.xyz^* ||ambxvmllokaa.com^* ||www.ambxvmllokaa.com^* ||epigonuncream.com^* ||kuttarmufti.com^* ||tanyoanseamy.cam^* ||lookereras.casa^* ||woozilyyoke.cam^* ||parkcircularpearl.com^* ||storage.googleapis.com/staging.acoustic-agent-172617.appspot.com/ban.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||yts.unblockedscene.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tobaltoyon.com^* ||putainalen.com^* ||enmvnowpx.com^* ||www.linkonclick.com/a/display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||yts.unblockedscene.com/pxu.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||yts.unblockedscene.com/hy.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||yts.unblockedscene.com/x.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||yts.unblockedscene.com/app/apx*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nuleedsa.net^* ||meat.ixnow.xyz^* !||cdnondemand.org/script/su.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdnondemand.org^* ||prield.com^* ||snonsy.com^* ||fish.ixnow.xyz^* yts.unblockedscene.com##div[onclick]:has(div[id^="cookieConsent"]):remove() yts.unblockedscene.com##div[id^="cookieConsent"]:remove() ||yts.unblockedscene.com/helper-js/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ymwnkmsyhxd.com^* ||fsrnkajo.xyz^* support.horizondatasys.com##div[aria-label="cookieconsent"]:remove() listoffreeware.com##div[id="catapult-cookie-bar"]:remove() listoffreeware.com##div[class="listo-before-content"]:has(ins[data-ad-client]):remove() www.onyxbits.de##div[class="adsense"]:remove() 80.lv##div[class^="_"]:has(h3[class^="_"]:has-text(/We need your consent/i)):remove() www.rgcd.co.uk##div[id="cookieChoiceInfo"]:remove() ||brioletredeyes.com^* ||nestledmph.com^* ||vooshagy.net^* ||terrifictooth.com^* ||superficialeyes.com^* dotesports.com##div[class^="proper-ad-"]:remove() dotesports.com##div[id^="proper-ad-"]:remove() apkxmods.com##div[class="contentbox"]:has(h4:has-text(/Google Adsense/i)):remove() ||tny.so/js/fps.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||surprisinglystaunchdemocratic.com^* ||gaietyastonished.com^* ||turbanmadman.com^* ||sterilecute.com^* ||launchingonsetwhirlwind.com^* ||grandchildfee.com^* ||startstrongmostthefile.vip^* ||urlshortnr.ga/track.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d1lxhc4jvstzrp.cloudfront.net/scripts/js3.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ga-ads.com/assets.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||forzslodge.com^* ||fatsosjogs.com^* ||burydibase.com^* www.auslogics.com##div[class*="banner-in-content"]:has(div[class="rv-ad"]):remove() www.auslogics.com##div[id="td-top-leaderboard-2__ad"]:remove() www.winhelponline.com##div[class*="ezo_ad"]:remove() www.winhelponline.com##span[id^="ezoic-pub-ad-"]:remove() www.winhelponline.com##span[class*="ezoic-ad"]:remove() ||absorbingcorn.com^* www.wintips.org##div[class*="adthrive-"] ||d1lxhc4jvstzrp.cloudfront.net^* ||cuabufkg.com^* ||direct.apus.tech/live/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||spoilphysiqueteenagers.com^* ||direct.apus.tech/live/www/admin/plugins/ReviveNbannerrotation/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wvhba6470p.com^* ||www.papayads.net^* !||papayads.net/self/clnt/1005-1116/adtags.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||papayads.net^* ||player.adtcdn.com^* ||heevaush.com^* ||cdn.netcatx.com/adxchange/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn-adtrue.com/track/ga.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn-adtrue.com^* ||t.go2.global/tag/impress_v2$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.mp4upload.com/nue/videojs/plugins/vast.vpaid.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.mp4upload.com/2bb.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||snagbaudhulas.com^* ||revolvefarfetched.com^* ||jxutotiwvbh.com^* ||adblockstrtech.link^* ||visariomedia.com^* ||www.visariomedia.com^* ||stats.esecured.net^* ||ssmyinteuk.com^* ||lturerpartm.com^* ||edstrastco.com^* ||ukmepositi.com^* !||static01.nyt.com/ads/tpc-check.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static01.nyt.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||nytimes.map.fastly.net/ads/tpc-check.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nytimes.map.fastly.net/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||a.et.nytimes.com/track$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.et.nytimes.com^* www.toonanime.online##div[id^="custom_html-"]:remove() ||www.toonanime.online/wp-content/plugins/A-ADS/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||au.tahodebe.xyz^* ||tahodebe.xyz^* wolfenstein.fandom.com##div[class="top-ads-container"]:remove() wolfenstein.fandom.com##div[data-key="advertisement"]:remove() wolfenstein.fandom.com##div[class*="ad-slot-placeholder"]:remove() ||findanyanswer.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn2.lockerdomecdn.com/_js/ajs.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d1mo5qyhg02w11.cloudfront.net/_js/ajs.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cache.sellwild.com^* ||ads.bidstreamserver.com^* ||cdn.pushmaster-cdn.xyz^* ||announcem.com^* findanyanswer.com##div[class^="sellwild-banner"]:remove() findanyanswer.com##div[id^="ad-"]:remove() findanyanswer.com##+js(acs, _avp) findanyanswer.com##+js(aopr, _avp) findanyanswer.com##+js(aopw, _avp) findanyanswer.com##+js(acs, w.ldAdInit) findanyanswer.com##+js(aopr, w.ldAdInit) findanyanswer.com##+js(aopw, w.ldAdInit) findanyanswer.com##sellwild[observed="yes"]:remove() echoshare.co##div[class*="fusion-privacy-bar"]:remove() xenforo.com##div[class="u-bottomFixer js-bottomFixTarget"]:has(li[class*="notice--cookie"]):remove() disqus.com##.osano-cm-dialog--type_bar.osano-cm-dialog--position_bottom.osano-cm-dialog.osano-cm-window__dialog:has-text(/Cookie Policy/i):remove() disqus.com##div[class*="login-overlay__wrapper"]:has-text(/Join Disqus to get your own profile like this./i):remove() ||lapelotita.com/short/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css lapelotita.com##div[id="ad-banner"]:remove() ||schoolreatchecusubac.ml^* ||pastoupt.com^* ||www.pwbstpjjkovpy.com^* ||pwbstpjjkovpy.com^* ||www.cnxdztpgjyc.com^* ||cnxdztpgjyc.com^* diakov.net##div[data-ad-id]:remove() diakov.net##div[data-name="adaptiveAd"]:remove() ||nversitymi.com^* ||toftheussia.com^* ||ableaborah.com^* ||eiasninancu.com^* ||imps.monu.delivery^* ||amerx.viadata.store^* ||logs.viadata.store^* ||ads.viralize.tv^* ||tgkswchehxpfwff.com^* ||1warie.com^* uploadev.org##+js(no-window-open-if, /uploadev\.org/i) !||hexagon-analytics.com/images/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hexagon-analytics.com^* ||rmumuhmcogufc.xyz^* epicstream.com##div[class="ad-wrapper"]:remove() epicstream.com##div[class*="ad-container"]:remove() epicstream.com##div[class*="ad-base--"]:remove() epicstream.com##div[class^="m-ad"]:remove() epicstream.com##div[class*="article-sidebar--ads"]:remove() modxda.com##div[class="customad"]:remove() techtodown.com##div[class="ads-wrapper"]:remove() xapkmod.com##+js(acs, adsbygoogle) xapkmod.com##+js(aopr, adsbygoogle) xapkmod.com##+js(aopw, adsbygoogle) xapkmod.com##div[class="adv"]:remove() xapkmod.com##+js(set-constant, seconds, 0, stay) newatlas.com##div[class*="OcelotAdModule"]:remove() ||ogxbvyeynymsx.xyz^* ||vcrlaitlihy.com^* service.engelmann.com##+js(remove-attr, disabled, .btn.btn-primary) litgu.ru##a[href^="https://usnd.to/"]:remove() ||xhhocfwarxfh.xyz^* ||koyawtoqfcbg.com^* ||cfwchydynfc.com^* ||swwmerondksatxp.xyz^* ||gfxtra.123prx.com/pxu.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lanopoon.net^* ||meat.nulez.xyz^* ||gfxtra.123prx.com/app/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gfxtra.123prx.com/zpp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gfxtra.123prx.com/hy.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||looluchu.com^* ||ugbspikjqgs.com^* ||gfxtra.123prx.com/helper-js/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gfxtra.123prx.com/x.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||premium.friendlyduck.com^* fileaxa.com##div[class="ad728"]:remove() ||counter.web.money/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hobytvlakegkl.com^* ||repsrowedpay.com^* kupdf.net##div[class*="donate-box"]:remove() kupdf.net##div[aria-label="cookieconsent"]:remove() kupdf.net##a[class*="show-donate"]:remove() ||podosupsurge.com^* ||meatilywoman.cam^* pdfcoffee.com##div[id="PDFCOFFEECOM_cookie_box"]:remove() ||thaudray.com^* ||prvfjuka.xyz^* ||psauwush.net^* techtodown.com##aside[class="ads ads_home"]:remove() bookauthority.org##div[aria-label="cookieconsent"]:remove() ||ashoupsu.com^* ||dacmaiss.com^* ||ilemkgdar.xyz^* ||muxeyipppxwvsj.com^* ||rmsncytlfsnvamu.xyz^* !||www.hostg.xyz/aff_i?offer_id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.hostg.xyz^* !||baominh.tech/wp-content/plugins/deblocker/js/ads.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||baominh.tech/wp-content/plugins/deblocker/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||baominh.tech/wp-content/plugins/dlnjh-kimcu/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !baominh.tech##ins[data-ad-client]:upward(1):remove() baominh.tech##ins[data-ad-client]:remove() ||lkogfucm.com^* ||xhbhivtodtsnib.xyz^* ||pcnmjhsq.xyz^* ||fpimttkfxrvgi.com^* www.comss.ru##div[class="container-fluid"]:has(ins[data-ad-client]):remove() ||nafulltiuk.com^* ||donemillio.com^* ||www.cnjhqctwhstgz.com^* ||cnjhqctwhstgz.com^* ||www.dfxofvzd.com^* ||dfxofvzd.com^* visualstudiomagazine.com##div[id="olyticsPopupPersistentBottom"]:remove() ||xcpbprmpe.xyz^* ||ngqhqbpfpecchtq.com^* ||pdecgbcjfnuyb.com^* ||vggdaiesp.com^* leitup.com##+js(remove-attr, readonly, .form-control) ||xukpressm.com^* ||newreven.com^* ||rc.rlcdn.com/456809.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.mxyxgkuexjr.com^* ||mxyxgkuexjr.com^* ||www.vgfutxwgq.com^* ||d3tozt7si7bmf7.cloudfront.net^* ||wjgptdmdvwbu.top^* ||xrikmhyqxcipwvu.com^* ||gloonseetaih.com^* ||unphionetor.com^* ||grootcho.com^* ||yeducation.xyz^* www.pocket-lint.com##div[class="streamamp-block"]:remove() www.pocket-lint.com##div[class="ads-content"]:remove() ||udahgcft.com^* ||mvdkcfyhtsq.com^* ||tspvaaegxu.xyz^* ||naesswqfvel.xyz^* ||dilnvwrohyq.com^* ||iaxwhriaeku.com^* ||gembuyghmqgcs.com^* ||jhainvojv.com^* ||woexupncumgk.xyz^* ||bsiaheon.com^* ||msvkrbxcxttxfr.xyz^* ||nuimcuhwlkb.com^* www.science.org##div[class*="alert-donation"] ||adjustific.xyz^* ||pykbiefir.xyz^* ||ufdxxvasktljt.com^* ||7ca78m3csgbrid7ge.com^* ||cdn.bmcdn2.com/js/61f3f82366aff700279c7527.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bqrpytsbgygxcci.com^* ||attemptsbetween.com^* ||disparagethence.com^* ||tacticmarshannouncing.com^* ||qbojxvomrluh.com^* www.wifislax.com##script[id="gdpr-tools-data-settings"] www.wifislax.com##div[class*="gdpr-"] www.wifislax.com##script[id^="gdpr-tools"] ||policy.app.cookieinformation.com^* ||sni1gl.wpc.omegacdn.net/uc.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.wifislax.com/wp-content/plugins/gdpr-tools/includes/libs/jquery.eu-cookie-consent/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.wifislax.com/wp-content/plugins/gdpr-tools/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.wifislax.com/wp-content/plugins/eu-cookie-law/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.wifislax.com/wp-content/plugins/gdpr/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d2kdb91xusyaeu.cloudfront.net/cms/videojs/videojs.ads.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||assets.scrippsdigital.com/cms/videojs/videojs.ads.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !baominh.tech##script[id="mdp-deblocker-ads-js"]:remove() ! TODO: ^script doesn't work with attributes since checked before DOM created? baominh.tech##script[id^="mdp-deblocker-"]:remove() baominh.tech##+js(set-constant, adsBlocked, falseFunc) baominh.tech##+js(set-constant, window.mdpDeBlockerDestroyer, false) baominh.tech##+js(set-constant, disableTextSelection, noopFunc) baominh.tech##+js(set-constant, disableContextMenu, noopFunc) baominh.tech##+js(set-constant, disableHotKeys, noopFunc) baominh.tech##+js(set-constant, disableDeveloperTools, noopFunc) baominh.tech##+js(acs, adsbygoogle) baominh.tech##+js(aopr, adsbygoogle) baominh.tech##+js(aopw, adsbygoogle) !baominh.tech##^script:has-text(/debugger;/):remove() !baominh.tech##+js(trusted-replace-node-text, script, /^debugger;/gm, "") baominh.tech##+js(remove-node-text, script, /debugger;/gm) baominh.tech##+js(acs, mdpDeBlocker) baominh.tech##+js(aopr, mdpDeBlocker) baominh.tech##+js(aopw, mdpDeBlocker) baominh.tech##ins[class="adsbygoogle"]:remove() baominh.tech##div[id^="mdp-deblocker"]:remove() ! These anti-adblock plugin locations are the same script with randomnly generated names and locations. !||baominh.tech/wp-content/plugins/wp-bodxkzrdywsx/wp-elzmfgq-thovicm.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||baominh.tech/wp-content/plugins/wp-lbzh-bgwqrotu/pqbuhjgd-dxvbhsk.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||baominh.tech/wp-content/plugins/wp-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css/$script ||baominh.tech/wp-content/plugins/onesignal-free-web-push-notifications/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||baominh.tech/OneSignalSDKWorker.js.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css download.baominh.tech##div[id="cookie-pop"]:remove() download.baominh.tech##form[id="go-popup"]:remove() !download.baominh.tech##+js(remove-class, hidden, #go-submit, stay) !download.baominh.tech##+js(remove-attr, disabled, #go-submit, stay) !download.baominh.tech##button[id="go-submit"]:style(display:inline !important;) download.baominh.tech##div[class="banner-inner"]:remove() !||download.baominh.tech.cdn.cloudflare.net/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||download.baominh.tech/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fastcopy.jp/cgi-bin/log.cgi$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fastcopy.jp/cgi-bin/Count.cgi$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||igyecnhur.xyz^* ||jpbrtnuuthysfs.com^* ||qsvocfhnlclehvr.com^* ||mpeyfcftddhltd.xyz^* ||beacon.sftoaa.com^* !||px.mountain.com/st?ga_tracking_id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||px.mountain.com^* ||dx.mountain.com^* !||obs.cheqzone.com/tracker/tc_imp.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||obs.cheqzone.com/tracker/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||obs.cheqzone.com/mon$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||obs.cheqzone.com/dc/1$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.gamespot.com##div[data-ad-type]:remove() www.gamespot.com##div[data-ad]:remove() bethesda.net##onetrust-cookie-policy:remove() bethesda.net##visor-alert:remove() ||xtuocamulxdqwft.xyz^* ||nlfsqvqf.com^* ||kcpwcrcjewal.com^* ||cdn.barscreative1.com^* ||qaqdojte.xyz^* ||gjnbhvnbmxxv.com^* !||cdn.vlitag.com/pbs/b6b4d743-14d2-4add-9aa9-9bbc42f28828/prebid-9.14.0.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css /^https?:\/\/cdn\.vlitag\.com\/pbs\/[\-\da-f]+\/prebid\-\d\.\d\.\d\.js\??/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stats.vlitag.com^* ||logs.vlitag.com^* ||tag.vlitag.com^* ||services.vlitag.com/adv1/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dsp.vlitag.com/js/v1/adtag.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||csp-reporting.cloudflare.com/cdn-cgi/script_monitor/report?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||csp-reporting.cloudflare.com^* miniwebtool.com##div[id="btopads"]:remove() miniwebtool.com##div[id="videoad"]:remove() miniwebtool.com##div[id="div_topside_300x250"]:remove() miniwebtool.com##div[id^="div_desktop_300x250"]:remove() miniwebtool.com##div[id="div_native_banner"]:remove() miniwebtool.com##div[id="adsbottom"]:remove() ||miniwebtool.com/prebid426.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ismovernm.xyz^* ||ndollarhe.com^* ||imp9.bidgear.com^* ||miihwnroe.com^* ||jlfyvvtkchueuj.xyz^* hoanchien.blogspot.com##div[class="overlay"]:remove() ||sxirjcfutvuwk.com^* ||zikroarg.com^* audioz.download##a[class="USnGreen"]:remove() ||wgrcsynbfiouu.com^* ||aafsmtrw.xyz^* ||yscevcqmcfh.com^* monect.com##div[class*="cookie-consent"]:remove() ||icqqjipv.com^* beebom.com##div[class*="header-ad"]:remove() ||ifoalerkqm.com^* ||lyyycvhw.xyz^* ||yklnrxjiqkccfe.com^* ||nvtpoyorp.com^* ||rdsmsrxavnprs.xyz^* ||snpcafbx.com^* ||arjkrsyad.xyz^* ||greatase.xyz^* ||hceyycgbulddaar.com^* ||dxdwmnfppth.xyz^* www.vg247.com##aside[class="disclaimer"]:remove() www.vg247.com##+js(remove-node-text, script, /function appendFacebookPixels\(\)/gm) www.vg247.com##+js(set-constant, fbq, noopFunc) www.vg247.com##+js(set-constant, window.facebookPixelsDone, true) www.vg247.com##+js(remove-node-text, script, /\w\.frames\.__tcfapiLocator/gm) www.vg247.com##iframe[name]:matches-attr(name=/^__\S+Locator$/):remove() www.vg247.com##+js(remove-node-text, script, /function permutiveIdentify\(\)/gm) www.vg247.com##+js(trusted-replace-node-text, script, /['"]consentRequired['"]:\s?(true|null)/gm, "consentRequired": false) www.vg247.com##+js(trusted-replace-node-text, script, /permutiveOptOut\(\);/gm, null;) www.vg247.com##+js(trusted-replace-node-text, script, /permutiveOptIn\(\);/gm, null;) www.vg247.com##+js(remove-node-text, script, /window\.sendBrockmanAnalyticsEvent\s=/gm) www.vg247.com##+js(set-constant, sendAnalyticsEvent, noopFunc) www.vg247.com##+js(set-constant, sendBrockmanAnalyticsEvent, noopFunc) www.vg247.com##+js(set-constant, updateGoogleAnalyticsConsent, noopFunc) www.vg247.com##+js(set-constant, updateGoogleAnalyticsConsentAnonymous, noopFunc) www.vg247.com###onetrust-consent-sdk:remove() www.vg247.com##body[data-ads]:remove-attr(data-ads) www.vg247.com##+js(remove-attr, data-ads, body[data-ads]) www.vg247.com##body[data-affiliates="true"]:remove-attr(data-affiliates) www.vg247.com##+js(remove-attr, data-affiliates, body[data-affiliates="true"]) www.vg247.com##div[class*="advert_container"]:remove() www.vg247.com##div[class*="poll_ad_container"]:remove() www.vg247.com##div[class*="advert leaderboard"]:remove() www.vg247.com##div[data-dfp-id]:remove() www.vg247.com##div[id="sp_message_container_830134"]:remove() !www.vg247.com##div[id="notice"]:upward(2):remove() www.vg247.com##div[id="pixelsDiv"]:remove() www.vg247.com##div[id="adVpaid"]:remove() www.vg247.com##div[id="adCover"]:remove() www.vg247.com##div[id="dcAdCover"]:remove() www.vg247.com##div[id="adBreakDiv"]:remove() www.vg247.com##div[id="adBreakPreloader"]:remove() www.vg247.com##div[id="adContainerDiv"]:remove() www.vg247.com##div[id="adIma"]:remove() www.vg247.com##div[class="comments-advert"]:remove() www.vg247.com##div[id="primisLogoWrapper"]:remove() ! The following rule prevents the video player from being displayed since it breaks the player script. !www.vg247.com##div[id="primisLogo"]:remove() ! Hide not remove the logo element instead. www.vg247.com##div[id="primisLogo"]:style(display: none !important; visibility: none !important;) www.vg247.com##div[id="placeHolder"]:remove() www.vg247.com##iframe[id^="sp_message_iframe_"]:remove() www.vg247.com##span[data-type="targeting"]:remove-attr(data-type) www.vg247.com##script[id="zdconsent"]:remove() www.vg247.com##+js(remove-node-text, script, /window.zdconsent\s?=/gm) www.vg247.com##+js(remove-node-text, script, /window\.zdconsent\.run\.push\(/gm) www.vg247.com##+js(set-constant, window.zdconsent.gdprApplies, false, complete) www.vg247.com##+js(remove-attr, data-type, span[data-type="targeting"]) www.vg247.com##+js(trusted-replace-node-text, script, /if\s?\(!window\.BrockmanAllowedCookies\?\.targeting\)/gm, if (null)) www.vg247.com##+js(trusted-replace-node-text, script, /showEmbedPlaceholders\(\w+\);/gm, null;) www.vg247.com##+js(trusted-replace-node-text, script, /showVisibleEmbedPlaceholders\(\);/gm, null;) ! TODO: The following two rules are not enough to get the Primis video player to initialize. ! Use the following rule instead to change "data-cookies-src" to "src" so that the script will be executed. ||www.vg247.com/$replace=/data\-cookies\-src\s?=\s?"/src="/gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! TODO: Rename the existing data-cookies-src attribute to src to get it to run as a script. !www.vg247.com##+js(rna, script[data-cookies-src], data-cookies-src, src) ! TODO: The following rule doesn't appear to work in getting the script to execute after setting the src. www.vg247.com##+js(set-attr, script[data-cookies-src], src, [data-cookies-src]) ! TODO: remove data-ads/data-paywalled/data-premium attribute for elements where ="true" instead? www.vg247.com##+js(trusted-set-attr, article[data-ads="true"], data-ads, false) www.vg247.com##+js(trusted-set-attr, article[data-paywalled="true"], data-paywalled, false) www.vg247.com##+js(trusted-set-attr, article[data-premium="true"], data-premium, false) www.vg247.com##+js(set-constant, window.comscoreDone, true) ! Uncaught TypeError: cannot declare global binding 'appendComscore': property must be configurable or both writable and enumerable !www.vg247.com##+js(set-constant, appendComscore, noopFunc) www.vg247.com##+js(remove-node-text, script, /function appendComscore\(cs_ucfr_value\)/gm) www.vg247.com##+js(set-constant, window.comscoreDone, true) www.vg247.com##+js(remove-node-text, script, /function appendKueez\(\)/gm) www.vg247.com##+js(aeld, BrockmanTargetingCookiesDisallowed) www.vg247.com##+js(aeld, BrockmanTargetingCookiesAllowed) www.vg247.com##+js(aeld, /BrockmanTargetingCookies/) www.vg247.com##+js(aeld, /BrockmanTCFConsent/) www.vg247.com##+js(acs, /_comscore\.push\(/) www.vg247.com##+js(set-constant, appendAnonymised, noopFunc) www.vg247.com##+js(acs, /appendAnonymised\(\)/) www.vg247.com##+js(trusted-set-constant, country, "US") www.vg247.com##+js(set-constant, window.brockmanAdsDone, true) www.vg247.com##+js(set-constant, brockmanAdsReady.consent, true, complete) !Uncaught TypeError: cannot declare global binding 'appendBrockmanAds': property must be configurable or both writable and enumerable !www.vg247.com##+js(set-constant, appendBrockmanAds, noopFunc) www.vg247.com##+js(acs, /appendBrockmanAds\(\)/) www.vg247.com##+js(remove-node-text, script, /function appendBrockmanAds\(\)/gm) www.vg247.com##+js(trusted-replace-node-text, script, /window.brockmanAds.init\(\);/gm, null;) www.vg247.com##+js(set-constant, updateBrockmanAdsReady, noopFunc) www.vg247.com##+js(trusted-replace-node-text, script, /updateBrockmanAdsReady\(\);/gm, null;) www.vg247.com##+js(set-constant, updateBrockmanAdsReady, noopFunc) www.vg247.com##+js(set-constant, adConfig, {}) www.vg247.com##+js(aopr, adConfig) www.vg247.com##+js(aopw, adConfig) www.vg247.com##+js(set-constant, window.BrockmanAds, noopFunc) www.vg247.com##+js(set-constant, BrockmanAds, noopFunc) !www.vg247.com##+js(acs, /window\.BrockmanAds\.init\(\)/) www.vg247.com##+js(remove-node-text, script, /function getSubscriber3pCookie\(\)/gm) www.vg247.com##+js(remove-node-text, script, /const runPiwik\s?=\s?/gm) www.vg247.com##+js(trusted-replace-node-text, script, /runPiwik\(window\,\s?document\,\s?['"]dataLayer['"]\,\s?['"][0-9\-a-zA-Z]+['"]\);/gm, null;) www.vg247.com##+js(remove-node-text, script, /const sendAnalyticsEvent\s?=/gm) www.vg247.com##+js(trusted-replace-node-text, script, /sendAnalyticsEvent\(eventAction\,\s?null\,\s?null\,\s?eventCategory\);/gm, null;) www.vg247.com##+js(trusted-replace-node-text, script, /if\s?\(['"]sendBrockmanAnalyticsEvent['"] in window\)/gm, if (null)) www.vg247.com##+js(trusted-replace-node-text, script, /if\s?\(window\.permutive\)/gm, if (null)) www.vg247.com##html:style(max-width: 100vw !important; width: 100vw !important;) www.vg247.com##body:style(max-width: 100% !important; width: 100% !important;) www.vg247.com##div[class="breadcrumbs"]:style(margin-left: 0px !important; margin-right: 0px !important;) www.vg247.com##div[id="app_wrapper"]:style(max-width: 100% !important; width: 100% !important;) ! The position in the following two rules need to be static to prevent vertically truncating the video player. www.vg247.com##div[id="page_wrapper"]:style(position: static !important; max-width: 100% !important; width: 100% !important;) www.vg247.com##div[id="content"]:style(position: static !important; max-width: 100% !important; width: 100% !important;) www.vg247.com##div[id="content_below"]:style(max-width: 100% !important; width: 100% !important;) www.vg247.com##div[id="content_above"]:style(max-width: 100% !important; width: 100% !important;) www.vg247.com##div[class="article-container"]:style(max-width: 100% !important;) www.vg247.com##div[class="article_body"]:style(max-width: 100% !important;) www.vg247.com##div[class="article_body_content article-styling"]:style(position: static !important;) www.vg247.com##video[disableremoteplayback]:remove-attr(disableremoteplayback) www.vg247.com##+js(remove-attr, disableremoteplayback, video[disableremoteplayback]) www.vg247.com##video[disablepictureinpicture]:remove-attr(disablepictureinpicture) www.vg247.com##+js(remove-attr, disablepictureinpicture, video[disablepictureinpicture]) www.vg247.com##+js(trusted-set-attr, video, x-webkit-airplay, allow) www.vg247.com##+js(trusted-set-attr, video, data-autoplay-mute-lock, false) www.vg247.com##+js(trusted-set-attr, video, controls, true) www.vg247.com##+js(trusted-set-attr, video, width, 100%) www.vg247.com##+js(trusted-set-attr, video, height, 100%) www.vg247.com##+js(trusted-set-attr, video, preload, metadata) !www.vg247.com##+js(trusted-set-attr, video, preload, auto) www.vg247.com##+js(trusted-set-attr, video, crossorigin, anonymous) ! TODO: This website normally sets playsinline="playsinline" instead of to "true". www.vg247.com##+js(trusted-set-attr, video, playsinline, true) !www.vg247.com##+js(trusted-set-attr, video, playsinline, playsinline) www.vg247.com##+js(trusted-set-attr, video, webkit-playsinline, true) !||cmpsp.vg247.com/index.html?message_id=*&consentUUID=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cmpsp.vg247.com^* ||asdhgysd.xyz^* ||tnfklhmlec.com^* www.ebooksyard.com##div[class*="admania_headertoplayt5ad"]:remove() filehostlist.miraheze.org##div[class*="mw-cookiewarning-"]:remove() ||tags.orquideassp.com^* ||chirkacylal.com^* ||supertruco.com/icon.svg#-page-peel//adnetwork468./$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css fc-lc.com##div[id="adb_detected"]:remove() fc-lc.com##+js(acs, /FuckAdBlock/i) fc-lc.com##+js(aopr, /FuckAdBlock/i) fc-lc.com##+js(aopw, /FuckAdBlock/i) fc-lc.com##+js(acs, window.dataLayer) fc-lc.com##+js(aopr, window.dataLayer) fc-lc.com##+js(aopw, window.dataLayer) fc-lc.com##script[integrity="sha256-xjwKUY/NgkPjZZBOtOxRYtK20GaqTwUCf7WYCJ1z69w="]:remove() fc-lc.com##script[src*="//cdnjs.cloudflare.com/ajax/libs/fuckadblock/"]:remove() fc-lc.com##span[id="s65c"]:remove() fc-lc.com##+js(acs, s65c) !fc-lc.com##^script:has-text(("s65c")):remove() fc-lc.com##+js(remove-node-text, script, /\(["']s65c["']\)/gm) fc-lc.com##+js(aeld, DOMNodeRemoved, onload) ! TODO: The xpath in the following rule may change. !fc-lc.com##:xpath(/html/body/script[4]):remove() fc-lc.com##button[id="submitbtn"]:style(display: block !important;) ||ugtresqqp.com^* ||outbarwonna.casa^* ||castpallium.com^* ||markipli.com/f-logo.png#-page-peel//adnetwork468./$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css markipli.com##+js(acs, window.dataLayer) markipli.com##+js(aopr, window.dataLayer) markipli.com##+js(aopw, window.dataLayer) markipli.com##script[integrity="sha256-xjwKUY/NgkPjZZBOtOxRYtK20GaqTwUCf7WYCJ1z69w="]:remove() markipli.com##script[src*="//cdnjs.cloudflare.com/ajax/libs/fuckadblock/"]:remove() markipli.com##div[id="overlay"]:remove() markipli.com##span[id="s65c"]:remove() markipli.com##+js(acs, s65c) !markipli.com##^script:has-text(/\("s65c"\)/) !markipli.com##+js(acs, /FuckAdBlock/i) !markipli.com##+js(aopr, /FuckAdBlock/i) !markipli.com##+js(aopw, /FuckAdBlock/i) markipli.com##div[id="adb_detected"]:remove() markipli.com##div[class="adq"]:remove() markipli.com##+js(remove-attr, disabled, #invisibleCaptchaShortlink, stay) markipli.com##+js(remove-attr, onclick, #invisibleCaptchaShortlink, stay) markipli.com##+js(remove-class, disabled, #invisibleCaptchaShortlink, stay) markipli.com##button[id="invisibleCaptchaShortlink"]:style(display:inline !important;) markipli.com##div[class*="g-recaptcha"]:style(display:block;) markipli.com##+js(remove-attr, onclick, #surl, stay) markipli.com##+js(remove-class, disabled, #surl, stay) markipli.com##input[id="ab"]:remove() markipli.com##div[id="Modalad"]:remove() ||lucidlydiscretion.com^* ||temporarilybrancheshideous.com^* ||attendedimitationsurrender.com^* ||blastsbigener.com^* ||yqmxfz.com^* ||snappedimpressive.com^* ||regardedsaid.com^* ||d1ezlc9vy4yc7g.cloudfront.net^* ||omanifefa.xyz^* hungryleech.com##div[class^="social-"]:remove() linkifier.com##div[id="cookie-notice"]:remove() ||ajdkksdnnnsfrk.com^* ||eomcyykl.xyz^* eizone.info##aside[id="moove_gdpr_cookie_info_bar"]:remove() ||s5.cnnx.io/s2static/*/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lvhkkkrjyhv.com^* ||popgecusljq.xyz^* ||onomousw.xyz^* beebom.com##div[class="_ap_apex_ad"]:remove() ||mppegwckbtp.com^* ||alexius-ber.com^* ||yayiniwkbq.com^* ||etqobrynpit.xyz^* ||mllyrwrkuvajo.com^* ||politicismov.xyz^* www.linuxcompatible.org##div[class="cdb-blockc"]:has(ins[data-ad-client]):remove() ||wdjtuylau.xyz^* ||xywjrijvnswrsu.com^* ||ahdtgsdmc.com^* ||fmcgjpwr.xyz^* ||skumuphopuhkun.com^* ||sruggyurosqfeuu.com^* ||kaarjewhwi.xyz^* ||erdeally.com^* ||ectresulto.com^* ||rqchvjktpxt.xyz^* ||wbmlkvovpjqeey.com^* ||xmwwiuly.com^* ||ehinshachkc.xyz^* ||wakeacsyfackrhl.com^* ||qbfohtafmynte.com^* ||ustratebilat.com^* !||js.ui-portal.de/uim/abd/1.4.2/abd.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||js.ui-portal.de/uim/abd/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.astound.com##div[id="cookie-consent"]:remove() yoomoney.ru##div[class^="Gdpr__"]:remove() ||dbtkyjeccwqw.com^* ||gjxblfwyuvj.xyz^* ||centalsind.com^* ||gclkxtariyraa.xyz^* ||usounoul.com^* ||yonhelioliskor.com^* ||dopansearor.com^* ||dqsccxhftjfkj.xyz^* ||thatsouh.com^* ||uoriiahl.com^* ||wsuvfidlfs.com^* ||hypocrisycohort.com^* ||rbmctmiycjed.com^* ||atchinapre.com^* ||lawgearcrlsjgqe.xyz^* ||din.adrenalads.net^* ||yrntpeas.xyz^* ||yjcsgercrlylxdy.com^* rambox.app##h2:has-text(/Cookies Policy/i):upward(1):remove() freemagazines.top##ins[data-ad-client]:upward(1):remove() ||gfruitiesm.com^* ||wirsauco.com^* www.dummies.com##div[class="bottom-ad"]:remove() ||htanothin.com^* ||tweowhvrim.review^* blog.coupler.io##div[id="cookie-notice"]:remove() ||videointelligence-d.openx.net^* www.coursef.com##div[class="adslabel"]:remove() ||pixel.inforsea.com/server/log$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.ibeat-analytics.com^* www.thefpsreview.com##div[class*="adthrive-"]:remove() www.thefpsreview.com##div[id^="AdThrive_"]:remove() ||maikashu.net^* ||uewasadi.com^* ||ydenoug.com^* www.jmmgc.com##div[id="cnotice"]:remove() www.buzzfeed.com##div[aria-label="Advertisement"]:remove() ||buzzfeed2.map.fastly.net/static/js/ad-detection/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.buzzfeed.com/static/js/ad-detection/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.buzzfeed.com##div[class*="ad-wireframe-wrapper"]:remove() www.buzzfeed.com##div[class*="js-ad-"]:remove() www.buzzfeed.com##div[class*="Ad--"]:remove() forums.servethehome.com##div[class*="u-bottomFixer"]:has(li[class*="notice--cookie"]):remove() borncity.com##div[id="notice"]:remove() borncity.com##div[id="sp_message_container_616352"]:remove() borncity.com##div[class*="code-block"]:has-text(Advertising):remove() ||gdpr-tcfv2.sp-prod.net^* ||lmefarketi.com^* ||ftheplansa.com^* jungleworks.com##div[class*="for-cookies-only"]:remove() wire.com##*[id^="cookie-law-"]:remove() jami.biz##div[id="block-cookiesui"]:remove() jami.biz##div[class*="cookiesjsr-"]:remove() jami.biz##+js(remove-attr, required, #edit-user-email) jami.biz##+js(remove-class, required, #edit-user-email) constructarcade.com##div[id="cookie-consent"]:remove() ||beacon.zesty.market/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||beacon2.zesty.market/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css vr-on.com##div[id="cookie-notice"]:remove() ||c.hit.ua/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||simplemuk.com^* ||ewasadirec.com^* fex.net##div[class*="modal_type_video-ads"]:remove() ||aj1913.online^* !||fex.net/client/desktop/static/js/main.0cf171f2.chunk.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||fex.net/client/desktop/locales/ru/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css hideproxy.me##div[class="hidemeproxy__content"]:remove() www.nintendolife.com##div[id="onetrust-consent-sdk"]:remove() www.nintendolife.com##div[id="NL_LB_1"]:upward(2):remove() sonic.fandom.com##div[class="top-ads-container"]:remove() !sonic.fandom.com##div[class*="ad-slot-placeholder"]:remove() !sonic.fandom.com##div[class*="ad-slot"]:remove() sonic.fandom.com##div[class*="gpt-ad"]:remove() tailschannel.com##script[id="eu-cookie-law-script-js"]:remove() tailschannel.com##div[class*="eu_cookie_law_"]:remove() ||c0.wp.com/p/jetpack/10.1/_inc/build/widgets/eu-cookie-law/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.gamepressure.com##div[class*="ad-2016-top"]:remove() www.gamepressure.com##div[id="baner-inner2"]:remove() ||mqaui928dq.xyz^* douploads.com##.downicon ||douploads.com/images/download.png$image ||douploads.com/images/StartDownload.gif$image ||douploads.net/doup/assets/js/countdown.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The following two rules are needed if countdown.js is blocked douploads.net##.downloadbtn:remove-attr(disabled) douploads.net##div[id="countdown"]:remove() ||douploads.net/images/StartDownload.gif$image ||douploads.net/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||douploads.net/sw_newone.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css douploads.net##:xpath(//script[contains(text(), '#adblock_detected')]):remove() douploads.net##+js(remove-node-text, script, /#adblock_detected/gm) douploads.net###gdpr-cookie-notice:remove() douploads.net##+js(abort-on-property-read, _gaq) douploads.net##+js(abort-on-property-write, _gaq) douploads.net##div[class="alert alert-danger mb-3"] douploads.net##div[class="alert alert-danger mb-3"]:remove() douploads.net##div[class="checkbox text-center mt-3 checkbox-info off"]:remove() douploads.net##label[for="chkIsAdd"]:remove() !douploads.net##+js(trusted-set-constant, document.querySelector("#chkIsAdd").value, off) !douploads.net##+js(trusted-set-constant, document.querySelector("#downloadBtnClick").type, submit) !douploads.net##+js(trusted-set-constant, document.querySelector("#downloadbtn").type, submit) douploads.net##+js(trusted-set-attr, #chkIsAdd",value, off) douploads.net##+js(trusted-set-attr, #downloadbtn, type, submit) douploads.net##+js(set-constant, adblock_detected, 0) douploads.net##+js(set-constant, gdpr-cookie-consent, true) douploads.net##input[id="addLinkBtn"]:remove() douploads.net##input[id="chkIsAdd"]:remove() douploads.net##input[id="adblock_detected"]:remove() douploads.net##*[id="downloadbtn"]:style(display: block !important;) douploads.net##button[id="downloadbtn"]:style(display: block !important;) douploads.net##button[id="downloadbtn"]:remove-attr(disabled) douploads.net##+js(remove-attr, disabled, #downloadbtn, stay) ! Do not use the button[id="downloadBtnClick"] because the script on the page uses button[id="downloadbtn"] instead douploads.net##button[id="downloadBtnClick"]:remove() !douploads.net##+js(trusted-set-attr, #downloadBtnClick, type, submit) !douploads.net##button[id="downloadBtnClick"]:remove-attr(disabled) !||s.vi-serve.com/tagLoader.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.vi-serve.com^* ||sidzarhostz.xyz^* support.forzamotorsport.net##div[class="alertbox"]:has-text(/This site uses cookies/i):remove() !||baominh.tech/wp-content/plugins/kchrslajmawv/wp-warebizenzljtay.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||baominh.tech/wp-content/plugins/kchrslajmawv/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.hackers-arise.com##wix-iframe:has(script:has-text(/adsbygoogle/i)):remove() www.hackers-arise.com##div[id="comp-kz8js9u3"]:remove() www.hackers-arise.com##div[id="comp-kyvyd3r7"]:remove() www.hackers-arise.com##div[data-testid="colorUnderlay"]:remove() www.hackers-arise.com##footer[id="SITE_FOOTER_WRAPPER"]:remove() ! Blocking at.adtech.redventures.io blocks images on zdnet websites !||at.adtech.redventures.io^* !||at.adtech.redventures.io/lib/api/v1/zdnet-rv/prod/config/diff?variant=core$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||at.adtech.redventures.io/lib/dist/prod/bidbarrel-zdnet-rv.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||at.adtech.redventures.io/lib/dist/prod/bidbarrel-cnet-rv.onetrust.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||at.adtech.redventures.io/lib/dist/prod/bidbarrel-*.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||at.adtech.redventures.io/lib/api/v1/event^$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.spectrum.com/content/dam/spectrum/custom-experiences/common/service-worker/js/service-worker.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||taggy.cohesionapps.com/implementations/public$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||taggy.cohesionapps.com^* ||a.myfidevs.io/record$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css coursesghar.com##div[id="NR-Ads"]:remove() coursesghar.com##div[class^="NR-Ads-"]:remove() coursesghar.com##+js(acs, window.dataLayer) coursesghar.com##+js(aopr, window.dataLayer) coursesghar.com##+js(aopw, window.dataLayer) coursesghar.com##+js(acs, adsbygoogle) coursesghar.com##+js(aopr, adsbygoogle) coursesghar.com##+js(aopw, adsbygoogle) ! TODO: Really abort on debugger as that is what the debugger statement already does? coursesghar.com##+js(acs, /debugger;/) coursesghar.com##+js(aopr, debugger) coursesghar.com##+js(aopw, debugger) coursesghar.com##^script:has-text(/debugger;/):remove() coursesghar.com##:xpath(//script[contains(text(), 'debugger;')]):remove() coursesghar.com##+js(remove-node-text, script, /debugger;/gm) ! This line prevents the need to block all inline scripts in dynamic filter for coursesghar.com. coursesghar.com##^script:has-text(/escape\(\w\)/i):remove() coursesghar.com##+js(remove-node-text, script, /escape\(\w\)/gm) !||coursesghar.com/wp-content/plugins/deblocker/js/ads.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! TODO: ^script doesn't work with attributes since checked before DOM created? coursesghar.com##script[id="mdp-deblocker-ads-js"]:remove() coursesghar.com##+js(set-constant, adsBlocked, falseFunc) coursesghar.com##+js(set-constant, window.mdpDeBlockerDestroyer, false) coursesghar.com##+js(set-constant, disableTextSelection, noopFunc) coursesghar.com##+js(set-constant, disableContextMenu, noopFunc) coursesghar.com##+js(set-constant, disableHotKeys, noopFunc) coursesghar.com##+js(set-constant, disableDeveloperTools, noopFunc) ||coursesghar.com/wp-content/uploads/2021/06/adblcok.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css coursesghar.com##div[class*="-blackout"]:remove() coursesghar.com##div[class*="-wrapper"]:remove() coursesghar.com##+js(aeld, blur) !coursesghar.com##+js(aeld, blur, function(n){if(e.bypassEventsInProxies||a.indexOf(t)<0)return s.call(this,n)}) coursesghar.com##*:style(filter: blur(0px) !important; -webkit-filter: blur(0px) !important;) ||r.toptopix.com^* www.coursef.com##div[id^="afscontainer"]:remove() www.coursef.com##div[class*="box-afs"]:remove() www.pornhub.com##div[id="sub-frame-error"]:remove() www.pornhub.com##iframe[data-embeddedads="true"]:remove() www.pornhub.com##a[class="ad-link"]:remove() ||www.adpmbtj.com/js/interactive2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.adpmbtj.com/en/us/about$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.pornhub.com/_xa/ads_batch$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.trafficjunky.com/invocation/embeddedads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.pornhub.com/_xa/ads?zone_id=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ei.phncdn.com/www-static/js/htmlPauseRoll/pb_block.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||noticebroughtcloud.com^* !||pl15563170.trustedcpmrevenue.com^* ||pl*.trustedcpmrevenue.com^* ||o.faphouse.com/api/collector/v1/event$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||swellknife.com^* ||king3rsc7ol9e3ge.com^* ||m45assachucsh9w7etts.com^* ||ta3nfsordd.com^* ||opvanillishan.com^* ||aytinchapuytin.com^* !||collector-pxk56wkc4o.px-cloud.net/api/v2/collector$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||collector-pxk56wkc4o.px-cloud.net^* ||fastdownload.newspets.info^* ||mage98rquewz.com^* ||trafiq.trade^* ||www.tutsgalaxys.com/wp-content/uploads/iajepm.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.tutsgalaxys.com/wp-content/uploads/iajepm.css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.tutsgalaxys.com/wp-content/uploads/iajepm.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.tutsgalaxys.com##+js(aeld, blur) !www.tutsgalaxys.com##div:has-text(Advertisement):remove() www.tutsgalaxys.com##a[id="download"]:style(display:inline !important;) ||firsthanddisagree.com^* ||analytics.1ove.club^* !||freecoursesite.com/wp-content/plugins/deblocker/js/ads.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||freecoursesite.com/wp-content/plugins/deblocker/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||freecoursesite.com/wp-content/plugins/better-adsmanager/js/advertising.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||freecoursesite.com/wp-content/plugins/better-adsmanager/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||freecoursesite.com/cdn-cgi/challenge-platform/h/g/scripts/pica.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||freecoursesite.com/cdn-cgi/challenge-platform/h/g/scripts/invisible.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css freecoursesite.com##div[class*="-blackout"]:remove() freecoursesite.com##div[class*="-wrapper"]:remove() freecoursesite.com##*:style(filter: blur(0px) !important; -webkit-filter: blur(0px) !important;) freecoursesite.com##.adcontainer:remove() freecoursesite.com##.adsbygoogle:remove() ! This line prevents the need to block all inline scripts in dynamic filter for freecoursesite.com. freecoursesite.com##^script:has-text(/escape\(\w\)/):remove() freecoursesite.com##+js(remove-node-text, script, /escape\(\w\)/gm) myshrinker.com##div[id="cookie-pop"]:remove() myshrinker.com##div[id^="atContainer-"]:remove() myshrinker.com##+js(remove-class, disabled, .get-link, stay) myshrinker.com##script[data-ezscrex]:remove() myshrinker.com##div[class="banner banner-336x280"]:has(div[class="banner-inner"]):remove() myshrinker.com##a[id="366813813"]:remove() ||fadingamendable.com^* ||boilrconeh0st.xyz^* ||arkfacialdaybreak.com^* ||revealoverheadearth.com^* ||wsecurely.com^* ||hallucinatecompute.com^* ||testcombatverge.com^* ||heukwasanasse.com^* ||moltyeroki.com^* ||www.free-tutorials.us/wp-content/uploads/erzsjtnao.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !www.free-tutorials.us##+js(trusted-set-constant, counter, { "value": -1 }) !www.free-tutorials.us##a[id="download"]:style(display:inline !important;) www.free-tutorials.us##+js(acs, downloadButton) www.free-tutorials.us##+js(aopr, downloadButton) www.free-tutorials.us##+js(aopw, downloadButton) www.boredpanda.com##div[id^="div-gpt-ad-"]:remove() www.boredpanda.com##div[class*="dfp-ad"]:remove() www.boredpanda.com##div[class*="post-ads"]:remove() www.boredpanda.com##div[class="fb-sharebar-box"]:upward(1):remove() tidbits.com##div[id^="eu_cookie_law"]:remove() tidbits.com##div[id^="eu-cookie-law"]:remove() ||fbmedia-bls.com^* ||router.movie-river.com^* ||router.allure-ng.net^* ||mr.media-bucket.com^* !theeadyagency.com##+js(disable-newtab-links) theeadyagency.com##+js(no-window-open-if, !/theeadyagency\.com/i) ||cglfhqfb.xyz^* ||offfurreton.com^* !||cybertronads.com/platform/show_i.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cybertronads.com^* ||chaussew.net^* ||yonxatuor.com^* !||www.sabishare.com/_nuxt/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.sabishare.com/extras/vegeta.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.sabishare.com/extras/pro.ipp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||louloapi.com^* ||awigglespouter.cam^* ||knubbyknit.com^* ||yepsawomen.com^* ||www.terabox.com/api/analytics?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.jeded.com^* ||ownerfacinglung.com^* upload-star.com##div[id="cookie-pop"]:remove() !upload-star.com##div[class*="ad-banner"]:remove() upload-star.com##form[id="go-popup"]:remove() upload-star.com##input[name="pop_ad"]:remove() ||serv.modoro360.com^* ||servt.modoro360.com^* ||tg1.modoro360.com^* ||mauchopt.net^* ||nolrougn.com^* www.vlchelp.com##div[id^="cookie-law-info"] www.vlchelp.com##div[id="cliSettingsPopup"] ||koltypoolty.com^* ||yoopigoopi.com^* ||hopedwishfulpercent.com^* ||montikolti.com^* ||tobleronchiko.com^* ||techwap335.pushalert.co^* www.techwap.net##div[id="pa-push-notification-subscription"] ibit.to##a[data-tooltip="Sponsor download"] ||disturbedaccruesurfaces.com^* ||manofmany.com/wp-content/cache/min/1/wp-content/plugins/webtoffee-gdpr-cookie-consent/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css abc13.com##div[data-set="adAppend"] abc13.com##div[id^="ad-slot-"] manofmany.com##div[class*="mobile-sticky-ads"] manofmany.com##div[class*="incontent-ad-banner"] ||komloromnikopicko.com^* ||galmoonaloona.com^* www.steinberg.net##div[id="usercentrics-root"] www.steinberg.net##body,html:style(overflow:auto;) ||privacy-proxy.usercentrics.eu^* www.neverware.com##div[class*="sqs-cookie-banner"] ||7896543.s3.amazonaws.com/001.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.pagespeed-mod.com/v1/taas?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||dc.ads.linkedin.com/collect/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css tvline.com##div[id^="div-gpt-ad-"] tvline.com##div[id="adm-mid-river-banner"] tvline.com##div[id^="adm-inline-article-ad-"] tvline.com##li[id^="pmc-ads-widget-"] www.whitepages.com##div[id^="div-gpt-ad-"] ||www.whitepages.com/static/analytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.whitepages.com.cdn.cloudflare.net/static/analytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.whitepages.com.cdn.cloudflare.net/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.whitepages.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.whitepages.com/api/log-error$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.whitepages.com.cdn.cloudflare.net/api/log-error$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||down402.xyz^* !||service.supercounters.com/fc.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||service.supercounters.com^* ||jleori-fileshosz.xyz^* ||iiigostfilez.xyz^* freesoft.id##span:has-text(Download Setup + Crack):upward(1):remove() freesoft.id##span:has-text(Download Crack Only):upward(1):remove() freesoft.id##center:has(span[class="has-inline-color"]:has-text(Download Version)):remove() freesoft.id##center:has(span[class="has-inline-color"]:has-text(Download Only)):remove() freesoft.id##span[class="has-inline-color"]:has-text(Download Version):remove() freesoft.id##span[class="has-inline-color"]:has-text(Download Only):remove() ||omexdiokau.ga^* ||directdownloads.xyz^* ||choonamoona.com^* !fr.indeed.com##div[id="onetrust-banner-sdk"]:remove() indeed.com##div[id="onetrust-banner-sdk"]:remove() !||webtracking-v01.bpmonline.com/JS/track-cookies.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||webtracking-v01.bpmonline.com^* !||s11284.pcdn.co/wp-content/plugins/ct-ultimate-gdpr/assets/js/cookie-list.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s11284.pcdn.co/wp-content/plugins/ct-ultimate-gdpr/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css topclassactions.com##div[class*="adblock1a"]:remove() topclassactions.com##script[id^="ct-ultimate-gdpr-"]:remove() !topclassactions.com##div[class="container"]:has(ins[data-ad-client]):remove() !topclassactions.com##ins[data-ad-client]:upward(2):remove() blog.google##div[id="cookieBar"]:remove() kissflow.com##div[class*="alert-cookie up:remove()"] ||betterbatchbrands.com^* ||incomingnow.com^* ||s.pmddby.com^* ||newsupdatefind.info^* www.ssn-verify.com##div[class="alert small alert-danger text-center alert-dismissible"][role="alert"]:remove() ||bamagamalama.com^* ||biinminigihi.com^* link.springer.com##section[data-cc-banner]:remove() link.springer.com##a[data-banner-ga="statement-link"]:remove() link.springer.com##*[class^="c-ad"]:remove() ||collect.springer.com^* ||springer2.map.fastly.net/pcf_sb_5_1617714720898560639/production_live/consent-bundle-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||push-content.springernature.io/pcf_sb_5_1617714720898560639/production_live/consent-bundle-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||notifier-configs.airbrake.io^* www.androidblip.com##div[class*="ad-leaderboard"]:remove() www.androidblip.com##div[class="ad"]:remove() ||baradoot.com^* ||snugglethesheep.com^* ||www.joshsway.com^* ||r.ealeo.com^* sbenny.com##div[class="custom"]:has(ins[data-ad-client]):remove() sbenny.com##div[style*="margin-top: 20px; margin-bottom: 20px; min-height: 250px"]:has(ins[data-ad-client]):remove() sbenny.com##div[aria-describedby="cookieconsent:desc"]:remove() forum.sbenny.com##div[class="topad"]:remove() forum.sbenny.com##div[style="text-align:center;min-height:300px;margin-top:20px;margin-bottom:20px"]:has(ins[data-ad-client]):remove() forum.sbenny.com##ins[data-ad-client]:remove() forum.sbenny.com##a[href*="//ak.hetaint.com/"]:remove() ||ak.hetaint.com^* babylonbee.com##div[id="adFooterBar"]:remove() ||gimiliminibi.com^* ||kookichoopi.com^* rapidgator.net##a[href*="//icanhelp.host/"]:remove() rapidgator.net##a[href*="//donate.redcrossredcrescent.org/"]:remove() ||player.aplhb.adipolo.com/prebidlink/457716/hb_572560_14534.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn53741731.ahacdn.me/prebidlink/457716/hb_572560_14534.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||player.aplhb.adipolo.com/prebidlink/457716/wrapper_hb_572560_14534.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn53741731.ahacdn.me/prebidlink/457716/wrapper_hb_572560_14534.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css tekmods.com##div[id="cookieConsentContainer"]:remove() tekmods.com##div[class^="code-block"]:has(div[class="join-ads"]):remove() !tekmods.com##div[class^="mb-3"]:has(div[class="join-ads"]):remove() !tekmods.com##div[class="join-ads"]:upward(1):remove() tekmods.com##div[class="join-ads"]:remove() tekmods.com##iframe[style="display: none;"] tekmods.com##p[id="notifx"]:style(display: block !important;) tekmods.com##script[id="join-ads-load"]:remove() tekmods.com##+js(aopr, purecookieTitle) tekmods.com##+js(aopw, purecookieTitle) tekmods.com##+js(acs, purecookieTitle) tekmods.com##+js(set-constant, progressval, 0) tekmods.com##+js(trusted-set-constant, counter, { "value": -1 }) tekmods.com##+js(trusted-replace-node-text, script, /counter < 0/gm, counter <= 0) ||script.joinads.me^* jimtechs.biz##body,html:style(overflow: scroll) jimtechs.biz##aside[class*="ads_single_top"]:remove() jimtechs.biz##aside[class*="ads_header"]:remove() jimtechs.biz##+js(set-constant, signalGooglefcPresent, noopFunc) jimtechs.biz##+js(acs, /signalGooglefcPresent\(\)/) jimtechs.biz##+js(set-attr, img[class*="lazyload"], src, [data-src]) ||jimtechs.biz/wp-content/plugins/ads-invalid-click-protection/assets/js/script.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cutedrive.com/page/bouncy.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cutedrive.com^* ||api.enthusiastgaming.net/eg-logger/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mableyable.com^* ||cangomamblu.com^* !uwo.papayaplay.com##article[class*="cont--cookie"]:remove() papayaplay.com##article[class*="cont--cookie"]:remove() www.reviewgeek.com##div[class*="adslot"]:remove() www.reviewgeek.com##div[id="future_Y_R_0_1"]:remove() ||mambkooocango.com^* pytutorial.com##div[id="ezmobfooter"]:remove() pytutorial.com##div[class*="ezo_ad"]:remove() pytutorial.com##span[id^="ezoic-pub-ad-"]:remove() pytutorial.com##span[id^="div-gpt-ad-"]:remove() pytutorial.com##span[class*="ezoic-ad"]:remove() pytutorial.com##span[class*="adtester-container"]:remove() www.datasciencelearner.com##div[id="ezmobfooter"]:remove() www.datasciencelearner.com##div[class*="ezo_ad"]:remove() www.datasciencelearner.com##span[id^="ezoic-pub-ad-"]:remove() www.datasciencelearner.com##span[id^="div-gpt-ad-"]:remove() www.datasciencelearner.com##span[class*="ezoic-ad"]:remove() www.datasciencelearner.com##span[class*="adtester-container"]:remove() !softhints.com##ins[data-ad-client]:upward(1):remove() softhints.com##section[class="cookie"]:remove() account.jetbrains.com##div[class="jba-agreement-panel"]:remove() gpuopen.com##div[id="onetrust-banner-sdk"]:remove() dotesports.com##div[class="proper-ad-unit"]:remove() !||abcheck.proper.io/px.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||abcheck.proper.io^* ||chookamookla.com^* ||maalabaala.com^* ||redibidilidi.com^* !||prebid.ioadx.com/bidRequest/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||prebid.ioadx.com^* ||mookiyooki.com^* www.apexsql.com##div[id^="cookiesWarning"]:remove() ||lookofookomooki.com^* ||moedgapers.com^* www.sexiezpix.com###lkq6y:remove() www.sexiezpix.com###jw7152t:remove() www.seattletimes.com##a[class*="ad-skip-link"]:remove() www.seattletimes.com##div[class*="ad-top-"]:remove() www.seattletimes.com##div[class*="ad-container"]:remove() www.seattletimes.com##div[class*="ad-label"]:remove() www.seattletimes.com##div[class*="native-ad-article"]:remove() www.seattletimes.com##div[id="htlad_wallpaper"]:remove() www.seattletimes.com##div[id="ad-wallpaper"]:remove() www.seattletimes.com##div[id="ad-container-bottom"]:remove() www.seattletimes.com##div[id="htlad_bottom"]:remove() www.seattletimes.com##div[id="htlad_right"]:remove() www.seattletimes.com##div[id="ccpa-test"]:remove() www.seattletimes.com##script[class^="optanon-category-"]:remove() www.seattletimes.com##script[id="finish-ccpa"]:remove() www.seattletimes.com##script[id="ads_script-script"]:remove() www.seattletimes.com##script[id="st-analytics-script"]:remove() www.seattletimes.com##zeus-ad:remove() www.seattletimes.com##+js(set-constant, window.SEATIMESCO.ads.disabled, true) www.seattletimes.com##+js(set-constant, window.SEATIMESCO.ads.adUnitPath, "") www.seattletimes.com##+js(set-constant, window.SEATIMESCO.ads.htlUrl, "") www.seattletimes.com##+js(set-constant, window.SEATIMESCO.abTimeout, 1) www.seattletimes.com##+js(set-constant, window.SEATIMESCO.privacy.ccpaLoaded, false) www.seattletimes.com##+js(aopr, OTTag) www.seattletimes.com##+js(aopw, OTTag) !||www.seattletimes.com/wp-content/plugins/st-advertising/dist/st-advertising-bundle.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.seattletimes.com/wp-content/plugins/st-advertising/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.seattletimes.com/wp-content/plugins/st-analytics/dist/st-analytics-article-bundle.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.seattletimes.com/wp-content/plugins/st-analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||seattletimes.com/js/standardFunctionality/AdTags.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||seattletimes.com/js/paywall/st_ad_position_redefinition.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||seattle-times.zeustechnology.com/main.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||seattle-times-d.openx.net^* ||stats.bluebillywig.com^* www.wikihow.com##div[id="article_courses_banner"]:remove() www.wikihow.com##+js(aopr, WH.hasAdBlockers) www.wikihow.com##+js(aopw, WH.hasAdBlockers) ||pl17109538.effectivecpmcontent.com^* ||auntietraumatizemobile.com^* ||mightylottrembling.com^* seriousbit.com##+js(aopr, analyticsFileTypes) seriousbit.com##+js(aopw, analyticsFileTypes) ||anymoresentencevirgin.com^* ||knownwarn.com^* ||rambleconcernedscar.com^* ||hoolibadullli.com^* ||yoobidooby.com^* ||d3f1wcxz2rdrik.cloudfront.net^* ||mucinshasht.com^* ||royvfccrlki.com^* ||chooxail.com^* webhostingpost.com##div[id="adb_detected"]:remove() webhostingpost.com##button[id="invisibleCaptchaShortlink"]:style(display: block !important;) webhostingpost.com##+js(remove-attr, disabled, #invisibleCaptchaShortlink) !webhostingpost.com##+js(remove-attr, onclick, #invisibleCaptchaShortlink) webhostingpost.com##+js(remove-class, disabled, #invisibleCaptchaShortlink) webhostingpost.com##+js(remove-class, disabled, #surl, stay) webhostingpost.com##div[id^="div-gpt-ad-"]:remove() webhostingpost.com##div[style="display:none;"]:style(display: block !important;) webhostingpost.com##div[class*="g-recaptcha"]:style(display: block !important;) ! blocks captcha from working !webhostingpost.com##+js(aeld, message) ! This stops the script that generates the final destination link (contains var domain = "https://fc.lc/links/go"). ! It is needed to get past the captcha screen though. !webhostingpost.com##+js(acs, /adBlockDetected/i) !webhostingpost.com##^script:has-text(/adBlockDetected/):remove() !webhostingpost.com##+js(acs, /function\(\$\,document\)/) !webhostingpost.com##^script:has-text(/function\(\$\,document\)/i):remove() !webhostingpost.com##+js(acs, googletag) !webhostingpost.com##^script:has-text(googletag):remove() webhostingpost.com##+js(acs, \"s65c\") webhostingpost.com##^script:has-text(\"s65c\"):remove() webhostingpost.com##+js(remove-node-text, script, /["']s65c["']/gm) webhostingpost.com##iframe[id="iframe_id"]:remove() webhostingpost.com##a[href^="https://0lnawd0.com/r?token="]:remove() webhostingpost.com##div[id="overlay"]:remove() webhostingpost.com##div[data-aa-adunit]:remove() ! example generated href for #surl is href="https://slink.bid/?go=aHR0cHM6Ly9ncGxpbmtzLmNvL1NPQlVi" not https://fc.lc/links/go webhostingpost.com##+js(add-class, btn-success, #surl) webhostingpost.com##a[id="surl"]:remove-attr(onclick) webhostingpost.com##+js(acs, doc, iframe_id) webhostingpost.com##+js(trusted-set-constant, FuckAdBlock, { "value": _0xae04 }) webhostingpost.com##+js(set-constant, _0x491ex3, 0, stay) !webhostingpost.com##+js(aeld, { "type": "/click/", "pattern": "/onclick/", "log": 2 }) webhostingpost.com##+js(aeld, { "type": "/click/", "pattern": "/^/", "log": 2 }) webhostingpost.com##button[id="invisibleCaptchaShortlink"]:remove-attr(onclick) !webhostingpost.com##+js(set-constant, importFAB, null) !webhostingpost.com##+js(set-constant, adBlockDetected, falseFunc) !webhostingpost.com##+js(set-constant, detectPrivateMode, falseFunc) !webhostingpost.com##+js(set-constant, adBlockNotDetected, trueFunc) !webhostingpost.com##+js(set-constant, fuckAdBlock, {}) !webhostingpost.com##+js(set-constant, start_counter, noopFunc) ||klyxdogdj.com^* ||dyjtibcz3b48v.cloudfront.net^* ||hognaivee.com^* ||augrezoa.net^* ||toqowtsyfcjbha.com^* rudebees.com.ng##ins[data-ad-slot]:remove() rudebees.com.ng##div[class*="afw_ad"]:remove() rudebees.com.ng##div[class*="afwadid-"]:remove() deasilex.com##div[id="ezmobfooter"]:remove() deasilex.com##iframe[id^="google_ads_"]:remove() deasilex.com##*[class*="ezoic-ad"]:remove() deasilex.com##*[class*="adtester-container"]:remove() ||tookimookin.com^* ||mokkilooki.com^* ||d2ers4gi7coxau.cloudfront.net^* github.com##div[class*="js-notice"]:has(form[action="/settings/dismiss-notice/ukraine_support_message"]):remove() !||wp.webpushonline.com/pw_saveUserEventLog.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||wp.webpushonline.com^* !||78626.bodis.com/js/parking.2.85.0.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.bodis.com/js/parking.*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.kitploit.com##img[class="ads72890"]:remove() www.kitploit.com##div[id="side-banner-1"]:remove() www.kitploit.com##div[id^="ads_kitploit"]:remove() www.kitploit.com##+js(aopr, adhtml2) www.kitploit.com##+js(aopw, adhtml2) www.upload-4ever.com##+js(disable-newtab-links) www.upload-4ever.com##+js(no-window-open-if) !www.vice.com##.adph--border.adph:remove() www.vice.com##*[class^="adph"]:remove() www.vice.com##*[class^="vice-ad"]:remove() www.vice.com##div[class^="htlad-"]:remove() www.vice.com##*[data-ad-unit-path]:remove() www.vice.com##link[id^="ad-lib"]:remove() !www.vice.com##div[class="recirc-footer__post-ad-container"]:remove() www.vice.com##iframe[name]:matches-attr(name=/^__\S+Locator$/):remove() www.vice.com##+js(set-constant, adLibScript, noopFunc) www.vice.com##+js(aopr, adLibScript) www.vice.com##+js(aopw, adLibScript) www.vice.com##+js(set-constant, analytics, []) www.vice.com##+js(aopr, analytics) www.vice.com##+js(aopw, analytics) www.vice.com##+js(set-constant, setNptTechAdblockerCookie, noopFunc) www.vice.com##+js(aopr, setNptTechAdblockerCookie) www.vice.com##+js(aopw, setNptTechAdblockerCookie) www.vice.com##+js(aeld, cmplzEnableScripts) www.vice.com##+js(aeld, cmplz_event_marketing) www.vice.com##+js(remove-node-text, script, /_stq\.push\(/gm) www.vice.com##+js(trusted-replace-node-text, script, /_stq\.push\(/gm, console.log() www.vice.com##+js(remove-node-text, script, /htlbid\.cmd\.push\(/gm) www.vice.com##+js(trusted-replace-node-text, script, /htlbid\.setTargeting\(/gm, console.log() !||vice-web-statics-cdn.vice.com/vendor/ad-lib/v2.39.0/vice-ad-lib.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vice-web-statics-cdn.vice.com/vendor/ad-lib/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css skylum.com##*[class*="save-ukraine"]:remove() nocodb.com##div[class^="Cookie"]:remove() ||lowtyruntor.com^* ||gpejgdfwnu.com^* ||housemaiddevolution.com^* ||meat.wwow.xyz^* ||tjgynvnmqumreme.com^* ||whoansee.com^* ||fish.wwow.xyz^* ||predb-org.dirp.me/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||predb-org.dirp.me/hkz/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||predb-org.dirp.me/pxu.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||predb-org.dirp.me/x.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css predb-org.dirp.me##div[id^="cookieConsent"]:remove() www.thurrott.com##div[class^="gdpr-cookie-banner"]:remove() www.thurrott.com##+js(aopr, window.adthriveCLS) www.thurrott.com##+js(aopw, window.adthriveCLS) ||pronunciationspecimens.com^* ||dismantlepenantiterrorist.com^* !||pl15995674.safestgatetocontent.com^* !||pl17142106.safestgatetocontent.com^* ||pl*.safestgatetocontent.com^* www.veed.io##div[class^="fs-cc-"]:remove() ||cdn.jsdelivr.net/npm/@finsweet/cookie-consent@1/fs-cc.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css photography.tutsplus.com##div[class*="fuse-ad"]:remove() photography.tutsplus.com##div[class^="avert__"]:remove() www.amberscript.com##div[class*="cookie-notice"]:remove() !www.techwalla.com##div[class="ad-one"]:remove() !www.techwalla.com##div[class="ad-two"]:remove() www.techwalla.com##div[class^="ad-"]:remove() www.techwalla.com##div[class="disclaimer-ad-wrapper"]:remove() ||www.techonthenet.com/javascript/pb.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.techonthenet.com/defaults/primaryw728h90.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.techonthenet.com/defaults/primaryw160h600.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.techonthenet.com/defaults/primaryw300h250.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.techonthenet.com##div[id="pre_header"]:remove() www.techonthenet.com##div[id$="_slot"]:has(iframe[src^="/defaults/primaryw"]):upward(1):remove() www.heise.de##a-analytics:remove() www.heise.de##a-ad:remove() www.heise.de##+js(remove-attr, data-consentmanagement, html) www.heise.de##^script:has-text(/setGdprApplies/):remove() www.heise.de##+js(remove-node-text, script, /setGdprApplies/gm) ||cmp.heise.de/wrapperMessagingWithoutDetection.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.heise.de##div[id="notice"]:remove() www.heise.de##div[class="container advertisement"]:remove() www.heise.de##div[class*="adbottom"]:remove() www.heise.de##div[id^="a-ad-"]:remove() ||hit-pool.upscore.com^* ||heise02.webtrekk.net^* !||confiant-integrations.global.ssl.fastly.net/Y2Nn8JmiAY8HpnF4sl5n7J71jaI/gpt_and_prebid/config.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||confiant-integrations.global.ssl.fastly.net/*/gpt_and_prebid/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.post-gazette.com##div[data-dfpads-position]:remove() www.post-gazette.com##div[class^="pg-ad"]:remove() !www.post-gazette.com##div[class*="pg-adnotice"]:remove() !www.post-gazette.com##div[class*="pg-adtarget"]:remove() !www.post-gazette.com##div[class*="pg-adwrapper"]:remove() www.post-gazette.com##div[class="adnotice"]:remove() www.post-gazette.com##div[id="csadspot"]:remove() www.post-gazette.com##+js(aopr, adpath) www.post-gazette.com##+js(aopw, adpath) www.post-gazette.com##div[class="pgevoke-story-mobileads"]:remove() ! Removing the following rules instead of just hiding them triggers an error screen which prevents the website from loading. !regex101.com##div[class]:has-text(/^Sponsors/):remove() !regex101.com##div[class]:has-text(/^Sponsors/):upward(1):remove() !regex101.com##div[class]:has-text(/^If you\'re running an ad blocker/i):remove() !regex101.com##div[class="jyUE5 XNbml"]:remove() !regex101.com##div[class="M4byA"]:remove() !regex101.com##div[class="tSxrO"]:remove() !regex101.com##div[class="_gHmG"]:remove() !regex101.com##div[class="ZHUJ9"]:remove() regex101.com##div[class="jyUE5 XNbml"] regex101.com##div[class="M4byA"] regex101.com##div[class="tSxrO"] regex101.com##div[class="_gHmG"] regex101.com##div[class="ZHUJ9"] regex101.com##div[class]:has-text(/^Please support regex101/) regex101.com##div[class]:has-text(/^If you\'re running an ad blocker/i) ||regex101.com/buysellads$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||regex101.com/static/vendors-sentry.*.chunk.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The following rule prevents the calculator page from loading. !||regex101.com/static/vendors-bundle.*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||analytics.regex101.com^* www.freecodecamp.org##div[class^="ad-container"]:remove() ww.freecodecamp.org##div[class="banner-ad"]:remove() www.sqlitetutorial.net##div[class^="donation"]:remove() www.sqlitetutorial.net##div[id^="Ad.Plus-"]:upward(1):remove() www.sqlitetutorial.net##div[id^="Ad.Plus-"]:remove() www.sqlitetutorial.net##div[data-type="ad"]:upward(1):remove() www.sqlitetutorial.net##div[data-type="ad"]:remove() www.delftstack.com##span[id^="ezoic-pub-ad-"]:remove() www.delftstack.com##span[class*="ezoic-ad"]:remove() www.delftstack.com##div[class*="ezo_ad"]:remove() www.delftstack.com##div[class="ad-container"]:remove() www.delftstack.com##span[id^="div-gpt-ad-"]:remove() ||variety.com/wp-content/plugins/pmc-plugins/pmc-adm-v2/build/setup-ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||variety.com/wp-content/plugins/pmc-plugins/pmc-adm-v2/build/display-ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||variety.com/wp-content/plugins/pmc-plugins/pmc-ads-grid/build/index.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||variety.com/wp-content/plugins/pmc-plugins/pmc-comscore/js/pmc-comscore.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||variety.com/wp-content/plugins/pmc-plugins/pmc-cxense/assets/build/pmc-cxense-functions.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||variety.com/wp-content/plugins/pmc-plugins/pmc-cxense/assets/build/pmc-cxense.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||variety.com/wp-content/plugins/pmc-plugins/pmc-cxense/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||variety.com/wp-content/plugins/pmc-plugins/pmc-global-functions/js/pmc-consent.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||variety.com/wp-content/plugins/pmc-plugins/pmc-google-universal-analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||variety.com/wp-content/plugins/pmc-plugins/pmc-google-universal-analytics/js/event-tracking.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||variety.com/wp-content/plugins/pmc-plugins/pmc-onetrust/assets/build/helpers.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||variety.com/wp-content/plugins/pmc-plugins/pmc-onetrust/assets/build/index.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||variety.com/wp-content/plugins/pmc-plugins/pmc-onetrust/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||variety.com/wp-content/plugins/pmc-plugins/pmc-piano/assets/build/js/pmc-consent.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||variety.com/wp-content/plugins/pmc-plugins/pmc-piano/assets/build/js/pmc-pixels.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||variety.com/wp-content/plugins/pmc-plugins/pmc-piano/assets/build/js/pmc-reportingCookie.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||variety.com/wp-content/plugins/pmc-plugins/pmc-social-share-bar/_build/js/tracking.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||variety.com/wp-content/plugins/pmc-plugins/pmc-sticky-rail-ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||variety.com/wp-content/plugins/pmc-plugins/pmc-sticky-rail-ads//assets/js/sticky-rail-ads.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||variety.com/wp-content/plugins/pmc-plugins/pmc-taboola/assets/build/index.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||variety.com/wp-content/plugins/pmc-plugins/pmc-trackonomics/build/index.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||variety.com/wp-content/plugins/pmc-plugins/pmc-video-player/js/video-ads.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css variety.com##*[data-adm-url] ! The following rule will also remove the Connatix video player (#connatix-contextual-player). variety.com##div[data-pmc-adm-ad-id]:remove() variety.com##div[data-is-adhesion-ad]:remove() variety.com##div[class*="rail-ads-1"]:remove() variety.com##div[class*="ad-text"]:remove() variety.com##div[id="sticky-rail-ad"]:remove() variety.com##div[id^="adm-inline-article-ad-"]:remove() variety.com##div[id="adm-leaderboard"]:remove() variety.com##div[id="adm-responsive-skin-ad"]:remove() variety.com##div[id^="skin-ad-"]:remove() variety.com##div[id="jwplayer_floating_preroll_ad"]:remove() variety.com##div[id^="pmc-pp-tou--notice"]:remove() variety.com##div[class^="floating-preroll-ad"]:remove() variety.com##div[id^="connatix_floating_preroll_ad"]:remove() variety.com##script[id^="connatix_floating_preroll_ad"]:remove() variety.com##script[id^="pmc-async-adm-boomerang-"]:remove() variety.com##script[id="pmc_piano_reporting_cookie_js-js"]:remove() variety.com##script[id="pmc_piano_js_pixels-js"]:remove() variety.com##script[id="pmc-ads-grid-js"]:remove() variety.com##script[id="pmc-async-gtm-js-js"]:remove() variety.com##script[id="pmc_trackonomics_main_js-js"]:remove() variety.com##script[id^="pmc_piano_consent_js-js"]:remove() variety.com##script[id^="pmc_cxense_"]:remove() variety.com##script[id^="pmc-onetrust-"]:remove() variety.com##script[id^="pmc-comscore-js"]:remove() variety.com##script[id^="pmc-adm-setup-js"]:remove() variety.com##script[class*="optanon-category-C0002"]:remove() variety.com##script[class="pmc-admiral"]:remove() ! The string in the following two rules varies, but it appears to always start with /_aQS0\d[a-zA-Z]+/ and be 40-41 characters long. ! The local storage item in the following rule is used by the Admiral anti-adblocking system. !variety.com##+js(set-local-storage-item, _aQS01RTIxQUJEMDY5Mjc0MDAzMUY3MEM2MzEtMTI, $remove$) variety.com##+js(set-local-storage-item, /^_aQS0\d[a-zA-Z]+/, $remove$) !variety.com##+js(remove-node-text, script, /_aQS01RTIxQUJEMDY5Mjc0MDAzMUY3MEM2MzEtMTI/gm) variety.com##+js(remove-node-text, script, /_aQS0\d[a-zA-Z]+/gm) variety.com^script:has-text(/_aQS0\d[a-zA-Z]+/):remove() ! Either of the following two rules remove the inline Admiral anti-adblocking script. variety.com##+js(remove-node-text, script, /"admbenefits"/gm) variety.com##+js(remove-node-text, script, /data\-adm\-url/gm) variety.com##+js(remove-node-text, script, /pmc_piano_reporting_cookie/gm) variety.com##+js(remove-node-text, script, /pmc_ga_fields_obj/gm) variety.com##+js(set-constant, window.pmc_is_adblocked, false) variety.com##+js(set-constant, pmc_do_analytics_pagecount, false) variety.com##+js(set-constant, hasRequiredConsents, true) variety.com##+js(remove-node-text, script, /window\.pmc_google_consent_mode\.init/gm) variety.com##+js(aopr, window.pmc_google_consent_mode) variety.com##+js(aopw, window.pmc_google_consent_mode) variety.com##+js(aopr, pmc_meta) variety.com##+js(aopw, pmc_meta) variety.com##+js(aopr, pmc_meta.omni_visit_id) variety.com##+js(aopw, pmc_meta.omni_visit_id) variety.com##+js(aopr, pmc_piano_reporting_cookie) variety.com##+js(aopw, pmc_piano_reporting_cookie) variety.com##+js(aopr, pmc_ga_fields_obj) variety.com##+js(aopw, pmc_ga_fields_obj) variety.com##+js(aopr, _qevents) variety.com##+js(aopw, _qevents) variety.com##+js(remove-node-text, script, /_qevents/gm) variety.com##+js(aopr, blogherads) variety.com##+js(aopw, blogherads) variety.com##+js(remove-node-text, script, /blogherads/gm) variety.com##+js(remove-node-text, script, /googletag\.cmd\.push/gm) variety.com##+js(acs, /googletag\.pubads\(\)/) variety.com##+js(acs, /googletag\.cmd\.push\(/) variety.com##+js(acs, /blogherads\.setTargeting\(/) variety.com##+js(set-constant, pmc_jwplayer_options.ads_suppression, "1", complete) variety.com##+js(set-constant, pmc_jwplayer_options.livestream_ga_enabled, "1", complete) variety.com##+js(set-constant, pmc_jwplayer_options.cc_enabled, "1", complete) variety.com##+js(trusted-set-constant, pmcPianoData.entitlementEngine, "disable", complete) variety.com##+js(set-constant, pmcPianoData.pmcPianoData.trackingPixels, {}, complete) variety.com##+js(set-constant, pmc_comscore_options, {}) variety.com##+js(aopr, pmc_comscore_options) variety.com##+js(aopw, pmc_comscore_options) variety.com##+js(trusted-set-constant, pmc_cxense_data.isConsentDisabled, "1", complete) variety.com##+js(trusted-set-constant, pmc_cxense_data.load_cxense, "disable", complete) variety.com##+js(trusted-set-constant, pmc_cxense_data.custom_parameters.pmc-logged-in, "1", complete) variety.com##+js(trusted-set-constant, pmc_cxense_data.custom_parameters.pmc-paywall_bypass, "1", complete) variety.com##+js(trusted-replace-node-text, script, /"entitlementEngine"\:\s?"enable"/gm, "entitlementEngine":"disable") variety.com##+js(trusted-replace-node-text, script, /"pmc-logged-in"\:\s?(""|"no"|"0")/gm, "pmc-logged-in":"1") variety.com##+js(trusted-replace-node-text, script, /"pmc-paywall_bypass"\:\s?(""|"0"|"no")/gm, "pmc-paywall_bypass":"1") variety.com##+js(trusted-replace-node-text, script, /"isConsentDisabled"\:\s?(""|"0"|"no")/gm, "isConsentDisabled":"1") variety.com##+js(trusted-replace-node-text, script, /"load_cxense"\:\s?"enable"/gm, "load_cxense":"disable") variety.com##+js(trusted-replace-node-text, script, /"ads_suppression"\:\s?(""|"0"|"no")/gm, "ads_suppression":"1") variety.com##+js(trusted-replace-node-text, script, /"livestream_ga_enabled"\:\s?("1"|"yes")/gm, "livestream_ga_enabled":"1") variety.com##+js(trusted-replace-node-text, script, /"cc_enabled"\:\s?("0"|"no"|"")/gm, "cc_enabled:"1") variety.com##+js(trusted-replace-node-text, script, /var pmc_do_analytics_pagecount\s?=\s?true/gm, var pmc_do_analytics_pagecount = false) vertigo-games.com##div[id="gdprc_bar"]:remove() vertigo-games.com##div[class^="gdprc_"]:remove() tutorial.eyehunts.com##ins[data-ad-slot]:remove() my.nordaccount.com##p[class*="nord-text"]:has-text(/This website uses cookies./i):upward(2):remove() www.guru99.com##div[id^="div-gpt-ad-"]:upward(1):remove() www.guru99.com##aside[id="secondary"]:remove() www.android.com##*[class*="cookie-banner"]:remove() ||steamdb.info/cdn-cgi/bm/cv/669835187/api.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.w3resource.com##div[id^="sol_ad_"]:remove() www.w3resource.com##span[class="hover-ad"]:remove() www.timeanddate.com##div[id^="div-gpt-com-"]:remove() www.timeanddate.com##fieldset[id="ad1"]:remove() www.programiz.com##div[id^="div-gpt-ad-"]:remove() www.telecoms.com##div[class*="iiris-grid-ads-container"]:remove() www.gamedeveloper.com,www.telecoms.com##*:remove-class(gptHideContent) ! TODO: The following class names are used for adblocking checks: ! ads ad adsbox doubleclick ad-placement carbon-ads www.gamedeveloper.com,www.telecoms.com##div[class*="carbon-ads"]:remove() www.gamedeveloper.com,www.telecoms.com##div[id]:matches-attr(id=/^(resource|bigsky|floor|adhesion|wallpaper|video|oop|logo|reveal|chatbox|sponsoredlogo)(weather|commodities)?_?_\d?v/):remove() www.gamedeveloper.com,www.telecoms.com##div[id]:matches-attr(id=/^(slide_)?(728|300|100|interstitial)_\d{1,2}v_?(microlist|article)?/):remove() www.gamedeveloper.com,www.telecoms.com##div[id]:matches-attr(id=/^native_(featured|latest|related|topic)?(left|right|vertical|grid)?_?\d{1,2}v/):remove() www.gamedeveloper.com,www.telecoms.com##+js(remove-node-text, script, /NREUM\.info\s?=\s?{/gm) www.gamedeveloper.com,www.telecoms.com##+js(set-constant, NREUM, {}) www.gamedeveloper.com,www.telecoms.com##+js(set-constant, NREUM.info, {}) www.gamedeveloper.com,www.telecoms.com##+js(aopr, NREUM.info) www.gamedeveloper.com,www.telecoms.com##+js(aopw, NREUM.info) www.gamedeveloper.com,www.telecoms.com##+js(remove-node-text, script, /function OptanonWrapper\(\)\s?\{/gm) www.gamedeveloper.com,www.telecoms.com##+js(set-constant, OptanonWrapper, noopFunc) www.gamedeveloper.com,www.telecoms.com##+js(remove-node-text, script, /gtm\.js/gm) www.gamedeveloper.com,www.telecoms.com##+js(remove-node-text, script, /googletag\.pubads\(\)/gm) www.gamedeveloper.com,www.telecoms.com##+js(acs, /googletag\.pubads\(\)/) www.gamedeveloper.com##div[class*="cookie-popup"]:remove() www.gamedeveloper.com##div[class*="doubleclick"]:remove() www.gamedeveloper.com##div[class*="ad-placement"]:remove() www.gamedeveloper.com##div[class^="Ad Ad_pos_"]:remove() www.gamedeveloper.com##div[class="Ad Sidebar-SidebarItem"]:remove() www.gamedeveloper.com##div[class="Ad ArticleBase-AdTop"]:remove() ! The following rule gets rid of the extra space used with the ad removed. www.gamedeveloper.com##div,a[class="ArticleBase-Header"]:style(margin-bottom: 0px !important; gap: 0px !important;) www.gamedeveloper.com##div[id="cookie-popup-wrapper"]:remove() www.gamedeveloper.com##iframe[src^="https://www.googletagmanager.com/"]:remove() www.gamedeveloper.com##+js(set-constant, isTargetingCookieSetPrev, true) www.gamedeveloper.com##+js(set-constant, isTargetingCookieSet, true) www.gamedeveloper.com##+js(set-constant, bt.events.adsBlocked, falseFunc, complete) www.gamedeveloper.com##+js(set-constant, bt.events.adsUnblocked, trueFunc, complete) www.gamedeveloper.com##+js(set-constant, bt.events.showWelcomeAds, falseFunc, complete) www.gamedeveloper.com##+js(set-constant, bt.events.showBigskyAd, falseFunc, complete) www.gamedeveloper.com##+js(set-constant, e.pubads, noopFunc, complete) www.gamedeveloper.com##+js(set-constant, e.enabledAds, "all", complete) ! TODO: The following rule does not work to fix "TypeError: e.enabledAds.includes is not a function". www.gamedeveloper.com##+js(set-constant, e.enabledAds.includes, noopFunc, complete) www.gamedeveloper.com##+js(set-constant, window.isAdBlocked, false) www.gamedeveloper.com##+js(set-constant, window.welcomeAdWaitTimeout, false) ! TODO: Are the following events page element events or just javascript events? www.gamedeveloper.com##+js(aeld, adsUnblocked) www.gamedeveloper.com##+js(aeld, adsBlocked) www.gamedeveloper.com##+js(aeld, loadAd) www.gamedeveloper.com##+js(aeld, showWelcomeAds) www.gamedeveloper.com##+js(aeld, showBigskyAd) www.gamedeveloper.com##+js(aeld, DataCenterAdsBlocked) ! TODO: Change these values with $replace= as well since they may not get changed in time to be used. www.gamedeveloper.com##+js(trusted-replace-node-text, script, /"nativeAdOption":\s?true/gm, "nativeAdOption":false) www.gamedeveloper.com##+js(trusted-replace-node-text, script, /"gatingEnabled":\s?true/gm, "gatingEnabled":false) www.gamedeveloper.com##+js(trusted-replace-node-text, script, /"isGatedAsPaid":\s?true/gm, "isGatedAsPaid":false) www.gamedeveloper.com##+js(trusted-replace-node-text, script, /"isPaidContent":\s?true/gm, "isPaidContent":false) www.gamedeveloper.com##+js(trusted-replace-node-text, script, /"disableAds":\s?false/gm, "disableAds":true) www.gamedeveloper.com##+js(trusted-replace-node-text, script, /"disableBigskyAd":\s?false/gm, "disableBigskyAd":true) www.gamedeveloper.com##+js(trusted-replace-node-text, script, /"disableCookieBanner":\s?false/gm, "disableCookieBanner":true) ! TODO: Does the following rule negatively impact functionality? www.gamedeveloper.com##+js(trusted-replace-node-text, script, /"disableCaptcha":\s?false/gm, "disableCaptcha":true) ! The following rule is a troubleshooting fix to prevent a 404 error page on every otherwise valid URL. Appears to be caused by some type of anti-adblocking. !||www.gamedeveloper.com^$inline-script ! Blocking and removing window.__remixContext related scripts using the following three rules is ineffective to stop the 404 error page. ! TODO: aborting on window.__remixContext causes the page to be blanked. !www.gamedeveloper.com##+js(aopr, window.__remixContext) !www.gamedeveloper.com##+js(aopw, window.__remixContext) ! Removing the inline script with window.__remixContext doesn't actually prevent it from running since it has already been loaded. !www.gamedeveloper.com##+js(remove-node-text, script, /window\.__remixContext\s?=/gm) ! TODO: The following rule prevents the 404 error page and the blank pages, but it also causes the page to continually refresh. ! "Initial URL (undefined) does not match URL at time of hydration (/production/embracer-rolls-out-new-ai-policy-to-massively-enhance-game-development-), reloading page..." !www.gamedeveloper.com##+js(set-constant, window.__remixContext, {}, complete) ! TODO: Neither of the following two rules prevent the page reloads. The rule below using replace= is the only solution that worked. !www.gamedeveloper.com##+js(acs, /window\.location\.reload\(\)\,/) ! There is more than one instance of window.location.reload(), in the script @ https://www.gamedeveloper.com/build/_shared/chunk-DDEY3VPE.js www.gamedeveloper.com##+js(trusted-replace-node-text, script, /window\.location\.reload\(\),/gm, "") ! TODO: Do the script names in the following two rules ever change? !||www.gamedeveloper.com/build/_shared/chunk-UPUW2MZD.js$replace=/window\.location\.reload\(\),//gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.gamedeveloper.com/build/_shared/chunk-DDEY3VPE.js$replace=/window\.location\.reload\(\),//gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.gamedeveloper.com/build/_shared/chunk-*.js$replace=/window\.location\.reload\(\),//gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.gamedeveloper.com##+js(set-constant, window.__remixContext.state.loaderData.root.ads.enabledAds, [], complete) ! The following three rules are necessary to prevent 404 error page on every otherwise valid URL @ gamedeveloper.com. Appears to be caused by some type of anti-adblocking. ! TODO: This does not actually work to prevent the 404 error page. !www.gamedeveloper.com#@#+js(set-constant, googletag, {}) !www.gamedeveloper.com#@#+js(set-constant, window.googletag, {}) !www.gamedeveloper.com#@#+js(set-constant, window.dataLayer, []) !@@||js-agent.newrelic.com^$3p,domain=www.gamedeveloper.com !www.gamedeveloper.com##+js(set-constant, googletag.pubads, noopFunc, end) !www.gamedeveloper.com##+js(set-constant, googletag.pubads, noopFunc, complete) www.gamedeveloper.com##+js(set-constant, googletag.pubads, noopFunc) ! Use $replace= on the following two scripts to disable ads and also which works to prevent the 404 error page. ! TODO: The drop-down menus on the page are broken though. ! TODO: The filename chunk-UPUW2MZD.js in the following rules varies. ||www.gamedeveloper.com/build/_shared/chunk-*.js$replace=/document\.body\.classList\.add\('gptHideContent'\)//gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! TODO: Some applications of the following rules with value set to 1 result in "Uncaught SyntaxError: missing variable name" since a variable name is expected. ||www.gamedeveloper.com/build/_shared/chunk-*.js$replace=/disableAds:\s?(\w{1,2}|!?1)/disableAds:1/gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.gamedeveloper.com/build/_shared/chunk-*.js$replace=/disableWelcomeAd:\s?(\w{1,2}|!?1)/disableWelcomeAd:1/gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.gamedeveloper.com/build/_shared/chunk-*.js$replace=/disableBigskyAd:\s?(\w{1,2}|!?1)/disableBigskyAd:1/gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.gamedeveloper.com/build/_shared/chunk-*.js$replace=/disableCaptcha:\s?(\w{1,2}|!?1)/disableCaptcha:1/gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.gamedeveloper.com/build/_shared/chunk-*.js$replace=/useShowCustomWelcomeAds:\s?(\w{1,2}|!?1)/useShowCustomWelcomeAds:1/gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.gamedeveloper.com/build/_shared/chunk-*.js$replace=/useShowBigskyAd:\s?(\w{1,2}|!?1)/useShowBigskyAd:1/gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.gamedeveloper.com/build/_shared/chunk-*.js$replace=/useAreAllAdsEnabled:\s?(\w{1,2}|!?1)/useAreAllAdsEnabled:1/gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.gamedeveloper.com/build/_shared/chunk-*.js$replace=/useIsAdActive:\s?(\w{1,2}|!?1)/useIsAdActive:1/gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.gamedeveloper.com/build/_shared/chunk-*.js$replace=/useGoogleTag:\s?(\w{1,2}|!?1)/useGoogleTag:1/gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.gamedeveloper.com/build/_shared/chunk-*.js$replace=/useIsAdRender:\s?(\w{1,2}|!?1)/useIsAdRender:1/gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.gamedeveloper.com/build/_shared/chunk-*.js$replace=/useAdUnitPathCode:\s?(\w{1,2}|!?1)/useAdUnitPathCode:1/gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.gamedeveloper.com/build/_shared/chunk-*.js$replace=/useAdsRender:\s?(\w{1,2}|!?1)/useAdsRender:1/gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.gamedeveloper.com/build/_shared/chunk-*.js$replace=/e\.enabledAds\.includes\(\w\)/e.enabledAds.includes("")/gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The script in the following rule is the main script that enables ads. ! TODO: The filename root-T5PS62GG.js in the following rules varies. ||www.gamedeveloper.com/build/root-*.js$replace=/enabledAds:e\.enabledAds/enabledAds:0/gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.gamedeveloper.com/build/root-*.js$replace=/welcAdOff:e\.welcAdOff\|\|!1/welcAdOff:1/gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.gamedeveloper.com/build/root-*.js$replace=/disableAds:I\.disableAds/disableAds:1/gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.gamedeveloper.com/build/root-*.js$replace=/disableWelcomeAd:I\.disableWelcomeAd/disableWelcomeAd:1/gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.gamedeveloper.com/build/root-*.js$replace=/disableBigskyAd:I\.disableBigskyAd/disableBigskyAd:1/gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www3.doubleclick.net^$3p,domain=gamedeveloper.com www.encodedna.com##+js(aopr, _gaq) www.encodedna.com##+js(aopw, _gaq) www.lego.com##div[class^="CookieModal"]:remove() www.lego.com##span[class^="CookieModal"]:remove() www.lego.com##div[aria-label="Cookie Settings"]:remove() www.lego.com##div[data-focus-lock-disabled="false"]:remove() www.lego.com##scrollbar[disabled="true"]:remove() ||www.lego.com/api/graphql/CookieModalSettings$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css plaid.com##div[data-testid="consent-manager-banner"]:remove() ||ernedassiu.com^* ||rtunitytostar.com^* www.npr.org##div[data-ad-config]:remove() www.npr.org##aside[id^="ad-standard-"]:remove() www.npr.org##iframe[name^="__privateStripeMetricsController"]:remove() ||dyrfxuvraq0fk.cloudfront.net^* ||d3mxt5v3yxgcsr.cloudfront.net^* www.nydailynews.com##div[data-pb-name="DFP Ad"]:remove() www.nydailynews.com##div[class*="pb-ad"]:remove() www.nydailynews.com##zeus-ad:remove() www.nydailynews.com##+js(aopr, ad.dataset.optimeraMeasure) www.nydailynews.com##+js(aopw, ad.dataset.optimeraMeasure) www.nydailynews.com##+js(aopr, trb.data.ads.optimera) www.nydailynews.com##+js(aopw, trb.data.ads.optimera) www.nydailynews.com##+js(aopr, optimeraId) www.nydailynews.com##+js(aopw, optimeraId) ||insights.zeustechnology.com^* lawnmowerguru.com##span[class*="ezoic-ad"]:remove() lawnmowerguru.com##div[class*="ezo_ad"]:remove() lawnmowerguru.com##+js(aopr, ez_ad_units) lawnmowerguru.com##+js(aopw, ez_ad_units) lawnmowerguru.com##span[class="ezoic-adpicker-ad"]:remove() lawnmowerguru.com##span[class*="adtester-container"]:remove() www.howtosolutions.net##span[class*="ezoic-ad"]:remove() www.howtosolutions.net##div[class*="ezo_ad"]:remove() www.howtosolutions.net##+js(aopr, ez_ad_units) www.howtosolutions.net##+js(aopw, ez_ad_units) www.howtosolutions.net##+js(aopr, __advertiserRule) www.howtosolutions.net##+js(aopw, __advertiserRule) www.howtosolutions.net##span[class="ezoic-adpicker-ad"]:remove() www.howtosolutions.net##span[class*="adtester-container"]:remove() www.howtosolutions.net##div[class="leadad"]:remove() ||taracareewitu.xyz^* ||fefashionis.com^* ||opolicycrea.xyz^* ||d3oy68whu51rnt.cloudfront.net^* ||hinlargecons.xyz^* ||dyj8pbcnat4xv.cloudfront.net^* ||tmenttogeth.xyz^* www.adbusbdriver.com##+js(aopr, adsbygoogle) www.adbusbdriver.com##+js(aopw, adsbygoogle) www.thecustomdroid.com##div[class^="code-block"]:has(ins[data-ad-client]):remove() www.thecustomdroid.com##+js(aopr, adsbygoogle) www.thecustomdroid.com##+js(aopw, adsbygoogle) iir.ai##+js(remove-attr, #invisibleCaptchaShortlink, onclick) iir.ai##+js(remove-class, #go-submit, hidden) iir.ai##+js(remove-attr, #go-submit, disabled) iir.ai##a[href*="/taghaugh.com/"]:remove() iir.ai##a[href*="//tickmatureparties.com/"]:remove() iir.ai##div[id^="div-gpt-ad"]:remove() ||hb.adpone.com^* iir.ai##script[id="zkmvrv"]:remove() iir.ai##+js(remove-attr, a.btn.btn-success.btn-lg.get-link, onclick, stay) iir.ai##+js(remove-class, a.btn.btn-success.btn-lg.get-link, disabled, stay) ||flashnetic.com^* ||praterswhally.com^* iir.ai##+js(aopr, gdprAppliesGlobally) iir.ai##+js(aopw, gdprAppliesGlobally) tny.so##+js(remove-attr, #get_link, disabled, stay) tny.so##+js(remove-class, #get_link, disabled, stay) www.shadertoy.com##div[id="compliance"] www.netgear.com##span[id="cookie-close"]:upward(1):remove() www.netgear.com##div[class*="cookiealert"]:remove() www.t-mobile.com##div[class="xpr-cookieModal"]:remove() www.t-mobile.com##div[id="phx-cookie-modal"]:remove() !||www.t-mobile.com/etc.clientlibs/digx/phoenix-analytics/clientlibs/vendor-clientlibs/webvitals.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.t-mobile.com/etc.clientlibs/digx/phoenix-analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tmobile.demdex.net^* !||www.t-mobile.com/etc.clientlibs/digx/experience/components/content/cookieModal/v1/cookieModal/clientlib.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.t-mobile.com/etc.clientlibs/digx/experience/components/content/cookieModal/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.t-mobile.com/etc.clientlibs/digx/experience/clientlibs/vendor-clientlibs/body-scroll-lock.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||koalaups.com^* ||analytics.zinlab.com^* www.thenorthernecho.co.uk##iframe[id="rufous-sandbox"]:remove() www.thenorthernecho.co.uk##div[id="sp_message_container_525293"]:remove() www.thenorthernecho.co.uk##div[id="sp_message_iframe_525293"]:remove() www.thenorthernecho.co.uk##div[class*="leaderboard-ad"]:remove() www.thenorthernecho.co.uk##div[class*="dfp-ad"]:remove() www.thenorthernecho.co.uk##div[class*="mar-block-ad"]:remove() www.thenorthernecho.co.uk##script[id*="cookieBanner-"]:remove() !www.thenorthernecho.co.uk##body,html:style(overflow: auto) ||uatu.newsquestdigital.co.uk/collector.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a02342.thenorthernecho.co.uk/wrapper/tcfv2/v1/gdpr/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css dilbert.com##div[class*="ad-leaderboard"]:remove() dilbert.com##div[data-ad-type]:remove() dilbert.com##div[class*="ad-container"]:remove() blog.jongallant.com##div[class="banner-ad"]:remove() ||fnyfiexpectth.xyz^* ||transmith.xyz^* dotnetfiddle.net##div[id="ukraine"]:remove() dotnetfiddle.net##div[id^="sponsor-"]:remove() dirask.com##div[id="main_page_cookie_bar"]:remove() csharp.hotexamples.com##div[id="ezmobfooter"]:remove() csharp.hotexamples.com##span[class*="ezoic-autoinsert-ad"]:remove() csharp.hotexamples.com##span[class*="ezoic-ad"]:remove() csharp.hotexamples.com##span[class*="adtester-container"]:remove() ||sf.ezoiccdn.com/tardisrocinante/cash.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.codemag.com##div[id^="cookieConsent"]:remove() www.codemag.com##div[id^="div-gpt-ad-"]:remove() www.codemag.com##div[class*="advertisement"]:remove() www.codemag.com##div[class*="leaderboard-ad"]:remove() ||dooloust.net^* community.developer.visa.com##div[id="CookieReportsPanel"]:remove() developer.visa.com##div[id="CookieReportsPanel"]:remove() ||adengine.snigelweb.com^* www.anoopcnair.com##+js(aopr, adsbygoogle) www.anoopcnair.com##+js(aopw, adsbygoogle) www.anoopcnair.com##ins[class="dcmads"]:remove() ||phicmune.net^* ||5hjdbfjfd5.monster^* ||tiwhaiph.net^* apkmos.com##div[class="apkmo-adlabel"]:remove() apkmos.com##div[id="apkmo-1914913151"]:remove() apkmos.com##div[id="apkmo-2087922620"]:remove() apkmos.com##div[id^="ezoic-pub-ad-placeholder"]:remove() ||pseekree.com^* ||chedrive.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.adsenseguard.com^* chedrive.com##span[class^="adsdk-"]:remove() chedrive.com##input[id="adblock_detected"]:remove() chedrive.com##a[href*="//1frozenthrone1.com/"]:remove() ||fp.metricswpsh.com^* !||js.wpadmngr.com/static/adManager.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||js.wpadmngr.com^* ||rtbrennab.com^* ||3f9716d108.4e381657ad.com^* ||d9b5a8db72.468a044700.com^* ||ma-adx.ctrip.com^* ||webresource.c-ctrip.com/NFES/mfe_marketAdvert/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||webresource.c-ctrip.com/NFES/mfe_platformAdvertStairs/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.c-ctrip.com/bee/collect$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||chedrive.com/uploadrar_style/js/countdown.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||btvuyafjsosnyom.com^* ||eehuzaih.com^* short.katflys.com##+js(aeld, DOMNodeRemoved) short.katflys.com^$script,3p ||hoppedobscurefame.com^* ||ytgfmxrchvn.com^* snakify.org##ins[data-ad-client]:upward(1):remove() ||cinemensenoy.xyz^* ||atmyeducat.xyz^* ||femindexkilog.xyz^* ||gruencyaloe.xyz^* ||ionakasulba.xyz^* www.nylas.com##aside[id="moove_gdpr_cookie_info_bar"]:remove() www.nylas.com##div[class*="moove-gdpr-"]:remove() www.nylas.com##div[id="moove_gdpr_cookie_modal"]:remove() www.nylas.com##script[id*="gdpr_"]:remove() !||www.nylas.com/wp-content/plugins/gdpr-cookie-compliance-addon/assets/js/gdpr_cc_addon.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.nylas.com/wp-content/plugins/gdpr-cookie-compliance/dist/scripts/main.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.nylas.com/wp-content/plugins/gdpr-cookie-compliance$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css net-informations.com##div[data-type="ad"]:remove() www.codespeedy.com##div[id="vi-sticky-ad"]:remove() www.codespeedy.com##+js(aopr, adElemSticky) www.codespeedy.com##+js(aopw, adElemSticky) ||zeechumy.com^* gyazo.com##div[class*="lower-ad"]:remove() gyazo.com##div[class*="sticker-gdpr"]:remove() gyazo.com##div[class*="direct-ad-frame"]:remove() code-maze.com##div[data-freestar-ad]:remove() dotnetfoundation.org##*[class*="cc_dialog"]:remove() dotnetfoundation.org##section[class^="flash"]:has(div[class^="alert"], a[href*="//novaukraine.org"]):remove() www.febooti.com##div[id="cc"]:remove() www.lambdatest.com##div[class*="cookies__bar"]:remove() toolslick.com##div[id="cookie-consent"]:remove() www.pythontutorial.net##section[id^="textblockswidget-"]:has(iradsdiv):remove() www.pythontutorial.net##div[class^="ad ad-"]:has(iradsdiv):remove() www.pythontutorial.net##div[ir-ads-unit]:remove() www.pythontutorial.net##div[id^="div-gpt-ad-"]:remove() www.pythontutorial.net##iradsdiv:remove() www.i-programmer.info##div[id="iptop"]:remove() ||imp.pxf.io^* ||imp.i115008.net^* www.i-programmer.info##iframe[id^="dm-gpt-iframe-"]:remove() www.i-programmer.info##div[id^="div-gpt-ad"]:remove() apk4all.com##[href*="//mobileoffers-7-m-download.com/"]:remove() ||d1nubxdgom3wqt.cloudfront.net^* ||denknowled.xyz^* ||dinterperson.xyz^* ||img1.wsimg.com/parking-lander/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||narsap.com^* ||solitudeslander.com^* ||unbeedrillom.com^* ||supersedeforbes.com^* ||interstitial-08.com^* ||guro2.com^* ||undooptimisticsuction.com^* ||saumeechoa.com^* ||simplewebanalysis.com/stats$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||watchrecentoverlytheproduct.vip^* !||webjscontent.com/dl.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||webjscontent.com^* ||pulse.tubroaffs.net^* ||separatecolonist.com^* ||torrent-protection.com^* ||gisttorn.com^* mspoweruser.com##div[id="ezmobfooter"]:remove() mspoweruser.com##div[class*="ezo_ad"]:remove() mspoweruser.com##+js(aopr, __inScopeForCCPA) mspoweruser.com##+js(aopw, __inScopeForCCPA) mspoweruser.com##+js(aopr, __ez_dims) mspoweruser.com##+js(aopw, __ez_dims) mspoweruser.com##+js(aopr, __ez_fad_doc_ht) mspoweruser.com##+js(aopw, __ez_fad_doc_ht) mspoweruser.com##+js(aopr, __ezaps) mspoweruser.com##+js(aopw, __ezaps) mspoweruser.com##+js(aopr, window.ezslots_raw) mspoweruser.com##+js(aopw, window.ezslots_raw) mspoweruser.com##+js(aopr, ez_ad_units!) mspoweruser.com##+js(aopw, ez_ad_units!) mspoweruser.com##span[id^="div-gpt-ad-"]:remove() mspoweruser.com##span[class*="ezoic-ad"]:remove() mspoweruser.com##span[class*="adtester-container"]:remove() ||mspoweruser.com/sp-push-worker-fb.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css timesofindia.indiatimes.com##div[id="div-gpt-ad-"]:remove() ||jazygesforeday.website^* ||agnescarved.website^* ||www.cncflpfw.com^* ||streamadblockplus.com/ad.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rhelog.com/script/java.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||effusedprankle.com^* ||pillsofecho.com^* ||do.aeoliancorojo.com^* ||1203939066.rsc.cdn77.org/ct.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||shklbdtlluu.com^* ||upadspanel.com^* ||ecgmdxoucsnrmq.com^* ||www.ecgmdxoucsnrmq.com^* ||trk.afflyf.com^* augustafreepress.com##li[id^="eu_cookie_law"]:remove() augustafreepress.com##div[id="eu-cookie-law"]:remove() augustafreepress.com##+js(aopr, window.advanced_ads_ready) augustafreepress.com##+js(aopw, window.advanced_ads_ready) augustafreepress.com##+js(aopr, window.advanced_ads_ready_queue) augustafreepress.com##+js(aopw, window.advanced_ads_ready_queue) www.sportrar.tv##div[id="copop"]:remove() ||blastieliatris.com^* troypoint.com##div[class*="mysticky-welcomebar-"]:remove() ||vip.adbp.online^* ||api.liquidrenders.com/index.php/Open/Banner/banners.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adserver.bettingcenter.ag^* ||looselines.ag/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bitcoinsports.org/script.packed.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bitcoinsports.org/license.packed.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pepinapig.xyz^* ||cynicaugural.com^* ||click.pclk.name^* ||densgauche.com^* ||d1lytq8w52fohg.cloudfront.net/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.gearbest.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bedrapiona.com^* ||gleameddelightprosperity.com^* ||restorationbowelsunflower.com^* ||cuesingle.com^* ||et-nd32.itdsmr.com^* ||attacheastely.com^* ||harmonycanyon.com^* ||yourvouchundercover.com^* ||trk.performit.xyz^* ||www.gbdixorxxdjykr.com^* ||gbdixorxxdjykr.com^* ||andriesshied.com^* ||addents-leasure.icu^* ||koudooze.net^* ||oaphoace.net^* ||terribledeliberate.com^* ||jiufbtrsqpa.com^* ||longaboo.com^* ||d4q53gx106.execute-api.us-east-1.amazonaws.com^* ||api.airfind.com/adPlacement/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||oneclickfeed.com^* ||oxthnacjlgkz.oneclickfeed.com^* ||ahpnraljf.com^* ||route.g-sponsored-results.com^* ||eshouloo.net^* ||ixheeydorfnfum.com^* ||excellernod.xyz^* ||adrc.io/widget.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pokaroad.net^* ||clkv4.extyoneplus-3.com^* ||tq.adventurefeeds.com^* ||kuno-gae.com^* ||fclnmqhwc.com^* ||t.dtscout.com^* ||a.dtssrv.com^* ||www.sportrar.tv/js/cookiepop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css theappstore.org##div[id="ad123"]:remove() theappstore.org##div[id="divalert"]:remove() theappstore.org##div[id="bodypanel"]:style(filter: blur(0px) !important; -webkit-filter: blur(0px) !important;) ||yudmhvxfwbjnny.com^* ||erebelfare.xyz^* ||www.vanjyvsr.com^* ||www.qstukqmsddqgs.com^* ||www.sports-stream.site/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||1d6cbc1f2ba.kinkylotto.com^* ||register.push.dog/js/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||forearmthrobjanuary.com^* ||assia22.com/css/banr-adstera.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||inflectionquake.com^* ||thenceextremeeyewitness.com^* ||datatechonert.com^* ||ugyplysh.com^* ||bestiqtest.top^* ||cdntechone.com/stattag.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||getsurv2you.com^* ||strenuoustarget.com^* ||get.hundredpercentmargin.com^* ||assia4.com/css/vast-adstera.xml$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pitchedfurs.com^* ||z.cdn.trafficdok.com^* ||cdn.trafficdok.com^* ||assia22.com/css/stat.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||assia22.com/css/bannernov.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||assia22.com/css/jquerymin-adstera.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||assia22.com/css/analytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||jkndwlldhbr.com^* ||imstore.bet365affiliates.com^* ||becorsolaom.com^* ||unseenreport.com^* ||janglemysticalpiggy.com^* ||xml.admidainsight.com^* ||moekyepkd.com^* ||s7.zerodeltanode.shop^* ||qualitydestructionhouse.com^* ||ad.apl139.me^* ||ad.apl122.me^* ||js.revmasters.com/javascript.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||revmasters.elb.myaffiliates.com/javascript.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||revmasters.elb.myaffiliates.com^* ||media.revmasters.com/uploads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ii.apl139.me/js/pop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||qdqlyoqpxyh.com^* ||ekgloczbsblg.com^* www.xmyip.com##section[id="bottom-ad"]:remove() www.xmyip.com##div[id="mobile-ad-header"]:remove() www.askwoody.com##td[colspan="2"]:has-text(ADVERTISEMENT):remove() www.askwoody.com##img[alt="Hive"]:upward(1):remove() ||www.kyyydxpptcl.com^* ||kyyydxpptcl.com^* ||www.uwzknashjrhw.com^* ||uwzknashjrhw.com^* ||www.jyklotgnhldsxyn.com^* ||jyklotgnhldsxyn.com^* ||pl16164575.safestgatetocontent.com^* ||vcdnads.ru.com^* ||www.ddihirqhtyw.com^* ||ddihirqhtyw.com^* ||www.sutmjpoja.com^* ||sutmjpoja.com^* !||collector.github.com/github/collect$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||collector.github.com^* ||www.mlsfxuvs.com^* ||mlsfxuvs.com^* ||analytics.livestream.com^* ||livenewsof.com/wp-content/cache/min/1/wp-content/uploads/slwjbx.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! TODO: Does the filename in the following rule change? !||livenewsof.com/wp-content/uploads/pznjycgkl.css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||livenewsof.com/wp-content/uploads/pznjycgkl.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||livenewsof.com/wp-content/uploads/pznjycgkl.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !livenewsof.com##div[id="v-livenewsof"]:style(left: 0px !important; right: 0px !important; padding: 0 !important; margin: 0 !important; border: none !important; border-width: 0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; user-select: all !important; pointer-events: all !important;) ! The element in the following rule directly hosts the video player and is generated by https://jwpsrv.com/library/O4mPlqeTEeK_viIACpYGxA.js. ! left: -15vw in the following rule works best for 16:9 aspect ratio to put the video player back against the left margin. ! width: 99vw in the following rule works best since there is a vertical scrollbar. livenewsof.com##div[id="player"]:style(margin-left: 0px !important; margin-right: 0px !important; left: -15vw !important; right: 0 !important; margin:0 !important; padding:0 !important; border: none !important; border-width:0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; user-select: all !important; pointer-events: all !important;) livenewsof.com##div[id="player"]:remove-class(vjs-controls-disabled) livenewsof.com##+js(remove-class, vjs-controls-disabled, div[id="player"]) livenewsof.com##+js(add-class, vjs-controls-enabled, div[id="player"]) livenewsof.com##+js(trusted-set-attr, div[id="player"], crossorigin, anonymous) livenewsof.com##+js(trusted-set-attr, div[id="player"], preload, metadata) ! TODO: A rule is needed to keep the floating right-side "Latest" column at the top of the page so it doesn't overlap the video player viewport. ! The element in the following rule keeps haveing its position set to fixed which makes it overlap the video player. livenewsof.com##div[class="wpb_wrapper"][data-sticky-enabled-on]:style(position: relative !important;) ! TODO: The following two rules were needed to remove the floating right-side "Latest" column so it doesn't overlap the video player viewport. !livenewsof.com##div[data-td-block-uid="tdi_68"]:remove() !livenewsof.com##div[data-td-block-uid="tdi_69"]:remove() ! TODO: The following doesn't work to create a horizontal scrollbar so can scroll right to see the cutoff right edge of the video player. Is this cause by box-sizing? livenewsof.com##html,body:style(overflow: auto !important; box-sizing: unset !important;) livenewsof.com##link[id="adunblocker-css"]:remove() livenewsof.com##script[id^="adunblocker-js"]:remove() ! TODO: Does the variable name in the following three rules change? livenewsof.com##+js(set-constant, pznjycgkl, {}) livenewsof.com##+js(aopw, pznjycgkl) livenewsof.com##+js(aopr, pznjycgkl) livenewsof.com##ins[data-ad-client]:remove() livenewsof.com##+js(set-constant, td_ad_background_click_link, "") livenewsof.com##+js(set-constant, td_ad_background_click_target, "") livenewsof.com##+js(aopw, td_ad_background_click_link) livenewsof.com##+js(aopr, td_ad_background_click_link) livenewsof.com##+js(aopw, td_ad_background_click_target) livenewsof.com##+js(aopr, td_ad_background_click_target) livenewsof.com##+js(remove-node-text, script, /adsbygoogle/gm) livenewsof.com##+js(remove-node-text, script, /ai=d\.createElement\('script'\);/gm) livenewsof.com##+js(set-constant, ai_js_code, false) livenewsof.com##+js(set-constant, ai_cookie_js, 0) livenewsof.com##+js(trusted-replace-node-text, script, /ai_js_code\s?=\s?true;/gm, ai_js_code = false;) !livenewsof.com##+js(remove-node-text, script, /ai_js_code\s?=\s?true;/gm) livenewsof.com##+js(trusted-replace-node-text, script, /var ai_cookie_js=\s?!0\,/gm, var ai_cookie_js=0,) !livenewsof.com##+js(remove-node-text, script, /var ai_cookie_js=\s?!0\,/gm) ||www.nexusmods.com/Contents/Scripts/adblocker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.nexusmods.com##div[class*="ad-unit"]:remove() www.nexusmods.com##div[class*="video-ad"]:remove() www.nexusmods.com##+js(abort-current-inline-script, areAdsBlocked()) ||majorgeeks.com/images/mg/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.memtest.org##div[aria-label="cookieconsent"]:remove() www.nexusmods.com##+js(set-constant, timeout, 0) !www.nexusmods.com##+js(nano-stb, /^/, *, 0.01) www.nexusmods.com##+js(nano-stb, /function \(\)/, *, 0.01) www.nexusmods.com##+js(set-constant, window.blockingAds, false, stay) www.nexusmods.com##+js(set-constant, isBlocked, false, stay) ||api.permutive.com/v2.0/identify?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.permutive.com/sdk-errors/v2/errors?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css uk.pcmag.com##div[class*="advsticky"]:remove() uk.pcmag.com##div[class="zad top"]:remove() uk.pcmag.com##div[class="zad sidebar"]:remove() www.tomsguide.com##div[class^="dfp-leaderboard-"]:remove() www.tomsguide.com##div[class*="ad-unit"]:remove() www.steamidfinder.com##div[id="nn_bfa_wrapper"]:remove() www.csharpcodi.com##div[id="ezmobfooter"]:remove() www.csharpcodi.com##div[class*="ezo_ad"]:remove() www.csharpcodi.com##span[class*="ezoic-ad"]:remove() www.csharpcodi.com##span[class*="adtester-container"]:remove() www.csharpcodi.com##+js(aopw, ez_ad_units) www.csharpcodi.com##+js(aopr, ez_ad_units) www.ungeek.ph##div[id="AdAAnchor"]:remove() www.ungeek.ph##span[class="td-adspot-title"]:remove() www.ungeek.ph##div[id^="div-gpt-ad-"]:remove() ||www.quiremuken.xyz^* ||quiremuken.xyz^* ||www.ronesefurt.xyz^* ||ronesefurt.xyz^* ||wonsegax.net^* ||captivatepestilentstormy.com^* ||ebookee.nocensor.sbs/cdn-cgi/apps/head/Bz6IpuO9BSnbszzmKMx5DG5B4ls.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.ybnggmnaxu.com^* ||ybnggmnaxu.com^* ||1805344080.rsc.cdn77.org/rxwe.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||1841312321.rsc.cdn77.org/gtvw.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||featassuage.com^* ||ticketswinning.com^* ||creepingbrings.com^* ||visiblejoseph.com^* ||davetin.xyz^* ||www.classcentral.com/webpack/analytics.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.tlprxzujk.com^* ||tlprxzujk.com^* ||res.cdn.office.net/owamail/*/resources/images/adbarmetrosprite.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||res.cdn.office.net/owamail/*/resources/images/nativeadicon_adsense.svg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||res.cdn.office.net/owamail/*/resources/suiteux-shell/js/suiteux.shell.otellogging.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||res.cdn.office.net/owamail/*/resources/boot-analytics-ping.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||res.cdn.office.net/owamail/hashed-v1/scripts/owa.worker.Analytics.*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||res.cdn.office.net/owamail/hashed-v1/scripts/owa.Analytics.m.*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||js.monitor.azure.com/scripts/c/ms.shared.analytics.mectrl-3.gbl.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||js.monitor.azure.com/scripts/b/ai.2.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||MDW-efz.ms-acdc.office.com/ows/v1.0/OutlookOptions/AdsAggregate?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||link4m.com/uploads/advertiser/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css link4m.com##a[href*="/ads-click/"]:remove() www.techiedelight.com##a[rel="nofollow"]:remove() makolyte.com##span[class*="ezoic-ad"]:remove() makolyte.com##span[class*="adtester-container"]:remove() makolyte.com##span[id^="ezoic-pub-ad-placeholder"]:remove() makolyte.com##+js(aopw, ez_ad_units) makolyte.com##+js(aopr, ez_ad_units) ||demand.bidgear.com^* !||platform.bidgear.com/async.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||platform.bidgear.com^* apkaward.com##div[class="bidgear728"]:remove() apkdone.com##+js(aopw, adsbygoogle) apkdone.com##+js(aopr, adsbygoogle) !||pl15995674.profitablecpmgate.com^* !||pl17142106.profitablecpmgate.com^* ||p*.profitablecpmgate.com^* ||achunogo.com^* thinkkers.com##div[id="above-the-fold-ad"]:remove() ||thinnerconcha.com^* ||agenduret.com^* ||fjuryflfnbfr.com^* !||tzegilo.com/stattag.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tzegilo.com^* !||fleraprt.com/log/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fleraprt.com^* apkloo.com##ins[data-ad-client]:upward(1):remove() apkloo.com##+js(trusted-set-constant, secs, { "value": -1 }) ||ambiliarcarwin.com^* ||exchangediscreditmast.com^* ||oatmeallump.com^* ||encloseddealing.com^* ||xeqyvxvs.com^* ||d2bxxk33t58v29.cloudfront.net^* ||rningserien.xyz^* ||colanbalkily.com^* sharemods.com##+js(aopw, adunit) sharemods.com##+js(aopr, adunit) www.mysqltutorial.org##div[id^="Ad.Plus-"]:remove() www.mysqltutorial.org##script[id="_carbonads_js"]:remove() www.mysqltutorial.org##div[class*="carbon-ads"]:remove() !www.mysqltutorial.org##div[class="ad ad-336"]:remove() !www.mysqltutorial.org##div[class="ad ad-300"]:remove() www.mysqltutorial.org##div[class^="ad ad-3"]:remove() www.mysqltutorial.org##div[class="donation"]:remove() ||methoxyunpaled.com^* ||86cb1dcb13ba5a1a.com^* ||5c577fc74618431b.com^* ||d4d48974197052ea.com^* ||ded733b374cc1c3f.com^* ||ae21a0ad95016488.com^* ||82448dceaaa13034.com^* ||815e8fa24ebb8686.com^* ||523c579923fd35aa.com^* ||c50021876c67fd14.com^* ||brocode2s.com^* !||player.aplhb.adipolo.com/prebidlink/459693/wrapper_hb_572560_14534.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||player.aplhb.adipolo.com/prebidlink/*/wrapper_hb_*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||player.aplhb.adipolo.com/prebidlink/459693/hb_572560_14534.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||player.aplhb.adipolo.com/prebidlink/*/hb_*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||eningspon.com^* ||1aurl.net^* ||tholicyclea.xyz^* ||prebid-server.pubgalaxy.com^* !||blockadsnot.com/ujH.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.blockadsnot.com/tabletop.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.blockadsnot.com/dynamics.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.blockadsnot.com/grade.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.blockadsnot.com/agency.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.blockadsnot.com/jsoneditor.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.blockadsnot.com/pgnT/xchess.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.blockadsnot.com^* ||blockadsnot.com^* ||freychang.fun^* ||p-tracking-1345378198.us-east-1.elb.amazonaws.com^* ||cloudflareinsights.com/cdn-cgi/rum$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hawsuffer.com^* ||jlsslnsvmuuuu.com^* ||nffyhylicio.com^* ||ascensionrookieweapon.com^* ||oglprcjlenlkke.com^* ||mpyfjuysug.com^* www.luckypatchers.com##div[class^="l-cookie"]:remove() ||bxwpekad.com^* ||c1-static.comparably.com/1.232/comparably/js/cppa.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.comparably.com##div[class="section cppa"]:remove() ||protectionabate.com^* ||gnciikwdvdrbg.com^* ||www.upload-4ever.com/assets/js/mdb.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.chron.com##.belowMastheadWrapper:remove() steamworkshopdownloader.io##div[class*="Advertisements_"]:remove() support.skynetlabs.com##a[href*="//policies.gitbook.com/privacy/cookies"]:upward(2):remove() !support.skynetlabs.com##span[class*=" css-"][class*=" r-"]:has-text(Cookies):upward(2):remove() ||jocowhab.com^* iptvapps.net##li[class*="notice--cookie"]:upward(2):remove() download.cracksurl.com##+js(aopw, frame_check) download.cracksurl.com##+js(aopr, frame_check) download.cracksurl.com##+js(aopw, document.cookie) download.cracksurl.com##+js(aopr, document.cookie) ||download.cracksurl.com/static/js/amvn.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||download.cracksurl.com/js/display.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||custom.adf.ly/js/display.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tsiwoulukdli.xyz^* ||lmonopolicycr.xyz^* !||download.cracksurl.com/static/js/view117_bidshow.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||custom.adf.ly/static/js/view117_bidshow.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||custom.adf.ly/2market_bidshow.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||download.cracksurl.com/2market_bidshow.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d1hnmxbg6rp2o6.cloudfront.net^* !||magybu.net^* download.cracksurl.com##div[id="_bd"]:remove() download.cracksurl.com##div[id="bottomAd"]:remove() download.cracksurl.com##div[id="cookie_notice"]:remove() ! blocksredirects @ nathanaeldan.pro !||www7.nathanaeldan.pro^* !||www96.nathanaeldan.pro^* !||www63.nathanaeldan.pro^* !||www71.nathanaeldan.pro^* !||nathanaeldan.pro^* ||enesoftware.com/modules/974388b53b/assets/js/frontend-gtag.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cuys.ru/bancode.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cuys.ru/lincode.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css enesoftware.com##+js(aeld, contextmenu) en.bandainamcoent.eu##div[id="tarteaucitronAlertBig"]:remove() en.bandainamcoent.eu##div[id="tarteaucitronRoot"]:remove() improvingsoftware.com##div[id="eu-cookie-law"]:remove() improvingsoftware.com##div[class*="widget_eu_cookie_law_widget"]:remove() www.codegrepper.com##div[id^="div-gpt-ad-"]:remove() www.codegrepper.com##div[id="right_add_long"]:remove() !||d2441bdvuxbh7t.cloudfront.net/web/js/prebid6.28.0.2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d2441bdvuxbh7t.cloudfront.net/web/js/prebid*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||patterntraffic.com/lga.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||patterntraffic.com^* ||geeksforgeeks-d.openx.net^* ||media.geeksforgeeks.org/wp-content/cdn-uploads/20200308234252/GfG-Right-Top-P100.png$image ||media.geeksforgeeks.org/wp-content/post-ads-banner/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdnads.geeksforgeeks.org/gfg_ads.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdnads.geeksforgeeks.org^* www.geeksforgeeks.org###AP_G4GR_5:remove() www.geeksforgeeks.org##div[class="_ap_apex_ad"]:remove() www.geeksforgeeks.org##div[class="textBasedMannualAds"]:remove() !www.geeksforgeeks.org##div[class="cookie-consent hide-consent show-consent"]:remove() www.geeksforgeeks.org##div[class*="cookie-consent"]:remove() www.geeksforgeeks.org##div[class="OINTechPromoRightBarBanner"]:remove() www.geeksforgeeks.org##div[id^="GFG_AD_"]:remove() www.geeksforgeeks.org##div[id^=_GFG_ABP_]:remove() www.geeksforgeeks.org##div[id="adBlockerModal"]:remove() www.geeksforgeeks.org##div[id^="ad-blocker-"]:remove() www.geeksforgeeks.org##div[id="rightBarSaleBanner"]:remove() www.geeksforgeeks.org##img[alt="advertisewithusBannerImg"]:remove() www.geeksforgeeks.org##+js(aopr, adpushup) www.geeksforgeeks.org##+js(aopw, adpushup) www.geeksforgeeks.org##+js(aopr, arrPostCat) www.geeksforgeeks.org##+js(aopw, arrPostCat) www.geeksforgeeks.org##+js(aopr, s.src) www.geeksforgeeks.org##+js(aopw, s.src) www.geeksforgeeks.org##+js(remove-node-text, script, /function\(c\,l\,a\,r\,i\,t\,y\)/gm) www.geeksforgeeks.org##+js(remove-node-text, script, /var AdblockPlus\s?=\s?new function\(\)/gm) ! The following two rules won't be effective if the entire script which contains them is removed in the previous rule. www.geeksforgeeks.org##+js(trusted-replace-node-text, script, /detected\s?=\s?true;/gm, detected = false;) www.geeksforgeeks.org##+js(trusted-replace-node-text, script, /checksRemain\s?=\s?\d;/gm, checksRemain = 0;) www.geeksforgeeks.org##+js(trusted-replace-node-text, script, /isAdBlockerPresent\s?=\s?true;/gm, isAdBlockerPresent = false;) www.geeksforgeeks.org##+js(trusted-replace-node-text, script, /if\s?\(abp\)/gm, if (null)) www.geeksforgeeks.org##+js(remove-node-text, script, /adsbygoogle\s?=/gm) www.geeksforgeeks.org##+js(trusted-replace-node-text, script, /enable_page_level_ads:\s?true/gm, enable_page_level_ads: false) www.geeksforgeeks.org##+js(remove-node-text, script, /var gads\s?=\s?document\.createElement\(['"]script['"]\);/gm) www.geeksforgeeks.org##+js(set-constant, detected, false) www.geeksforgeeks.org##+js(set-constant, checksRemain, 0) www.geeksforgeeks.org##+js(set-constant, isAdBlockerPresent, false) www.geeksforgeeks.org##+js(set-constant, showAdblockerModal, noopFunc) www.geeksforgeeks.org##+js(remove-node-text, script, /\.push\(\{['"]gtm\.start['"]/gm) www.geeksforgeeks.org##+js(trusted-replace-node-text, script, /if\s?\(consentValue\)/gm, if (true)) ||aa.geeksforgeeks.org^* ||prg-apac.smartadserver.com^* ||store.steampowered.com/app/usabilitytracking/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||glizauvo.net^* ||opeukasrsihav.xyz^* ||ukfareputfea.xyz^* ||silsoaba.com^* ||goodvpnoffers.com^* ||fisx.guro2.com^* ||collector-pxu6b0qd2s.px-cdn.net^* www.aroged.com##div[class="jnews-cookie-law-policy"]:remove() www.scripts-nulled.info##aside[id="moove_gdpr_cookie_info_bar"]:remove() ninjaforms.com##div[aria-label="cookieconsent"]:remove() www.aroged.com##div[class*="ads-wrapper"]:remove() www.aroged.com##div[class^="jeg_ad"]:remove() ||zomtanup.com^* ||urgvrerk.com^* ||www.acobnnvet.com^* ||lotsooms.com^* ||bpmmqbtstmbf.com^* ||boxtvision.growth-blog.net^* ||iphone13.growth-blog.net^* ||dqcyvvsjoio.com^* ||www.bpmmqbtstmbf.com^* ||nyhauypuiuas.com^* ||pmsoofaofxgv.com^* haydenjames.io##+js(aopw, window.advanced_ads_ready) haydenjames.io##+js(aopr, window.advanced_ads_ready) haydenjames.io##+js(aopw, advadsCfpQueue) haydenjames.io##+js(aopr, advadsCfpQueue) haydenjames.io##div[id^="advads_ad_widget-"]:remove() haydenjames.io##div[data-advadstrackid]:remove() haydenjames.io##script[id="advadsTrackingScript-js-extra"]:remove() haydenjames.io##script[id="advanced-ads-pro/cache_busting-js-extra"]:remove() haydenjames.io##script[id^="advanced-ads-advanced-js"]:remove() haydenjames.io##script[id="hayden-ready"]:remove() haydenjames.io##script[id="hayden-tracking"]:remove() bytexd.com##div[class*="ezo_ad"]:remove() bytexd.com##span[class*="ezoic-ad"]:remove() bytexd.com##span[class*="adtester-container"]:remove() bytexd.com##div[class*="ezoic-ad"]:remove() bytexd.com##div[class*="adtester-container"]:remove() bytexd.com##+js(aopw, ez_ad_units) bytexd.com##+js(aopr, ez_ad_units) bytexd.com##+js(aopw, __ez) bytexd.com##+js(aopr, __ez) jabbr.net##script[id="jabbr-ready"]:remove() jabbr.net##+js(aopw, adsbygoogle) jabbr.net##+js(aopr, adsbygoogle) ||adsninja.ca/adsninja_client.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||scarfsmash.com^* ||events.release.narrativ.com/api/v0/publishers/*/impressions/page_impression/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css community.companyofheroes.com##div[id="cookies-settings"]:remove() ||hospicalada.xyz^* ||dltqxz76sim1s.cloudfront.net^* ||ig.lurefuleuryon.com^* ||dbosowwfgb.com^* tei.ai##div[class="_1e3i4 or-Gy"]:remove() tei.ai##a[href*="//tickmatureparties.com/"]:remove() tei.ai##+js(remove-attr, a.btn.btn-success.btn-lg.get-link, onclick, stay) tei.ai##+js(remove-class, a.btn.btn-success.btn-lg.get-link, disabled, stay) tei.ai##div[id^="adtrue_tag_"]:remove() tei.ai##a[href*="//r3adyt0download.com/"]:remove() tei.ai##script[id="zkmvrv"]:remove() !tei.ai##+js(adjust-setInterval, , *, 0.01) tei.ai##+js(remove-class, disabled, a, stay) tei.ai##+js(remove-class, hidden, #go-link, stay) tei.ai##+js(remove-class, hidden, #go-submit, stay) tei.ai##+js(remove-attr, disabled, #go-submit, stay) tei.ai##+js(aopw, gdprAppliesGlobally) tei.ai##+js(aopr, gdprAppliesGlobally) ||tei.ai/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tei.ai/webroot/modern_theme/img/dwndbnr1.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css newforex.online,world-trips.net##div[id="content"]:remove() newforex.online,world-trips.net##div[id="adb_detected"]:remove() newforex.online,world-trips.net##div[id="devozon-wait1"]:remove() newforex.online,world-trips.net##div[data-ad]:remove() newforex.online,world-trips.net,try2link.com##^script:has-text(/getalladblocks\(\)/):remove() newforex.online,world-trips.net,try2link.com##^script:has-text(/checkAdBlocker\(\)/):remove() newforex.online,world-trips.net,try2link.com##+js(remove-node-text, script, /getalladblocks\(\)/gm) newforex.online,world-trips.net,try2link.com##+js(remove-node-text, script, /checkAdBlocker\(\)/gm) newforex.online,world-trips.net,try2link.com##+js(abort-current-inline-script, /getalladblocks\(\)/) newforex.online,world-trips.net,try2link.com##+js(abort-current-inline-script, /checkAdBlocker\(\)/) newforex.online,world-trips.net##+js(trusted-set-constant, count, { "value": -1 }) newforex.online,world-trips.net##+js(nano-stb, counter, *, 0.01) newforex.online,world-trips.net##+js(set-constant, usingBlocker, null) newforex.online,world-trips.net##+js(remove-class, d-none, #go_d) ||try2link.com/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css try2link.com##div[id="ad-banner"]:remove() try2link.com##div[id="contentuy"]:remove() ||www.dcmgptcbcrogl.com^* ||wgokmfwsxdstskp.com^* ||mindofhippocampal.com^* ||action.metaffiliation.com^* ||get.d3b3e6340.website^* ||byilfpjcrwy.com^* ||explanationsacrifice.com^* ||hrrfciikbg.com^* ! TODO: The following rul prevents some file host downloads from working. !||copyrightcontent.org/unblocker/ub/ub.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||copyrightcontent.org/e/e.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||copyrightcontent.org/unblocker/ub/ub.js$replace=/abChecked:!1/abChecked:1/gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||zk.commovenuba.com^* cut-y.net##button[class="ab"]:remove() ||simoolkankrej.com^* yoshare.net##div[id="ignielAdBlock"]:remove() !||yoshare.net/wp-content/plugins/flying-analytics/js/minimal-analytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||yoshare.net/wp-content/plugins/flying-analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ssbsync-global.smartadserver.com^* ||cdn.aralego.net/ucfad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||prg8.smartadserver.com^* ||unibots-d.openx.net^* ||droplink.co/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||zegtrends.com/contest.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! TODO: DO NOT remove the following script or downloads won't work. !down.fast-down.com,down.mdiaload.com##script[id="ub-script"]:remove() ! Do NOT use the following rule since the real download link anchor tag uses the same classes. !down.fast-down.com,down.mdiaload.com##a[class="btn btn-dow"]:remove() down.fast-down.com,down.mdiaload.com##a[class="btn btn-dow"][href="https://down.mdiaload.com/sr9-mdiaload.html"]:remove() down.fast-down.com,down.mdiaload.com##a[title="Download"][href="https://down.mdiaload.com/free-dwnload.html"]:remove() down.fast-down.com,down.mdiaload.com##a[title="Download"][href$="//down.mdiaload.com/free-download.html"]:remove() !down.fast-down.com,down.mdiaload.com##a[class="create"][href$="//down.mdiaload.com/free-download.html"]:remove() down.fast-down.com,down.mdiaload.com##a[class="create"][href*="//down.fast-down.com/download20.htm"]:remove() down.fast-down.com,down.mdiaload.com##a[class="create"][href*="//down.fast-down.com/download30.htm"]:remove() down.fast-down.com,down.mdiaload.com##a[class="create"][href*="//down.fast-down.com/download31.htm"]:remove() down.fast-down.com,down.mdiaload.com###adblock_detected:remove-attr(value) !down.fast-down.com,down.mdiaload.com##center:remove() !down.fast-down.com,down.mdiaload.com##div[class="download-option-btn"]:remove() down.fast-down.com,down.mdiaload.com##div[class="demand-supply"]:remove() down.fast-down.com,down.mdiaload.com##div[data-ad]:remove() down.fast-down.com,down.mdiaload.com##div[id^="div-gpt-ad-"]:remove() down.fast-down.com,down.mdiaload.com##div[id="generate1"]:remove() down.fast-down.com,down.mdiaload.com##div[style^="width:336px; height:280px"]:remove() down.fast-down.com,down.mdiaload.com##div[style^="width:336px; height:296px"]:remove() down.fast-down.com,down.mdiaload.com##input[id="adblock_detected"]:remove() !down.fast-down.com,down.mdiaload.com##+js(remove-attr, disabled, .downloadbtn, stay) down.fast-down.com,down.mdiaload.com##button[class*="downloadbtn"]:remove-attr(disabled) !down.fast-down.com,down.mdiaload.com##button[class="downloadbtn btn btn-success"]:style(display: inline !important;) down.fast-down.com,down.mdiaload.com##button[class*="downloadbtn"]:style(display: inline !important;) ! TODO: rather than remove in the button in the following rule, could change its type to submit using saa scriptlet. !down.fast-down.com,down.mdiaload.com##+js(trusted-set-attr, button[class="btn btn-success"], type, submit) down.fast-down.com,down.mdiaload.com##button[class="btn btn-success"]:remove() down.fast-down.com,down.mdiaload.com##+js(trusted-set-attr, .downloadbtn, type, submit) down.fast-down.com,down.mdiaload.com##+js(acs, gtag) down.fast-down.com,down.mdiaload.com##+js(set-attr, #adblock_detected, value, 0) down.fast-down.com,down.mdiaload.com##+js(set-constant, sc_invisible, 0) down.fast-down.com,down.mdiaload.com##+js(set-constant, sc_remove_link, 0) down.fast-down.com,down.mdiaload.com##+js(remove-node-text, script, /#adblock_detected/gm) down.fast-down.com,down.mdiaload.com##:xpath(//script[contains(text(), '#adblock_detected')]):remove() down.fast-down.com,down.mdiaload.com##+js(remove-node-text, script, /\.adsbox/gm) down.fast-down.com,down.mdiaload.com##:xpath(//script[contains(text(), '.adsbox')]):remove() !down.fast-down.com,down.mdiaload.com##+js(aopw, unblockerPaymentToken) !down.fast-down.com,down.mdiaload.com##+js(aopr, unblockerPaymentToken) ||down.mdiaload.com/js/share.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||down.fast-down.com/js/share.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||down.mdiaload.com/js/ticker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||down.fast-down.com/js/ticker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css zegtrends.com##ins[class*="adCreator"]:remove() ||dexpredict.com/script/i.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dexpredict.com/ad/display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||icutlink.com/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||venisonhumridicule.com^* ||livetellsspatter.com^* ||whizduly.com^* ||stagetortoiseinfatuated.com^* ||notificationnewsspace.com^* ||notfcompreviews.com^* ||track.avotelive.com^* ||historiousmor.xyz^* ||bayfiles.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ptonnerventu.xyz^* ||policityseriod.info^* ||bayfiles.com/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css freetutsdownload.net##div[id="cookie-notice"]:remove() !freetutsdownload.net##ins[data-ad-client]:upward(1):remove() freetutsdownload.net##ins[data-ad-client]:remove() dl.freetutsdownload.net##div[id^="cookie-law-info-"]:remove() dl.freetutsdownload.net##div[id="cliSettingsPopup"]:remove() ||dl.freetutsdownload.net/wp-content/plugins/cookie-law-info/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dl.freetutsdownload.net/wp-content/plugins/wp-content-copy-protection/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dl.freetutsdownload.net/wp-content/plugins/adrotate/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css dl.freetutsdownload.net##script[id^='cookie-law-info-']:remove() dl.freetutsdownload.net##ins[data-ad-client]:remove() dl.freetutsdownload.net##aside[id^="adrotate_"]:remove() www.blackhatworld.com##+js(aopw, _avp) www.blackhatworld.com##+js(aopr, _avp) www.blackhatworld.com##div[id^="avp_zid_"]:remove() www.blackhatworld.com##ins[class*="adsbygoogle"]:remove() www.blackhatworld.com##+js(abort-current-inline-script, a.initEvent("AdBlockOn")) www.blackhatworld.com##^script:has-text(/AdBlockOn/):remove() www.blackhatworld.com##+js(remove-node-text, script, /AdBlockOn/gm) www.blackhatworld.com##li[class="notice js-notice notice--warning"]:remove() !||plausible.zinlab.com/js/plausible.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||plausible.zinlab.com^* ||eeshemto.com^* ||chekseme.net^* healthyteeth.tips##div[id="cookies"]:remove() ||0redird.com^* ||embyflex.com^* ||sheeckaz.com^* marvelcinematicuniverse.fandom.com##div[class="top-ads-container"]:remove() marvelcinematicuniverse.fandom.com##div[data-key="advertisement"]:remove() marvelcinematicuniverse.fandom.com##div[id="localNotice"]:upward(2):remove() marvelcinematicuniverse.fandom.com##+js(aopw, beacon) marvelcinematicuniverse.fandom.com##+js(aopr, beacon) ||whedauzy.com^* ||static.cdnativepush.com/contents/s/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rareghoa.net^* ||wideorganiz.xyz^* ||np.patinesgaulin.com^* ||ghableleader.xyz^* ||d2juccxzu13rax.cloudfront.net^* ||an.diritymirkish.com^* ||mr.asemskull.com^* ||www.azentace.com^* ||azentace.com^* ||kuzyvyni.pro^* ||dozugrepi.com^* ||cdn.faspox.com/app.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||p.faspox.com/dcba/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||p.faspox.com^* ||loameepu.com^* !||globalsiteanalytics.com/service/hdim$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||globalsiteanalytics.com^* !||cdn.decibelinsight.net/i/13557/67144/di.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.decibelinsight.net^* !||apkmagic.com.ar/wp-content/plugins/deblocker/js/ads.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||apkmagic.com.ar/wp-content/plugins/deblocker/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css apkmagic.com.ar##div[id="mdp-deblocker-ads"]:remove() apkmagic.com.ar##+js(set-constant, adsBlocked, falseFunc) apkmagic.com.ar##+js(set-constant, window.mdpDeBlockerDestroyer, false) apkmagic.com.ar##+js(set-constant, disableTextSelection, noopFunc) apkmagic.com.ar##+js(set-constant, disableContextMenu, noopFunc) apkmagic.com.ar##+js(set-constant, disableHotKeys, noopFunc) apkmagic.com.ar##+js(set-constant, disableDeveloperTools, noopFunc) !apkmagic.com.ar##div[class^="ghszodipctwh-"]:remove() !apkmagic.com.ar##div[class^="jewflbsovy-"]:remove() !apkmagic.com.ar##div[class^="wp-mdljzve-wihojsl-"]:remove() !apkmagic.com.ar##div[class^="wp-pzhdndiqevoj-"]:remove() apkmagic.com.ar##div[class*="-blackout active"]:remove() apkmagic.com.ar##div[class*="-modal active"]:upward(1):remove() apkmagic.com.ar##+js(aopw, app_advert) apkmagic.com.ar##+js(aopr, app_advert) !apkmagic.com.ar##+js(remove-class, ghszodipctwh-blur, body, stay) !apkmagic.com.ar##+js(remove-class, jewflbsovy-blur, body, stay) !apkmagic.com.ar##+js(remove-class, wp-mdljzve-wihojsl-blur, body, stay) !apkmagic.com.ar##+js(remove-class, wp-pzhdndiqevoj-blur, body, stay) apkmagic.com.ar##+js(aopw, zWZwPTh1e) apkmagic.com.ar##+js(aopr, zWZwPTh1e) apkmagic.com.ar##+js(set-constant, tquavhigkypwrload, true, stay) apkmagic.com.ar##+js(set-constant, zWZwPTh1e, null, stay) apkmagic.com.ar##*:style(filter: blur(0px) !important; -webkit-filter: blur(0px) !important;) book.hacktricks.xyz##a[href$="//policies.gitbook.com/privacy/cookies"]:upward(7):remove() coderslegacy.com##span[class*="ezoic-ad"]:remove() coderslegacy.com##span[class*="adtester-container"]:remove() coderslegacy.com##+js(aopw, ez_ad_units) coderslegacy.com##+js(aopr, ez_ad_units) coderslegacy.com##div[class*="ezo_ad"]:remove() www.amdrewards.com##div[id="onetrust-consent-sdk"]:remove() ||download.amd.com/js/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.kanxue.com/advertisement-request.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css legacygames.com##div[id="cmplz-cookiebanner-container"]:remove() www.codingame.com##cg-cookies-banner:remove() www.codingame.com##*[class^="cg-cookies-banner"]:remove() www.squakenet.com##div[id="COOKIE"]:remove() ||psairtoo.com^* www.paypal.com##div[class^="ccpaCookie"]:remove() www.heaven32.com##ins[data-ad-client]:remove() www.heaven32.com##div[data-ad-id]:remove() ||www.heaven32.com/download/wp-content/plugins/ads-for-wp/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.heaven32.com##script[id^="adsforwp-ads-"]:remove() toolslib.net##div[aria-label="cookieconsent"]:remove() toolslib.net##script[data-ad-client]:remove() toolslib.net##ins[data-ad-client]:remove() ||toolslib.net/assets/custom/img/placeholders/placeholder_1.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||toolslib.net/assets/custom/img/placeholders/placeholder_2.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css toolslib.net##+js(abort-on-property-write, adsbygoogle) toolslib.net##+js(abort-on-property-read, adsbygoogle) toolslib.net##div[class="custom-label"]:has(span:has-text(/Advertising/i)):remove() irdeto.com##div[id="termly-code-snippet-support"]:remove() www.whatismyip.com##+js(aopw, googletag) www.whatismyip.com##+js(aopr, googletag) !||b.totlnkbn.com/p2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||b.totlnkbn.com^* www.zerohedge.com##div[class^="AdvertisingSlot_"]:remove() www.syncfusion.com##div[id="CookieNotification"]:remove() ||cdn.syncfusion.com/scripts/albacross/track-new-v2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.w3docs.com##ins[data-ad-client]:remove() www.w3docs.com##a[class*="cta-secux"]:remove() ||gudupp.com^* stackabuse.com##div[id^="ad-snigel-"]:remove() www.gamingbible.co.uk##div[class*="dfp-ad-unit"]:remove() www.gamingbible.co.uk##div[class$="-Advert"]:remove() www.gamingbible.co.uk##div[data-cypress="sticky-ads"]:remove() ||consent.gamingbible.co.uk^* ||www.gamingbible.co.uk/assets/ads.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css abc7news.com##div[data-set="adAppend"]:remove() abc7news.com##div[class*="adRectangle-"]:remove() ||floccischlump.com^* ||peppermintos.com/koko-analytics-collect.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||peppermintos.com/wp-content/plugins/koko-analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.tradeclouddata.com^* ||griksoud.net^* ||eu.get-things-done.net^* ||eu.can-get-some.in^* ||brko.admobe.com^* ||performspeedyheavilytheproduct.vip^* ||notifmart.com^* ||search.cinema-te.net^* ||cinema-te.net^* www.chicagotribune.com##div[class*="ad_container"]:remove() !www.chicagotribune.com##div[class="top_ad_wrapper"]:remove() www.chicagotribune.com##div[class*="ad_wrapper"]:remove() www.chicagotribune.com##div[class="ad--sticky"]:remove() www.wfxrtv.com##div[class="ad-unit__content"]:remove() www.wfxrtv.com##aside[class*="ad-unit"]:remove() pix11.com##div[id^="acm-ad-tag-"]:remove() pix11.com##aside[class*="ad-unit"]:remove() pix11.com##div[class*="ad-unit__content"]:remove() ||updates-center.com^* ||temporarilyruinconsistent.com^* apkmodsapp.com##ins[data-ad-client]:remove() apkmodsapp.com##+js(aopw, adsbygoogle) apkmodsapp.com##+js(aopr, adsbygoogle) apkmodsapp.com##div[class="code-block-label"]:has-text(Advertisements):upward(1):remove() ||t.beop.io^* www.sfgate.com##div[class*="adModule"]:remove() www.sfgate.com##div[class*="b-gray300 mb32"]:has(div[id^="Inline-"]):remove() www.sfgate.com##div[id^="Inline-"]:remove() www.sfgate.com##div[class*="b-gray300 mb32"]:has(div[data-large-id^="Inline-"][data-block-type="ad"]):remove() www.sfgate.com##div[data-large-id^="Inline-"][data-block-type="ad"]:remove() www.sfgate.com##div[id="Flex1"][data-block-type="ad"]:remove() www.sfgate.com##div[id="A300"][data-block-type="ad"]:remove() www.sfgate.com##div[id="NTV7ARD"][data-block-type="ad"]:remove() www.sfgate.com##div[class="package y100 none md:block"]:has(div[id^="RB-"][data-block-type="ad"]):remove() www.sfgate.com##div[id^="RB-"][data-block-type="ad"]:remove() www.sfgate.com##iframe[id="__exco_3070"]:remove() www.sfgate.com##iframe[src^="https://cdn.ex.co/sync/"]:remove() www.sfgate.com##iframe[name]:matches-attr(name=/^__\S+Locator$/):remove() www.sfgate.com##script[id="optimera-ops"]:remove() www.sfgate.com##script[id="adPositionManagerScriptTag"]:remove() www.sfgate.com##script[id="gptScript"]:remove() www.sfgate.com##script[id="comScoreScriptTag"]:remove() www.sfgate.com##script[id="chartbeatScriptId"]:remove() ||www.sfgate.com/juiceExport/production/sfgate.com/loadAds.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !homeguides.sfgate.com##div[data-ad-unit-name]:remove() sfgate.com##div[data-ad-unit-name]:remove() ||cdn.ex.co/sync/**/cookie_sync.html?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hearstnewspapers-d.openx.net^* ||count.api.pgs.io^* ||l0-secure.videohub.tv/ssframework/log/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a-iad.1rx.io^* !||bids.concert.io/bids/prebid/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bids.concert.io^* ||getsecuritysuite.com^* ||dufai4b1ap33z.cloudfront.net^* ||ospicalad.buzz^* ||nedukeratio.lol^* ||d192r5l88wrng7.cloudfront.net^* ||core.mourny-clostheme.com^* ||restaurantbubblerub.com^* ||adsandcomputer.com^* ||delayeddisembroildisembroil.com^* ||crumbtypewriterhome.com^* ||treasureravenvulgar.com^* dl.tech-story.net##div[class^="adb"]:remove() ||dl.tech-story.net/wp-content/plugins/wp-safelink/assets/fuckadblock.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dl.tech-story.net/wp-content/plugins/qxriesmcr/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css dl.tech-story.net##script[id="mdp-deblocker-js"]:remove() dl.tech-story.net##div[class*="wp-mhrutjkzarsnqbwc-"]:remove() dl.tech-story.net##+js(set-constant, adsBlocked, falseFunc) dl.tech-story.net##+js(set-constant, window.mdpDeBlockerDestroyer, false) dl.tech-story.net##+js(set-constant, disableTextSelection, noopFunc) dl.tech-story.net##+js(set-constant, disableContextMenu, noopFunc) dl.tech-story.net##+js(set-constant, disableHotKeys, noopFunc) dl.tech-story.net##+js(set-constant, disableDeveloperTools, noopFunc) dlsite.win##div[id="cookie-pop"]:remove() !||dlsite.win/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ttf.trmobc.com^* ||outrotomr.com^* dlsite.win##input[name="ad_form_data"]:remove() dlsite.win##div[class="alert alert-danger"]:remove() dlsite.win##div[id="ad-banner"]:remove() dlsite.win##div[id="frameContainer"]:remove() dlsite.win##+js(remove-attr, disabled, #go-submit, stay) dlsite.win##+js(remove-class, hidden, #go-submit, stay) dlsite.win##+js(remove-class, hidden, #go-link, stay) dlsite.win##button[id="go-submit"]:style(display:block !important;) ||interbuzznews.com^* ||xml.ppctraffic.co^* ||apathylahuli.website^* ||oi.alfpair.com^* ||rantsundaydish.com^* ||rog4.com^* ebook3000.unblock2.site##div[id="lbxUR99472"]:remove() ebook3000.unblock2.site##div[id^="cookieConsent"]:remove() ebook3000.unblock2.site##+js(set-constant, _paq, []) ebook3000.unblock2.site##+js(aopw, _paq) ebook3000.unblock2.site##+js(aopr, _paq) !1337x.dirproxy.org##div[id^="cookieConsent"]:remove() dirproxy.biz,dirproxy.org##div[id^="cookieConsent"]:remove() dirproxy.biz,dirproxy.org##div[class="nrd-general-d-box"]:remove() releaselog.thefreeproxy.info##div[id^="cookieConsent"]:remove() ||*/app/apx14.js$domain=snahp.uproxy2.org|releaselog.thefreeproxy.info|oneproxy.org|piracyproxy.biz|piraproxy.app|piraproxy.org|123proxy.page|123proxy.app|dir-proxy.org|dirp.me|dirproxy.me|dirproxy.com|dirproxy.xyz|dirproxy.biz|dirproxy.org|filmrls.dirproxy.com|allitebooks.dirproxy.biz|booksc.dirproxy.biz|solarmovie.dirproxy.com|1337x.dirproxy.org|ebook3000.unblock2.site|torrentdownloads.unblocked2.fun|predb-org.dirp.me|predb-me.123proxy.biz|predb-me.ultraproxy.info|torrentgalaxy.ultraproxy.info|zlibrary.uproxy.club,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*/app/apx19.js$domain=snahp.uproxy2.org|releaselog.thefreeproxy.info|oneproxy.org|piracyproxy.biz|piraproxy.app|piraproxy.org|123proxy.page|123proxy.app|dir-proxy.org|dirp.me|dirproxy.me|dirproxy.com|dirproxy.xyz|dirproxy.biz|dirproxy.org|filmrls.dirproxy.com|allitebooks.dirproxy.biz|booksc.dirproxy.biz|solarmovie.dirproxy.com|1337x.dirproxy.org|ebook3000.unblock2.site|torrentdownloads.unblocked2.fun|predb-org.dirp.me|predb-me.123proxy.biz|predb-me.ultraproxy.info|torrentgalaxy.ultraproxy.info|zlibrary.uproxy.club,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*/app/x12.js$domain=snahp.uproxy2.org|releaselog.thefreeproxy.info|oneproxy.org|piracyproxy.biz|piraproxy.app|piraproxy.org|123proxy.page|123proxy.app|dir-proxy.org|dirp.me|dirproxy.me|dirproxy.com|dirproxy.xyz|dirproxy.biz|dirproxy.org|filmrls.dirproxy.com|allitebooks.dirproxy.biz|booksc.dirproxy.biz|solarmovie.dirproxy.com|1337x.dirproxy.org|ebook3000.unblock2.site|torrentdownloads.unblocked2.fun|predb-org.dirp.me|predb-me.123proxy.biz|predb-me.ultraproxy.info|torrentgalaxy.ultraproxy.info|zlibrary.uproxy.club,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*/hy.js$domain=snahp.uproxy2.org|releaselog.thefreeproxy.info|oneproxy.org|piracyproxy.biz|piraproxy.app|piraproxy.org|123proxy.page|123proxy.app|dir-proxy.org|dirp.me|dirproxy.me|dirproxy.com|dirproxy.xyz|dirproxy.biz|dirproxy.org|filmrls.dirproxy.com|allitebooks.dirproxy.biz|booksc.dirproxy.biz|solarmovie.dirproxy.com|1337x.dirproxy.org|ebook3000.unblock2.site|torrentdownloads.unblocked2.fun|predb-org.dirp.me|predb-me.123proxy.biz|predb-me.ultraproxy.info|torrentgalaxy.ultraproxy.info|zlibrary.uproxy.club,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*/zpp/zpp3.js$domain=snahp.uproxy2.org|releaselog.thefreeproxy.info|oneproxy.org|piracyproxy.biz|piraproxy.app|piraproxy.org|123proxy.page|123proxy.app|dir-proxy.org|dirp.me|dirproxy.me|dirproxy.com|dirproxy.xyz|dirproxy.biz|dirproxy.org|filmrls.dirproxy.com|allitebooks.dirproxy.biz|booksc.dirproxy.biz|solarmovie.dirproxy.com|1337x.dirproxy.org|ebook3000.unblock2.site|torrentdownloads.unblocked2.fun|predb-org.dirp.me|predb-me.123proxy.biz|predb-me.ultraproxy.info|torrentgalaxy.ultraproxy.info|zlibrary.uproxy.club,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*/zpp/zpp4.js$domain=snahp.uproxy2.org|releaselog.thefreeproxy.info|oneproxy.org|piracyproxy.biz|piraproxy.app|piraproxy.org|123proxy.page|123proxy.app|dir-proxy.org|dirp.me|dirproxy.me|dirproxy.com|dirproxy.xyz|dirproxy.biz|dirproxy.org|filmrls.dirproxy.com|allitebooks.dirproxy.biz|booksc.dirproxy.biz|solarmovie.dirproxy.com|1337x.dirproxy.org|ebook3000.unblock2.site|torrentdownloads.unblocked2.fun|predb-org.dirp.me|predb-me.123proxy.biz|predb-me.ultraproxy.info|torrentgalaxy.ultraproxy.info|zlibrary.uproxy.club,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*/helper-js/$domain=snahp.uproxy2.org|releaselog.thefreeproxy.info|oneproxy.org|piracyproxy.biz|piraproxy.app|piraproxy.org|123proxy.page|123proxy.app|dir-proxy.org|dirp.me|dirproxy.me|dirproxy.com|dirproxy.xyz|dirproxy.biz|dirproxy.org|filmrls.dirproxy.com|allitebooks.dirproxy.biz|booksc.dirproxy.biz|solarmovie.dirproxy.com|1337x.dirproxy.org|ebook3000.unblock2.site|torrentdownloads.unblocked2.fun|predb-org.dirp.me|predb-me.123proxy.biz|predb-me.ultraproxy.info|torrentgalaxy.ultraproxy.info|zlibrary.uproxy.club,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*/k9.js$domain=snahp.uproxy2.org|releaselog.thefreeproxy.info|oneproxy.org|piracyproxy.biz|piraproxy.app|piraproxy.org|123proxy.page|123proxy.app|dir-proxy.org|dirp.me|dirproxy.me|dirproxy.com|dirproxy.xyz|dirproxy.biz|dirproxy.org|filmrls.dirproxy.com|allitebooks.dirproxy.biz|booksc.dirproxy.biz|solarmovie.dirproxy.com|1337x.dirproxy.org|ebook3000.unblock2.site|torrentdownloads.unblocked2.fun|predb-org.dirp.me|predb-me.123proxy.biz|predb-me.ultraproxy.info|torrentgalaxy.ultraproxy.info|zlibrary.uproxy.club,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ln.ruelliaforgift.com^* ||rw.coninemelior.com^* ||greatvpnoffers.com^* ||katefinegan.ink/gdpr/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.pncqcqdj.com^* !phx.4everproxy.com##img[alt="4everproxy VPN"]:remove() !phx.4everproxy.com##div[id="foreverproxy-top-info"]:style(height: 0px;) !phx.4everproxy.com##div[id^="beacon_"]:remove() !4everproxy.com##div[id="foreverproxy-top-info"]:remove() !4everproxy.com##img[alt="4everproxy VPN"]:remove() !4everproxy.com##div[id="foreverproxy-top-info"]:style(height: 0px;) 4everproxy.com##div[id^="beacon_"]:remove() 4everproxy.com##div[id="foreverproxy-top-info"]:remove() ||servecontent.net/images/6071643724afa565b894d47d171636ee.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||servecontent.net/content/www/d/noah.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||servecontent.net/content/www/d/adale.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||servecontent.net/content/www/d/sala.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ja2n2u30a6rgyd.com^* asset-leaks.com##li[class*="notice--cookie"]:upward(2):remove() !||region1.google-analytics.com/g/collect$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||region1.google-analytics.com^* www.resetera.com##a[href*="//www.resetera.com/threads/ukraine-humanitarian-relief-support-efforts-thread"]:upward(4):remove() www.resetera.com##img[alt="Pride Month"]:remove() www.resetera.com##div[class="samItem"]:has(div[data-display-type="hybrid-banner"]):remove() www.resetera.com##div[class="samItem"]:has(div[class="vm-placement"]):remove() www.showmyip.com##*[class*="gdpr-cookie-notice"]:remove() !||ct.zdnet.com/clicks?t=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||li.zdnet.com/imp?s=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||apex.zdnet.com/aws/rest/v2.0/apexTarget$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bwp.zdnet.com/search$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.zdnet.com/a/fly/js/components/track-cwv-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css-rev.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.zdnet.com/a/fly/js/components/leads-tracker-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.zdnet.com/js/history.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.zdnet.com/js/omniture.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.zdnet.com/js/s_code.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.zdnet.com/service-worker.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.zdnet.com##.bidwar:remove() www.zdnet.com##.placeholder.sharethrough-top:remove() www.zdnet.com##div[class="ad-intromercial"]:remove() www.zdnet.com##div[class="intromercial"]:remove() www.zdnet.com##div[id^="intromercial-"]:remove() www.zdnet.com##div[class^="c-siteTermsBanner_"]:remove() www.zdnet.com##div[class="ad-leader-top"]:remove() www.zdnet.com##div[class="ad-mpu-middle2"]:remove() www.zdnet.com##div[data-ad]:remove() www.zdnet.com##div[id="incontent-ad-"]:remove() www.zdnet.com##script[data-script-id^="gam-ad-blocking-recovery"]:remove() www.zdnet.com##+js(aopw, window.chsn_ad_id) www.zdnet.com##+js(aopr, window.chsn_ad_id) www.zdnet.com##+js(set-constant, fireCohesionABtest, noopFunc) www.zdnet.com##+js(no-setTimeout-if, fireCohesionABtest) www.zdnet.com##+js(set-constant, signalGooglefcPresent, noopFunc) ! TODO: Always set result to true? The following rule shouldn't be necessary if checkCookiesEnable always returns true. !www.zdnet.com##+js(set-constant, result, true) www.zdnet.com##+js(set-constant, checkCookiesEnable, trueFunc) www.zdnet.com##+js(aopw, window.BidBarrel) www.zdnet.com##+js(aopr, window.BidBarrel) ! An effect of the following rule is that contents in the page are substituted with comment tags likely for anti-adblocking. !www.zdnet.com##div[class^="g-outer-spacing-bottom-large c-adDisplay_container"]:remove() ! Making these elements invisible with the following rule instead of removing them solves the substitution problem. www.zdnet.com##div[class^="g-outer-spacing-bottom-large c-adDisplay_container"]:style(display: none !important; visibility: none !important;) ! The following two rules break some images and some embedded videos on the website. !www.zdnet.com##div[class*="c-adSkyBox"]:remove() !www.zdnet.com##div[class*="c-adDisplay_container"]:remove() ||d35xxde4fgg0cx.cloudfront.net^* www.apkmirror.com##a[href*="/premium"]:upward(1):remove() sdpict.com##div[id="cookie-notice"]:remove() ||static.jubnaadserve.com^* www.apkmirror.com##*[class*="advertisement-text"]:remove() www.apkmirror.com##ins[data-ad-client]:remove() www.apkmirror.com##div[class*="apkm_outbrain_ad"]:remove() www.apkmirror.com##+js(aopw, adsbygoogle) www.apkmirror.com##+js(aopr, adsbygoogle) www.apkmirror.com##+js(aopw, tabadcode) www.apkmirror.com##+js(aopr, tabadcode) 3dfree.top##div[class="dle_b_stand-with-ukraine"]:remove() www.psdly.com##ins[data-ad-client]:upward(1):remove() www.psdly.com##div[class*="jeg_ad"]:remove() www.psdly.com##div[class*="bottom_ads"]:remove() www.psdly.com##div[class*="ads-wrapper"]:remove() ||ridgendqwa.xyz^* ||schemicalc.buzz^* ||d27genukseznht.cloudfront.net^* fileaxa.com##div[class*="ad300side"]:remove() ||nedaugha.buzz^* ||turbobut.com^* ||turbo.to^* www.collectiveray.com##span[class*="adtester-container"]:remove() www.collectiveray.com##span[class*="ezoic-ad"]:remove() www.collectiveray.com##span[id^="ezoic-pub-ad-"]:remove() www.collectiveray.com##div[class*="ezo_ad"]:remove() www.collectiveray.com##+js(aopw, ez_ad_units) www.collectiveray.com##+js(aopr, ez_ad_units) ||freecourseweb.com/wp-content/uploads/2021/11/gate.io-001.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d3p8w7to4066sy.cloudfront.net^* ||accordaudienceeducational.com^* ||diminutioneconomy.com^* ||apartslimlettuce.com^* www.newscon.net##div[id="adblock-warning"]:remove() udemyfreecourses.org##ins[data-ad-client]:remove() www.discudemy.com##section[class="card"]:has(ins[data-ad-client]):remove() www.discudemy.com##ins[data-ad-client]:remove() www.newscon.net##div[id^="Ad.Plus-"]:remove() www.newscon.net##+js(set-constant, WAITING_TIME, 0, stay) www.newscon.net##+js(aopw, countAds) www.newscon.net##+js(aopr, countAds) www.newscon.net##+js(aopw, adsTags) www.newscon.net##+js(aopr, adsTags) www.newscon.net##+js(abort-current-inline-script, checkads()) www.newscon.net##+js(remove-attr, disabled, #btnSubmit, stay) ||widaimty.com^* www.fcportables.com##div[class="adsejmdi"]:upward(1):remove() www.fcportables.com##*[class^="adblock_"]:remove() www.fcportables.com##+js(aopw, adsClasses) www.fcportables.com##+js(aopr, adsClasses) www.fcportables.com##ins[data-ad-client]:remove() ||dibsemey.com^* ||cdn.bmcdn3.com/js/source/389920305973.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.bmcdn3.com/pv/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.bmcdn3.com/js/62b9cc1457d3eaaa0c1a7546.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !gamicus.fandom.com##div[class="top-ads-container"]:remove() !gamicus.fandom.com##div[class="bottom-ads-container"]:remove() gamicus.fandom.com##div[class*="ads-container"]:remove() ||dyv1bugovvq1g.cloudfront.net^* ||baza57.ru^* ||drivetrack.ru^* ||drnord.ru^* ||am-logistik.ru^* ||logeastica.ru^* ||akb-logistic.ru^* ||logisticapro.ru^* ||24ta.ru^* ||zalog.lot-online.ru^* ||wood.lot-online.ru^* ||trade.lot-online.ru^* ||sales.lot-online.ru^* ||s.lot-online.ru^* ||reg.lot-online.ru^* ||rad.lot-online.ru^* ||rad-accounting.lot-online.ru^* ||privatization.lot-online.ru^* ||lot-online.ru^* ||lease.lot-online.ru^* ||land.lot-online.ru^* ||fish.lot-online.ru^* ||edu.lot-online.ru^* ||confiscate.lot-online.ru^* ||arrested.lot-online.ru^* ||zalog2.lot-online.ru^* ||wood2.lot-online.ru^* ||trade2.lot-online.ru^* ||rad2.lot-online.ru^* ||privatization2.lot-online.ru^* ||m1.lot-online.ru^* ||lease2.lot-online.ru^* ||land2.lot-online.ru^* ||fish2.lot-online.ru^* ||confiscate2.lot-online.ru^* ||auction2.lot-online.ru^* ||arrested2.lot-online.ru^* ||v2.torgi223.ru^* ||zakupki.eltox.ru^* ||order.eltox.ru^* ||komi.eltox.ru^* ||etp.eltox.ru^* ||eltox.ru^* ||tatenergo.gridcom-rt.ru^* ||gridcom-rt.ru^* ||lama.rb2b.ru^* ||tenderstandart.ru^* ||services.fedresurs.ru^* ||bankrot.fedresurs.ru^* ||online47.ru^* ||www.codemonkey.me.uk/php/ping_database.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tr-un.unative.com^* ||www.jscount.com/a/*/z?ref=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||data-secure.circulate.com/dapi/collect$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.legendsworld.net##+js(aopw, document.onmousedown) www.legendsworld.net##+js(aopr, document.onmousedown) !www.legendsworld.net##+js(aopw, document.onselectstart) !www.legendsworld.net##+js(aopr, document.onselectstart) www.legendsworld.net##+js(remove-attr, oncontextmenu, body) thewebdev.info##div[class*="ezo_ad"]:remove() thewebdev.info##span[class*="ezoic-ad"]:remove() thewebdev.info##span[class*="adtester-container"]:remove() thewebdev.info##span[id^="div-gpt-ad-"]:remove() thewebdev.info##+js(aopw, ez_ad_units) thewebdev.info##+js(aopr, ez_ad_units) !||accounts.google.com/gsi/log?client_id$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||accounts.google.com/gsi/log?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||accounts.google.com/cspreport$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||accounts.google.com/v3/signin/_/AccountsSignInUi/cspreport$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||accounts.google.com/_/IdpIFrameHttp/cspreport$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d2q1qtsl33ql2r.cloudfront.net^* downloadfreecourse.com##div[class="cookies-warning"]:remove() vfxdownload.net##ins[data-ad-client]:remove() vfxdownload.net##div[class*="jeg_ad"]:remove() vfxdownload.net##div[class*="jnews_article_top_ads"]:remove() vfxdownload.net##div[class="ads-wrapper"]:remove() vfxdownload.net##div[class="ads_google_ads"]:remove() vfxdownload.net##div[class^="adb"]:remove() vfxdownload.net##+js(set-constant, adBlockEnabled, false, stay) vfxdownload.net##+js(set-constant, googleAdUrl, '', stay) vfxdownload.net##+js(set-constant, count, 0, stay) ||reflectedintegrity.com^* ||animikii-ana.com/zcvisitor/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d1zw85ny9dtn37.cloudfront.net^* ||understoodreceivermisunderstand.com^* ||albeitinflame.com^* ||downloadfreecourse.com/pwa-sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.patrickmin.com##ins[data-ad-client]:remove() www.neowin.net##span[class="header-banner-advertising"]:remove() www.neowin.net##div[data-freestar-ad]:remove() www.looper.com##div[data-ad-height]:remove() www.washingtontimes.com##div[id="ad-lead"]:remove() www.washingtontimes.com##div[data-ad-settings]:remove() ||ping.seedtag.com^* ||lingamretene.com^* ||bailifftent.com^* ||c.sf-syn.com/conversion_outbound_tracker/sf$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.racked.com##div[id="privacy-options"]:remove() !||stats.hprofits.com/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stats.hprofits.com^* !||loc.nsfwadds.com/renderer/renderer.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||loc.nsfwadds.com^* ||nsfwadds.com/event?adblk=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! remove() doesn't work with :: styles wccftech.com##div[class="d-none d-md-block"]:has(div[class="bg-horizontal"])::before wccftech.com##div[class="d-none d-md-block bg-horizontal"]:remove() wccftech.com##div[class="bg-square"]:has(div[id^="div-gpt-ad-"]):remove() ! remove() doesn't work with :: styles wccftech.com##div[class="bg-square"]::before wccftech.com##div[class="bg-vertical"]:has(div[id^="div-gpt-ad-"]):remove() ! remove() doesn't work with :: styles wccftech.com##div[class="bg-vertical"]::before wccftech.com##div[class="bg-horizontal"]:has(div[id^="div-gpt-ad-"]):remove() ! remove() doesn't work with :: styles wccftech.com##div[class="bg-horizontal"]::before wccftech.com##div[id^="div-gpt-ad-"]:remove() wccftech.com##div[data-pg-ad-spot]:remove() wccftech.com##div[id="adhesive_banner"]:remove() wccftech.com##div[id="adhesive_container"]:remove() wccftech.com##div.sidebar-ad:remove() wccftech.com##div[class="content-ad"]:remove() wccftech.com##div[id="onetrust-consent-sdk"]:remove() wccftech.com##div[class*="text-ad"]:remove() wccftech.com##figure[class*="ad noskim"]:remove() wccftech.com##h2:has-text(A message from our sponsor):remove() wccftech.com##div[class="wccf_video_tag"]:has(div[class="d-none d-md-block"]):has(div[class="d-block d-md-none"]):remove() !wccftech.com##div[id="main-background"]:remove-class(div) wccftech.com##div[id^="main-background"]:remove() wccftech.com##div[id="uniconsent-config"]:remove() wccftech.com##pgs-ad:remove() ! TODO: The id's in the following four rules are specified in an in-line script, but the id's are still static. wccftech.com##div[id="yeioo0il6n"]:remove() wccftech.com##div[id="yeioo0i"]:remove() wccftech.com##div[id="xzefodcxxt"]:remove() wccftech.com##div[id="xzefodc"]:remove() wccftech.com##div[id="bizdev_middle_ad"]:remove() wccftech.com##div[id="bizdev_midcontent_ad_wrap"]:remove() ! The following rule doesn't work if the rule removing a[rel="sponsored"] is already executed. !wccftech.com##div[data-key]:has(a[rel="sponsored"]):remove() wccftech.com##div[data-key]:remove() wccftech.com##a[rel="sponsored"]:remove() wccftech.com##+js(abort-on-property-write, f.fbq) wccftech.com##+js(abort-on-property-read, f.fbq) wccftech.com##+js(aopr, pl_beacon) wccftech.com##+js(aopw, pl_beacon) wccftech.com##^script:has-text(/pl_beacon/):remove() wccftech.com##+js(remove-node-text, script, /pl_beacon/gm) wccftech.com##:xpath(//script[contains(text(), 'pl_beacon')]):remove() wccftech.com##+js(aopr, adsbygoogle) wccftech.com##+js(aopw, adsbygoogle) wccftech.com##^script:has-text(/adsbygoogle/):remove() wccftech.com##+js(remove-node-text, script, /adsbygoogle/gm) wccftech.com##:xpath(//script[contains(text(), 'adsbygoogle')]):remove() wccftech.com##+js(aopr, window._initAds) wccftech.com##+js(aopw, window._initAds) wccftech.com##^script:has-text(/window\._initAds/):remove() wccftech.com##+js(remove-node-text, script, /window\._initAds/gm) wccftech.com##:xpath(//script[contains(text(), 'window._initAds')]):remove() wccftech.com##+js(aopr, bizdev_middle_ad) wccftech.com##+js(aopw, bizdev_middle_ad) wccftech.com##^script:has-text(/bizdev_middle_ad/):remove() wccftech.com##+js(remove-node-text, script, /bizdev_middle_ad/gm) wccftech.com##:xpath(//script[contains(text(), 'bizdev_middle_ad')]):remove() ||wccftech.com/ads-beacon.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.bmcdn4.com/js/62cbd2822f4a0501732aa1d5.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.bmcdn4.com/js/source/389920305973.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.bmcdn4.com/pv/62782a24d94bf990964c5036/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adzpub.com^* ||scitechdaily.com/ezossp/https/cdn.onesignal.com/sdks/OneSignalSDK.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.onesignal.com/sdks/OneSignalSDK.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css scitechdaily.com##span[id^="ezoic-pub-ad-"]:remove() scitechdaily.com##span[class*="ezoic-ad"]:remove() scitechdaily.com##span[class*="adtester-container"]:remove() scitechdaily.com##div[class*="ezo_ad"]:remove() www.neowin.net##div[class="stickyAd"]:remove() *##div[id="cookie-notice"]:remove() ||filechan.org/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||subsectivexe.xyz^* ||filechan.org/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||myfile.is/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||myfile.is/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||share-online.is/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||share-online.is/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||megaupload.nz/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||megaupload.nz/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css usebottles.com##div[class="cookies-panel"]:remove() ||www.freshports.org/images/notbug.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.purexbox.com##div[id="onetrust-consent-sdk"]:remove() www.purexbox.com##div[data-dfp-id]:remove() ||kclykjjbkdituln.com^* ||zebumpes.net^* www.disneyplusinformer.com##div[class*="adthrive"]:remove() asia.nikkei.com##*[class^="cookie-banner"]:remove() asia.nikkei.com##div[ng-show="!terminalError"]:remove() asia.nikkei.com##div[data-o-ads-name]:remove() asia.nikkei.com##div[id="GD04_01"]:remove() asia.nikkei.com##body[id="ng-app"]:remove() asia.nikkei.com##section[class="advertorial"]:remove() ||warp.media.net/rtb/resource/adperformance.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||qsearch-a.akamaihd.net/log$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hblg.media.net/clog$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||trace.mediago.io/api/bidder/track$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||trace.mediago.io^* ||gw.geoedge.be/api/stats$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||julolecalve.website^* ||nh.eugeniecor.com^* ||d2r2yqcp8sshc6.cloudfront.net^* ||ufundentofi.xyz^* ||ertyvaluation.lol^* exey.io##div[id="adb_detected"]:remove() exey.io##^script:has-text(importFAB):remove() exey.io##+js(remove-node-text, script, /importFAB/gm) exey.io##+js(abort-on-property-read, fuckAdBlock) exey.io##+js(abort-on-property-write, fuckAdBlock) exey.io##+js(abort-on-property-read, importFAB) exey.io##+js(abort-on-property-write, importFAB) exey.io##iframe[src*="/vignerez.net/"]:remove() !||exey.io/vulaj_theme/js/vendor/popper.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||exey.io/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css exey.io##div[id^="div-gpt-ad"]:remove() exey.io##div[class="adq"]:remove() exey.io##div:style(visibility: visible !important;) !||exey.io/js/src/alert.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css exey.io##+js(nostif.js, /^/, 1000) exey.io##+js(set-constant, force_disable_adblock, 0, stay) ! remove existing cookie first exey.io##+js(remove-cookie, ab) ! TODO: need to reload page with cookie set? !exey.io##+js(set-cookie, ab, 0, /) !exey.io##+js(set-cookie, ab, 0, , reload, 1) exey.io##+js(set-cookie, ab, 0, /, reload, 1) !exey.io##+js(trusted-set-constant, document.cookie, ab=0;) exey.io##+js(trusted-set-constant, document.cookie, ab=0; path=/;) exey.io##+js(acs, disableItToContinue) exey.io##+js(set-constant, fuckAdBlock, noopFunc) exey.io##+js(set-constant, importFAB, noopFunc) exey.io##+js(acs, fuckAdBlock) exey.io##+js(acs, importFAB) sevenjournals.com##div[id="ad-left"]:remove() sevenjournals.com##div[id="banner_ad"]:remove() sevenjournals.com##div[id^="div-gpt-ad-"]:remove() ||sevenjournals.com/cdn-cgi/challenge-platform/h/g/scripts/pica.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||jscdn.greeter.me/sevenjournals.comdynamic.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||jscdn.greeter.me/sevenjournals.comhead.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||sevenjournals.com/wp-content/uploads/hupslbyj.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sevenjournals.com/wp-content/uploads/hupslbyj.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css birdurls.com##div[id="cookie-pop"]:remove() ||napsiguk.com^* ||qnaeyveutylnj.com^* ||adbit.biz^* ||www.ddrsemxv.com^* ||www.qvorcqfon.com^* ||birdurls.com/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css fc-lc.com##div[id="ignielAdBlock"]:remove() fc-lc.com##a[href*="://6jhsbdfsdf66.monster/"]:remove() ||6jhsbdfsdf66.monster^* ||www.collegiat.net/wp-content/themes/zoxpress/js/lozad.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gloolrey.com^* ||bclikeqt.com^* ||bmpolnqkgdw.com^* ||yahoo.adclixx.net^* ||owllink.net/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css owllink.net##+js(acs, decodeURIComponent) owllink.net##+js(set-constant, gdprApplies, false) owllink.net##+js(acs, gdprApplies) owllink.net##+js(aopr, gdprApplies) owllink.net##+js(aopw, gdprApplies) owllink.net##div[data-adspace-id]:remove() owllink.net##+js(acs, _0xad09) owllink.net##+js(aopr, _0xad09) owllink.net##+js(aopw, _0xad09) owllink.net##div[id="cookie-pop"]:remove() ||accedenonre.xyz^* ||cut-y.net/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||foreukandth.xyz^* cut-y.net##+js(acs, adsbygoogle) cut-y.net##+js(aopr, adsbygoogle) cut-y.net##+js(aopw, adsbygoogle) cut-y.net##+js(remove-attr, disabled, #submit-button, stay) ||egotizeoxgall.com^* ||tls-ech-experiment.cloudflareresearch.com^* ||katukaunamiss.com^* !||static.surfe.pro/js/net.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.surfe.pro^* ||cdn.hooliganmedia.com/hmads0.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d3u598arehftfk.cloudfront.net^* ||scripts.cleverwebserver.com^* ||camarondo.com^* ||markkasgrosses.com^* ||surfe.pro/net/id$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||thisiswaldo.com/js/track-impression$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hbagency.it/cdn/tcf2_cmp_hbagency.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ui.cleverwebserver.com^* ||hbagency.it/cdn/prebid_$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cmp.quantcast.com/choice/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static.smilewanted.com/js/decode_consent/decode_consent.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.smilewanted.com^* ||chingmathecia.website^* !||id.a-mx.com/sync/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||id.a-mx.com^* !||stats-dev.brid.tv/ping.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stats-dev.brid.tv^* ||cdn.thisiswaldo.com/static/js/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||track.blufpartners.com^* forex-gold.net##div[id="con_me"]:remove() forex-gold.net##*[data-ad-client]:remove() forex-gold.net##+js(set-constant, timeleft, 0, stay) forex-gold.net##+js(remove-attr, disabled, #submitBtn, stay) forex-gold.net##+js(remove-class, dnone, #con_mee, stay) try2link.com##+js(acs, adsurfebe) try2link.com##+js(aopr, adsurfebe) try2link.com##+js(aopw, adsurfebe) try2link.com###go-submit:remove-attr(disabled) try2link.com###go-submit:remove-class(hidden) try2link.com##+js(remove-class, hidden, #go-submit, stay) try2link.com##+js(remove-attr, disabled, #go-submit, stay) try2link.com##div[style="display:none;"]:style(display:inline !important;) try2link.com##+js(acs, getalladblocks) shrinke.me##div[id="imgAddDirectLink"]:remove() shrinke.me##+js(acs, adtrue_tags) shrinke.me##+js(aopr, adtrue_tags) shrinke.me##+js(aopw, adtrue_tags) shrinke.me##+js(aopr, adPos) shrinke.me##+js(aopw, adPos) shrinke.me##div[data-ad-slot]:remove() shrinke.me##div[id="cookie-pop"]:remove() !shrinke.me##+js(set-constant, e, 0, stay) !shrinke.me##+js(adjust-setInterval, function, *, 0.5) !||shrinke.me/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xf1lenewma.com^* ||cdn.unibots.in/headerbidding/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.jsdelivr.net/gh/unib0ts/unibots@latest/main/script/adScript.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.jsdelivr.net/gh/unib0ts/unibots@latest/main/script/adScriptTechmody.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css techmody.io##+js(acs, window.googletag) techmody.io##+js(aopr, window.googletag) techmody.io##+js(aopw, window.googletag) techmody.io##+js(trusted-set-constant, count, { "value": -1 }) techmody.io##+js(remove-class, disabled, #invisibleCaptchaShortlink, stay) techmody.io##+js(remove-attr, disabled, #invisibleCaptchaShortlink, stay) techmody.io##+js(acs, adBlockDetected) techmody.io##div[id="adb_detected"]:remove() techmody.io##+js(set-constant, fuckAdBlock, noopFunc) techmody.io##+js(set-constant, importFAB, noopFunc) techmody.io##+js(acs, fuckAdBlock) techmody.io##+js(aopr, fuckAdBlock) techmody.io##+js(aopw, fuckAdBlock) techmody.io##+js(acs, importFAB) techmody.io##+js(aopr, importFAB) techmody.io##+js(aopw, importFAB) ez4short.com##div[id="cookie-pop"]:remove() !||lwgadm.com/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lwgadm.com^* !||content.lwgadm.com/hop/6.22.1/prebid.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||content.lwgadm.com^* newsharsh.com##div[id="babasbmsgx"]:remove() newsharsh.com##+js(acs, lwhb) newsharsh.com##+js(aopr, lwhb) newsharsh.com##+js(aopw, lwhb) !||c.jcbsrv.com/player/ad-units.2.1.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c.jcbsrv.com/player/ad-units$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css crazyblog.in##div[id^="crazyblog_"]:remove() ||bastingestival.com^* ||wandererbashful.com^* ||dronedgentile.com^* ||arsonunemployedcask.com^* !||ser2.crazyblog.in^* !ser3.crazyblog.in##div[id="cookie-pop"]:remove() crazyblog.in##div[id="cookie-pop"]:remove() ||informaxonline.com/wp-content/plugins/wp-safelink/assets/fuckadblock.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css informaxonline.com##div[id="adb"]:remove() informaxonline.com##div[class="adb"]:remove() informaxonline.com##*[id^="cookie-law-info-"]:remove() informaxonline.com##div[id="cliSettingsPopup"]:remove() informaxonline.com##ins[data-ad-client]:remove() informaxonline.com##div[id^="div-gpt-ad-"]:remove() informaxonline.com##+js(acs, window.googletag) informaxonline.com##+js(aopr, window.googletag) informaxonline.com##+js(aopw, window.googletag) !informaxonline.com##+js(set-constant, fuckAdBlock, 0) !informaxonline.com##+js(set-constant, fuckAdBlock, noopFunc) informaxonline.com##+js(set-constant, count, 0, stay) gaminplay.com##div[id="cliSettingsPopup"]:remove() ||paypal66.notesbook.in^* ||cdn.intergient.com/ramp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||zegtrends.com/cdn-cgi/apps/head/8VXJ5Q6i8LCGfwED5evyRK8Mugw.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css zegtrends.com##ins[data-sizes-desktop]:remove() zegtrends.com##div[data-ad]:remove() ||fingerprinter-production.herokuapp.com^* icutlink.com###go-link:remove-class(hidden) icutlink.com###go-submit:remove-class(hidden) icutlink.com###go-submit:remove-attr(disabled) icutlink.com##+js(remove-class, hidden, #go-link, stay) icutlink.com##+js(remove-class, hidden, #go-submit, stay) icutlink.com##+js(remove-attr, disabled, #go-submit, stay) !mobi2c.com##div[class="adb_detected"]:remove() !mobi2c.com##div[id="content"]:remove() mobi2c.com##div[id="adb_detected"]:remove() mobi2c.com##+js(trusted-set-constant, count, { "value": -1 }) mobi2c.com##div[data-ad]:remove() mobi2c.com##+js(abort-current-inline-script, getalladblocks) mobi2c.com##+js(abort-current-inline-script, checkAdBlocker) !mobi2c.com##+js(nano-stb, counter, *, 0.01) mobi2c.com##^script:has-text(/getalladblocks\(\)/):remove() mobi2c.com##+js(remove-node-text, script, /getalladblocks\(\)/gm) mobi2c.com##^script:has-text(/checkAdBlocker\(\)/):remove() mobi2c.com##+js(remove-node-text, script, /checkAdBlocker\(\)/gm) mobi2c.com##+js(set-constant, usingBlocker, null) mobi2c.com##+js(remove-class, d-none, #go_d, stay) mobi2c.com##+js(remove-class, disabled, .submitBtn, stay) mobi2c.com##+js(remove-class, disabled, #submitBtn, stay) mobi2c.com###devozon-wait1:remove-attr(style) mobi2c.com##.content:remove-attr(style) mobi2c.com##div[id="devozon-wait1"]:style(display: none;) mobi2c.com##div[id="devozon-snp"]:style(display: block;) ||jounaque.com^* ||log.ncaudienceexchange.com^* clk.asia##div[id="cookie-pop"]:remove() ||clk.asia/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bringsconserve.com^* ||starkshrewd.com^* ||clk.asia/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||semiglorifyseek.com^* ||track.wargaming-aff.com^* ||lyjegushe.pro^* ||p.clk.asia/clkadtrue.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d13k7prax1yi04.cloudfront.net^* tlin.me##+js(acs, adsurfebe) tlin.me##+js(aopr, adsurfebe) tlin.me##+js(aopw, adsurfebe) tlin.me##+js(acs, ad_idzone) tlin.me##+js(aopr, ad_idzone) tlin.me##+js(aopw, ad_idzone) tlin.me##+js(acs, AdProvider) tlin.me##+js(aopr, AdProvider) tlin.me##ins[class="adsbyexoclick"]:remove() tlin.me##+js(acs, fromCharCode) tlin.me##+js(acs, _0x3e66) tlin.me##+js(aopr, _0x3e66) tlin.me##+js(aopw, _0x3e66) tlin.me##div[id="cookie-pop"]:remove() tlin.me##a[href*="://taghaugh.com/"]:remove() tlin.me##a[href*="://mauchopt.net/"]:remove() ||toenailtrishaw.com^* ||srt.am/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.ecybnxxpeq.com^* ||ecybnxxpeq.com^* ||pl15095977.bestcpmnetwork.com^* ||www.yctamonieomgb.com^* ||yctamonieomgb.com^* ||visors-airminal.com^* ||pertfair.com^* ||www.yasmwesikz.com^* ||z.cdn.ftd.agency^* !||www.cdn4ads.com/rot.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.cdn4ads.com^* ||pierremarkeraffliction.com^* ||pathosacetals.com^* ||arbourrenewal.com^* ||www.ucbnxsmgdf.com^* ||www.zifjgjddpy.com^* ||cdn.ftd.agency/libs/e.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css 7apple.net##div[id="tvzxwme-blanket"]:remove() ||7apple.net/wp-content/plugins/wp-safelink/assets/fuckadblock.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css 7apple.net##+js(set-constant, count, 0 ,stay) 7apple.net##div[id="adb"]:remove() 7apple.net##script[id="adunblocker-js-extra"]:remove() illink.net##div[id="cookie-pop"]:remove() ||gceqihdij.com^* ||www.zaomavzcoww.com^* ||www.uyechyymr.com^* ||clik.pw/js/ga.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||aghtag.tech^* ||okayarab.com^* ||xml.bidderads.com^* ||dingholog.com^* ||xml.blueparrot.media^* ||xml.rtbfactory.com^* ||xml.serving-pass.com^* stores.filmyzilla-in.xyz##div[id="Arpian-ads"]:remove() ||dz4ad.com/display/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dz4ad.com/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css deportealdia.live##h3[id="adb-enabled"]:remove() ||rreqljiklad.com^* ||static.adbull.me^* ||boudutoo.net^* ||apps.elfsight.com^* ||static.elfsight.com^* ||themeillogical.com^* deportealdia.live##+js(remove-attr, onClick, .btn-main.get-link, stay) deportealdia.live##+js(acs, document.oncontextmenu) deportealdia.live##+js(aopr, document.oncontextmenu) deportealdia.live##+js(aopw, document.oncontextmenu) deportealdia.live##+js(set-constant, window.adblockDetector, 0, stay) noweconomy.live##ins[data-ad-client]:remove() noweconomy.live##+js(aopr, adsbygoogle) noweconomy.live##+js(aopw, adsbygoogle) noweconomy.live##+js(remove-attr, onClick, .btn-main.get-link, stay) noweconomy.live##+js(acs, document.oncontextmenu) noweconomy.live##+js(aopr, document.oncontextmenu) noweconomy.live##+js(aopw, document.oncontextmenu) noweconomy.live##+js(set-constant, window.adblockDetector, 0, stay) ||www.wteicogfeyhjk.com^* ||www.prbtqjujwzwepv.com^* aylink.co##a[href*="://sht.ms/aff.php"]:remove() ||tr.link/webroot/img/imgpsh_fullsize_anim.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||kiiw.icu/mysw.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||webanalysis.dev/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css atrrscoursecatalog.org##div[id="cmplz-cookiebanner-container"]:remove() ||osspalkiaom.com^* ||psaudous.com^* kiiw.icu##+js(set-constant, navigator.webdriver, false, stay) kiiw.icu##+js(acs, navigator.webdriver) kiiw.icu##+js(aopr, navigator.webdriver) kiiw.icu##+js(aopw, navigator.webdriver) ||kiiw.icu/advertising/rd.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css kiiw.icu##+js(set-constant, checkAdBlocker, noopFunc) kiiw.icu##+js(acs, checkAdBlocker) ||eblaqebixinq.top^* kiiw.icu##+js(acs, _0xf62sadc) kiiw.icu##+js(aopr, _0xf62sadc) kiiw.icu##+js(aopw, _0xf62sadc) kiiw.icu##+js(acs, osspalkiaom.com) kiiw.icu##^script:has-text(osspalkiaom.com):remove() kiiw.icu##+js(remove-node-text, script, /osspalkiaom\.com/gm) birdurls.com###body > div.container > div > div > script:nth-child(5):remove() birdurls.com##div[class="alert alert-danger"]:remove() birdurls.com##+js(acs, b13f67b4741a3b743cd66cf5acfa61b2) birdurls.com##+js(aopr, b13f67b4741a3b743cd66cf5acfa61b2) birdurls.com##+js(aopw, b13f67b4741a3b743cd66cf5acfa61b2) birdurls.com##+js(acs, blocker) birdurls.com##^script:has-text(blocker):remove() birdurls.com##+js(remove-node-text, script, /blocker/gm) !birdurls.com##+js(no-setTimeout-if, checkAdblockUser, 1000) !birdurls.com##+js(no-setTimeout-if, /checkAdblockUser\(\)/, 1000) birdurls.com##+js(no-setTimeout-if, /^/, 1000) ||noxiousrecklesssuspected.com^* ||deceittoured.com^* ||rivnstjjaut.com^* birdurls.com##+js(adjust-setInterval, , *, 0.01) sevenjournals.com##+js(adjust-setInterval, , *, 0.01) owllink.net##+js(adjust-setInterval, , *, 0.01) makemoneywithurl.com##+js(adjust-setInterval, , *, 0.01) makemoneywithurl.com###next:remove-class(hidden) ||immisurns.com^* freeudemycourse.com##+js(adjust-setInterval, , *, 0.01) freeudemycourse.com##+js(aopr, adsbygoogle) freeudemycourse.com##+js(aopw, adsbygoogle) freeudemycourse.com##+js(aopr, lkWKN57e) freeudemycourse.com##+js(aopw, lkWKN57e) freeudemycourse.com##*[id^="mdp-deblocker-"]:remove() freeudemycourse.com##+js(set-constant, adsBlocked, falseFunc) freeudemycourse.com##+js(set-constant, window.mdpDeBlockerDestroyer, false) freeudemycourse.com##+js(set-constant, disableTextSelection, noopFunc) freeudemycourse.com##+js(set-constant, disableContextMenu, noopFunc) freeudemycourse.com##+js(set-constant, disableHotKeys, noopFunc) freeudemycourse.com##+js(set-constant, disableDeveloperTools, noopFunc) freeudemycourse.com##div[class^="wp-"][class*="-modal"]:remove() freeudemycourse.com##div[class^="wp-"][class*="-wrapper"]:remove() freeudemycourse.com##div[class^="wp-"][class*="-blackout"]:remove() freeudemycourse.com##ins[data-ad-client]:remove() freeudemycourse.com##*:style(filter: blur(0px) !important; -webkit-filter: blur(0px) !important;) !||d3t3bxixsojwre.cloudfront.net^* ||dby7kx9z9yzse.cloudfront.net^* courses99.com##+js(adjust-setInterval, , *, 0.01) courses99.com##div[id^="ezoic-pub-ad-placeholder-"]:remove() courses99.com##div[id="mdp-deblocker-ads"]:remove() courses99.com##+js(set-constant, adsBlocked, falseFunc) courses99.com##+js(set-constant, window.mdpDeBlockerDestroyer, false) courses99.com##+js(set-constant, disableTextSelection, noopFunc) courses99.com##+js(set-constant, disableContextMenu, noopFunc) courses99.com##+js(set-constant, disableHotKeys, noopFunc) courses99.com##+js(set-constant, disableDeveloperTools, noopFunc) courses99.com##+js(set-constant, second, 0, stay) courses99.com##+js(set-constant, adsbygoogle. []) courses99.com##+js(acs, adsbygoogle) courses99.com##+js(aopr, adsbygoogle) courses99.com##+js(aopw, adsbygoogle) !||courses99.com/wp-json/wp-statistics/v2/hit?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||courses99.com/wp-json/wp-statistics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !www.guidingtech.com##div[id^="AdThrive_Content_"]:remove() !www.guidingtech.com##div[id^="AdThrive_Sidebar_"]:remove() www.guidingtech.com##div[class^="at"]:has(div[id^="AdThrive_"]):remove() www.guidingtech.com##div[id^="AdThrive_"]:remove() www.guidingtech.com##ins[data-ad-layout]:upward(1):remove() www.softwaretesttips.com##div[class="adthrive"]:remove() www.softwaretesttips.com##div[id^="AdThrive_"]:remove() doj.me##div[class*="cookie-consent"]:remove() www.wdrb.com##div[id^="ad-"]:remove() www.wdrb.com##div[class*="tnt-ads"]:remove() www.wdrb.com##div[class="csadholder"]:remove() yougame.biz##li[data-notice-id]:upward(2):remove() getmodsapk.com##div[class*="NR-Ads"]:remove() getmodsapk.com##ins[data-ad-client]:remove() ||vouruwou.com^* www.wysiwygwebbuilder.com##div[aria-label="cookieconsent"]:remove() sindenlightgun.miraheze.org##[class^="mw-cookiewarning-"]:upward(1):remove() www.destructoid.com##.eg-ad:remove() www.game-designers.net##ins[data-ad-client]:remove() mobillegends.net##div[class*="cookiealert"]:remove() mobillegends.net##ins[data-ad-client]:remove() fandom.com##div[class="top-ads-container"]:remove() fandom.com##div[class*="ad-slot"]:remove() fandom.com##+js(aopr, ads) fandom.com##+js(aopw, ads) fandom.com##div[data-key="advertisement"]:remove() fandom.com##+js(aopr, window.ads.consentQueue) fandom.com##+js(aopw, window.ads.consentQueue) archive.org##header[id="donate_banner"]:remove() www.wthr.com##div[data-module="ad"]:remove() www.wthr.com##div[data-module-sizer="ad"]:remove() ||jubsaugn.com^* ||bauwezou.net^* ||lassampy.com^* www.mtbs3d.com##div[aria-label="cookieconsent"]:remove() napkforpc.com##ins[data-ad-client]:remove() ||matkir.ml^* worlduploads.com##div[id="gdpr-cookie-notice"]:remove() www.freecoursessites.com##ins[data-ad-client]:remove() ||offer.advotionhot.com^* ||pl16560067.highperformancegate.com^* ||www.effectivecreativeformats.com^* ||successfulpatience.com^* ||possessionaddictedflight.com^* !||shorturl.unityassets4free.com/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !shorturl.unityassets4free.com##+js(adjust-setInterval, , *, 0.01) shorturl.unityassets4free.com##+js(remove-class, hidden, #go-submit, stay) shorturl.unityassets4free.com##+js(remove-attr, disabled, #go-submit, stay) shorturl.unityassets4free.com##+js(remove-class, hidden, #go-popup, stay) shorturl.unityassets4free.com##input[name="pop_ad"]:remove() shorturl.unityassets4free.com##+js(remove-class, disabled, .get-link, stay) shorturl.unityassets4free.com##+js(remove-class, hidden, #go-link, stay) ! TODO: ^script doesn't work with attributes since checked before DOM created? www.forocable.com##script[data-ad-client]:remove() programs.online##div[class="cookie-notice"]:remove() ||www.vrtlsummit.com^* ||system-notify.app/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pl16556670.highperformancegate.com^* ||soflopxl.com^* !||paper.ostrichesica.com/tracker/tc_imp.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||paper.ostrichesica.com/tracker/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css freecoursesites.com##div[id^="mdp-deblocker"]:remove() freecoursesites.com##div[class*="-blackout"]:remove() freecoursesites.com##div[class*="-wrapper"]:remove() freecoursesites.com##ins[data-ad-client]:remove() freecoursesites.com##script[data-ad-client]:remove() freecoursesites.com##div[class*="herald_adsense_"]:remove() freecoursesites.com##+js(set-constant, adsBlocked, falseFunc) freecoursesites.com##+js(set-constant, window.mdpDeBlockerDestroyer, false) freecoursesites.com##+js(set-constant, disableTextSelection, noopFunc) freecoursesites.com##+js(set-constant, disableContextMenu, noopFunc) freecoursesites.com##+js(set-constant, disableHotKeys, noopFunc) freecoursesites.com##+js(set-constant, disableDeveloperTools, noopFunc) freecoursesites.com##+js(aopr, window.OneSignal) freecoursesites.com##+js(aopw, window.OneSignal) ||freecoursesites.com/wp-content/cache/minify/e66a8.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !freecoursesites.com##+js(remove-class, ebjcvuifjsgz-blur, body, stay) freecoursesites.com##*:style(filter: blur(0px) !important; -webkit-filter: blur(0px) !important;) www.freetutorialseu.com##ins[data-ad-client]:remove() ||stylishblock.com^* ||glaivoun.net^* ||bad-shop.net^* ||bestcarent.org^* ||core-update.com^* ||datanalytic.org^* ||expertglobal.org^* ||only-music.net^* ||popsonglist.com^* ||querylight.net^* ||smartstand.org^* ||webs-update.com^* lorebeam.com##ins[data-ad-client]:remove() ||chedstimaarr.pics^* ||anresultanc.xyz^* ||1337x.proxybit.cfd/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||esmystem.com^* ||www.ksdlzcmvmj.com^* ||ksdlzcmvmj.com^* ||d3vw4uehoh23hx.cloudfront.net^* ||www.yajlpetccbodq.com^* ||yajlpetccbodq.com^* ||1337x.proxybit.cfd/cdn-cgi/apps/head/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||spotpromocode.com^* livsavr.co##+js(acs, anonymous) livsavr.co##+js(aopr, window.location.hash) livsavr.co##+js(aopw, window.location.hash) livsavr.co##+js(aopr, window.googletag) livsavr.co##+js(aopw, window.googletag) livsavr.co##div[id^="div-gpt-ad-"]:remove() ||survrhostngs.xyz^* myshrinker.com##a[id="8747245"]:remove() myshrinker.com##a[id="47718133"]:remove() myshrinker.com##+js(aopr, adUnitName) myshrinker.com##+js(aopw, adUnitName) myshrinker.com##+js(aopr, _ezaq) myshrinker.com##+js(aopw, _ezaq) ||platform.foremedia.net/getcode/23268/analytics$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fostereminent.com^* ||spatterjointposition.com^* ||widezealconstant.com^* ||platitudezeal.com^* ||worrycrevicewholly.com^* ||ascensionpatterbearable.com^* ||hosteagle.club/analytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hosteagle.club/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hosteagle.club/script/suv4.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||hosteagle.club/__cpa.sw.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||clickio.mgr.consensu.org/t/consent_221323.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||clickio.mgr.consensu.org^* theitbros.com##div[data-ad-slot]:remove() theitbros.com##div[class="vi-sticky-ad"]:remove() ||www.antiadblocksystems.com/vjs-video.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nullpk.com/wp-content/plugins/floating-ads-bottom/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css mediafile.cc##div[class*="cookiealert"]:remove() mediafile.cc##+js(adjust-setInterval, display, *, 0.01) !mediafile.cc##+js(adjust-setInterval, /display\(\)/, *, 0.01) !mediafile.cc##+js(set-constant, seconds, 0) !mediafile.cc##+js(set-constant, started, true, stay) ||mediafile.cc/themes/spirit/assets/frontend/js/cookiealert.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mediafile.cc/themes/spirit/assets/frontend/js/countdown.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tr.bongtooch.com^* ||antiadblocksystems.com/Kgr.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d3cod80thn7qnd.cloudfront.net^* ||slipheirphysician.com^* ||nullpk.com/wp-content/cache/min/1/js/1805.017-3.025/ice.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css nullpk.com##+js(acs, decodeURIComponent) nullpk.com##+js(acs, eval) nullpk.com##+js(aopr, adsbygoogle) nullpk.com##+js(aopw, adsbygoogle) www.gametop.com##div[id="adsModal"]:remove() www.gametop.com##div[id="cookieWindow"]:remove() www.gametop.com##+js(aopr, adsbygoogle) www.gametop.com##+js(aopw, adsbygoogle) www.gametop.com##+js(acs, showAntiAdsBanner) ||tor4.pirat.bz/styles/default/xenforo/banners/free_banner/1.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.nawyhinu.pro^* ||fujonusy.com^* ||tutflix.org/js/ZgPbQzk7/side-ads-jop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tutflix.org/js/ZgPbQzk7/BrrErbpk2AZkSU.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tutflix.org/service_worker.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css tutflix.org##+js(adjust-setInterval, , *, 0.01) tutflix.org##div[id="banner_ad"]:remove() tutflix.org##+js(acs, text_ad) tutflix.org##+js(acs, wutime-adblocktracker) tutflix.org##+js(acs, eval) tutflix.org##+js(noeval) tutflix.org##+js(aopr, adsbygoogle) tutflix.org##+js(aopw, adsbygoogle) tutflix.org##ins[data-ad-client]:remove() ||tutflix.org/js/wutime_adblocktracker/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tutflix.org/wutime-adblocktracker/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css share.tutflix.org##div[class="ad-container"]:remove() tutflix.org##div[class="fa-2x"]:has-text(AdBlock Detected):upward(2):remove() ||sohrabii.com^* ||grirault.net^* learn.unity.com##div[class="backdrop_1t7ADNYQ"]:remove() !learn.unity.com##div[class^="modal_"]:has(div[class^="container-title_"]:has-text(Sorry, this learning content is no longer available.)):remove() learn.unity.com##div[class^="container-title_"]:has-text(Sorry, this learning content is no longer available.):upward(7):remove() ||opsaupsa.com^* !||serving.stat-rock.com/v1/log/js/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||serving.stat-rock.com^* !||cdn.ad.plus/player/adplus.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.ad.plus^* mobilereview.info##+js(adjust-setInterval, , *, 0.01) mobilereview.info##+js(aopr, window.googletag) mobilereview.info##+js(aopw, window.googletag) puggygaming.com##+js(adjust-setInterval, , *, 0.01) link2end.com##div[id="cookie-pop"]:remove() !||raw.githubusercontent.com/expertad/hidecode/master/hidepub.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||raw.githubusercontent.com/expertad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||code.advertus.net/main.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||code.advertus.net^* !||beycoin.xyz/bits-ads.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||beycoin.xyz^* ||ww1.dilruwha.net^* ||quiziizz.github.io/cdnjs.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css test.madshiba.fun##+js(remove-attr, disabled, #wait, stay) test.madshiba.fun##+js(set-constant, TestAd, null) test.madshiba.fun##+js(aopr, TestAd) test.madshiba.fun##+js(aopw, TestAd) test.madshiba.fun##script[onerror]:remove() test.madshiba.fun##+js(remove-attr, onerror, script[onerror], stay) test.madshiba.fun##+js(aopr, uuid) test.madshiba.fun##+js(aopw, uuid) test.madshiba.fun##+js(acs, document.write) test.madshiba.fun##^script:has-text(document.write):remove() test.madshiba.fun##+js(acs, adsBlocked) !play.unity.com##div[class*="link_onetrust_settings"]:remove() ||kamak-mab.com^* techlivo.com##div[class="sweet-overlay"]:remove() techlivo.com##div[class^="SoumyaHelp-Ads"]:remove() techlivo.com##ins[data-ad-client]:remove() techlivo.com##div[class="code-block-label"]:has-text(Advertisements):remove() techlivo.com##h2:has-text(Adblocker Detected):upward(3):remove() techlivo.com##+js(aopr, adsbygoogle) techlivo.com##+js(aopw, adsbygoogle) techlivo.com##script[src^="data:text/javascript;base64,"]:remove() !techlivo.com$script,1p ||techlivo.com/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||techlivo.com/wp-content/litespeed/js/eda7f087c666fba13a9546a007488a76.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css raabta.net##div[id="tie-popup-adblock"]:remove() raabta.net##html:style(overflow: scroll !important; overflow-y: scroll !important;) raabta.net##*:style(filter: blur(0px) !important; -webkit-filter: blur(0px) !important;) raabta.net##script[id^="google_gtagjs-js"]:remove() raabta.net##ins[data-ad-client]:remove() raabta.net##+js(aopr, adsbygoogle) raabta.net##+js(aopw, adsbygoogle) raabta.net##+js(aopr, smoGDPR) raabta.net##+js(aopw, smoGDPR) ||gwrtheyrn-rot.com^* www.udemyfreebies.com##ins[data-ad-client]:remove() www.udemyfreebies.com##+js(aopr, adsbygoogle) www.udemyfreebies.com##+js(aopw, adsbygoogle) paidcoursesforfree.com##ins[data-ad-client]:remove() paidcoursesforfree.com##div[class*="better-ads-listitemad"]:remove() freecourseudemy.com##ins[data-ad-client]:upward(1):remove() coursesdaddy.com##div[class^="chp_ads_block"]:remove() ||coursesdaddy.com/wp-content/plugins/chp-ads-block-detector/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css download.coursesdaddy.com##ins[data-ad-client]:remove() download.coursesdaddy.com##+js(set-constant, count, 0, stay) download.coursesdaddy.com##+js(aopr, adsbygoogle) download.coursesdaddy.com##+js(aopw, adsbygoogle) download.coursesdaddy.com##+js(set-constant, checkAdBlocker, noopFunc) download.coursesdaddy.com##+js(acs, checkAdBlocker) ||download.coursesdaddy.com/themes/cleanex/assets/js/main.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.terabox.com##ins[data-ad-client]:remove() www.terabox.com##div[class="drainage"]:remove() www.terabox.com##div[id="ad-box"]:upward(1):remove() sharemygame.com##div[class*="cookie-notice"]:remove() www.dideo.ir##div[class^="youtube-terms-banner"]:remove() ||disrespectpreceding.com^* hotpot.ai##div[id="cookieOverlay"]:remove() course-downloader.com##+js(aopw, adsbygoogle) course-downloader.com##+js(aopr, adsbygoogle) course-downloader.com##+js(set-constant, count, 0, stay) course-downloader.com##div[id="modal_blocker"]:remove() !course-downloader.com##div[id="gdpr-cookie-message"]:remove() course-downloader.com##div[id^="gdpr-cookie-"]:remove() course-downloader.com##div[class="modal-backdrop show"]:remove() course-downloader.com##ins[data-ad-client]:remove() course-downloader.com##body:style(overflow: scroll !important;) downloadtutorials.net##div[class$="-blackout active"]:remove() downloadtutorials.net##+js(set-constant, adsBlocked, falseFunc) downloadtutorials.net##+js(set-constant, window.mdpDeBlockerDestroyer, false) downloadtutorials.net##+js(set-constant, disableTextSelection, noopFunc) downloadtutorials.net##+js(set-constant, disableContextMenu, noopFunc) downloadtutorials.net##+js(set-constant, disableHotKeys, noopFunc) downloadtutorials.net##+js(set-constant, disableDeveloperTools, noopFunc) downloadtutorials.net##+js(aopr, window.mdpDeBlockerDestroyer) downloadtutorials.net##+js(aopw, window.mdpDeBlockerDestroyer) downloadtutorials.net##+js(aopr, mdpDeBlocker) downloadtutorials.net##+js(aopw, mdpDeBlocker) ||downloadtutorials.net/wp-content/plugins/better-adsmanager/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css downloadtutorials.net##ins[data-ad-client]:remove() downloadfreecourse.com##+js(adjust-setInterval, , *, 0.01) solidfile.net##div[class$="-blackout active"]:remove() solidfile.net##+js(set-constant, adsBlocked, falseFunc) solidfile.net##+js(set-constant, window.mdpDeBlockerDestroyer, false) solidfile.net##+js(set-constant, disableTextSelection, noopFunc) solidfile.net##+js(set-constant, disableContextMenu, noopFunc) solidfile.net##+js(set-constant, disableHotKeys, noopFunc) solidfile.net##+js(set-constant, disableDeveloperTools, noopFunc) solidfile.net##+js(aopr, window.mdpDeBlockerDestroyer) solidfile.net##+js(aopw, window.mdpDeBlockerDestroyer) solidfile.net##+js(aopr, mdpDeBlocker) solidfile.net##+js(aopw, mdpDeBlocker) solidfile.net##+js(acs, preventDefault) ||solidfile.net/js/advertisement.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css solidfile.net##div[id="adblockinfo"]:remove() solidfile.net##+js(aopr, keys) solidfile.net##+js(aopw, keys) solidfile.net##+js(set-constant, mdpUnGrabber, {}) solidfile.net##+js(aopr, mdpUnGrabber) solidfile.net##+js(aopw, mdpUnGrabber) solidfile.net##+js(set-constant, UnGrabber, noopFunc) solidfile.net##+js(aopr, UnGrabber) solidfile.net##+js(aopw, UnGrabber) universalfreecourse.com##div[class="cookies-warning"]:remove() universalfreecourse.com##div[id="modal_blocker"]:remove() universalfreecourse.com##ins[data-ad-client]:remove() universalfreecourse.com##+js(aopr, adsbygoogle) universalfreecourse.com##+js(aopw, adsbygoogle) universalfreecourse.com##div[class="modal-backdrop fade in"]:remove() socialprofiletools.com##div[class="cookies-warning"]:remove() socialprofiletools.com##div[id="modal_blocker"]:remove() socialprofiletools.com##ins[data-ad-client]:remove() socialprofiletools.com##+js(aopr, adsbygoogle) socialprofiletools.com##+js(aopw, adsbygoogle) downloadfreecourse.com##div[id="consent"]:remove() socialprofiletools.com##div[class="modal-backdrop fade in"]:remove() www.real.discount##ins[data-ad-client]:remove() www.real.discount##ins[id^="aswift_"]:remove() www.real.discount##+js(aopr, adsbygoogle) www.real.discount##+js(aopw, adsbygoogle) www.real.discount##div[id="google-center-div"]:remove() couponscorpion.com##*[class*="ezo_ad"]:remove() couponscorpion.com##*[class*="ezoic-ad"]:remove() couponscorpion.com##*[class*="adtester-container"]:remove() couponscorpion.com##*[class*="ezmob-footer"]:remove() couponscorpion.com##+js(aopr, ez_ad_units) couponscorpion.com##+js(aopw, ez_ad_units) ||couponscorpion.com/ezossp/https/cdn.onesignal.com/sdks/OneSignalSDK.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.teachinguide.com##div[class*="Cookie--"]:remove() !||www.dwin2.com/pub.330563.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.dwin2.com/init.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.dwin2.com^* ||lfelixstown.xyz^* apkses.com##section[id^="apk-post-ad"]:remove() apkses.com##div[class*="adace-"]:remove() eiblogs.com##ins[data-ad-client]:upward(1):remove() ||dnn4px252i5wx.cloudfront.net^* ||eavailandb.asia^* coursecatalog.us##+js(remove-attr, data-adblockkey, html) ||coursecatalog.us/sk-logabpstatus.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css coursecatalog.us##+js(acs, handleABPDetect) coursecatalog.us##+js(aopr, abperurl) coursecatalog.us##+js(aopw, abperurl) coursecatalog.us##+js(aopr, handleABPDetect) coursecatalog.us##+js(aopw, handleABPDetect) www.benzinga.com##div[class^="GoogleAd"]:remove() www.benzinga.com##div[class="adunitContainer"]:remove() www.benzinga.com##div[class="adBox"]:remove() !money.howstuffworks.com##div[id^="ad-wrap-"]:remove() howstuffworks.com##div[id^="ad-wrap-"]:remove() howstuffworks.com##div[id^="ad-div-"]:remove() howstuffworks.com##div[class*="ad-container"]:remove() howstuffworks.com##div[id*="ad-fill"]:remove() !howstuffworks.com##div[data-track-gtm]:remove() howstuffworks.com##p[class^="ad-disclaimer"]:remove() ||api.trueaudience.io/pagestats/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s.flocdn.com/@s1/taps/page_statistics_script/taps.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s.flocdn.com/@s1/taps/page_statistics_script/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d1bk6lwzdwelz0.cloudfront.net^* howstuffworks.com##+js(set-constant, userData.adsActive, false, stay) howstuffworks.com##+js(aopr, dfpSettings.ads) howstuffworks.com##+js(aopw, dfpSettings.ads) howstuffworks.com##+js(aopr, railAdLastTemplate) howstuffworks.com##+js(aopw, railAdLastTemplate) ||s.flocdn.com/@s1/ads-coordinator/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn-assets.hswstatic.com/lite/2772/js/ads.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||update.bokts.com^* ||cmp-cdn.cookielaw.org^* ||us-central1-amp-error-reporting.cloudfunctions.net^* !||cdn.trackjs.com/agent/v3/latest/t.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css adshnk.com##+js(aopr, window._qevents) adshnk.com##+js(aopw, window._qevents) unityfreaks.com##div[id*="ScriptRootC"]:remove() !unityfreaks.com##.loadingoverlay:remove() !||unityfreaks.com/js/loadingoverlay.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||unityfreaks.com/gfx/nopic.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css unityfreaks.com##ins[data-ad-client]:remove() unityfreaks.com##div[data-google-av-adk]:remove() url.getunityassetsfree.com##div[class="adboxxx"]:remove() url.getunityassetsfree.com##+js(remove-class, disabled, #go-button, stay) ||tnpads.xyz^* ||bestmobilenew.com^* 80.lv##a[href="/privacy-policy/?section=cookies"]:upward(6):remove() ||app.hitfile.net/js/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.eduonix.com##div[id="coockieGDPR"]:remove() www.elevenforum.com##li[class*="notice--cookie"]:remove() www.elevenforum.com##div[class*="gads"]:has(ins[data-ad-client]):remove() www.elevenforum.com##div[class*="gads"] > div[data-fuse]:upward(1):remove() www.elevenforum.com##div[class="block-container"] > div[data-fuse]:upward(1):remove() www.elevenforum.com##div[class="gads block-container"]:remove() www.elevenforum.com##ins[data-ad-client]:remove() www.elevenforum.com##+js(aopr, adsbygoogle) www.elevenforum.com##+js(aopw, adsbygoogle) www.digitalspy.com##+js(set-constant, HRST.adConfig, {}, complete) www.digitalspy.com##+js(set-constant, window.SELF_HOSTED_ADS, false, stay) www.digitalspy.com##div[class^="oop-ad "]:remove() www.digitalspy.com##div[class^="ad-container"]:remove() www.digitalspy.com##div[class^="leaderboard-ad"]:remove() www.digitalspy.com##div[class*="breaker-ad"]:remove() freenulledworld.com##div[class="cookies-warning"]:remove() freenulledworld.com##div[id="modal_blocker"]:remove() freenulledworld.com##ins[data-ad-client]:remove() www.darktide.live##*[data-hook^="consent-banner-"]:remove() rutracker.net##a[href="info.php?show=advert"]:remove() rutracker.net##a[href="https://kwork.ru"]:remove() ||jy.olpfeere.com^* ||hw.wgrents.com^* ||curacaohaloing.website^* ||rf.shroffmere.com^* ||metrics.beyondwords.io^* ||replacementportugueserecollection.com^* odininspector.com##nav[id="cookieConsent"]:remove() ||partieseclipse.com^* www.gamecoderblog.com##div[class="cookienotice"]:remove() ||take-realprize.life^* 9to5linux.com##ins[data-ad-client]:remove() 9to5linux.com##div[id^="cookie-law-info-"]:remove() 9to5linux.com##div[id="cliSettingsPopup"]:remove() www.itpro.com##div[class^="polaris__ad"]:remove() www.itpro.com##div[id^="ad_oop_"]:remove() ||viceargents.xyz^* ||rorgoops.com^* vionixstudio.com##a[href*="//go.fiverr.com/visit/"]:remove() ||vexevutus.com^* www.archpaper.com##+js(set-constant, window.adBlocked, false, stay) www.archpaper.com##div[class^="an-ad"]:remove() ||nullrefer.com/js/parking.*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.archpaper.com/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.archpaper.com/t/ad.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||grainealgums.com^* ||sunwardamoraic.com^* ||www.aawulszemel.com^* ||www.rlsospzbvquy.com^* ||www.elmftqzs.com^* ||www.ddajztoum.com^* ||aa.hurstplants.com^* uploadbuzz.cc##+js(acs, decodeURIComponent) uploadbuzz.cc##a[href*="://7starhd.love/"]:remove() ||7starhd.love^* ||hulkprod.anm.co.uk/api/web-push-notification/v1/organisation/mol/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.newzit.com/setABframe.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||m7hdh-2damu.ads.tremorhub.com^* ||mailonline-us-d.openx.net^* ||cmp.dmgmediaprivacy.co.uk/ccpa/consent$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cmp.dmgmediaprivacy.co.uk/2.8.18-ccpa-31/iife/mol-ads-cmp.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cmp.dmgmediaprivacy.co.uk/*/iife/mol-ads-cmp.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||euasync01.admantx.com/admantx/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||euasync01.admantx.com^* www.nationalreview.com##div[class*="ad-skeleton"]:remove() www.nationalreview.com##div[id="zephr-root"]:remove() nulledcity.com##ins[data-ad-client]:remove() nulledcity.com##div[class*="jeg_ad"]:remove() nulledcity.com##div[class="ads-text"]:remove() nulledcity.com##+js(aopr, adsbygoogle) nulledcity.com##+js(aopw, adsbygoogle) nulledcity.com##+js(set-constant, nocontextmenu, false, stay) !nulledcity.com##+js(aeld, /^(?:mousedown|touchstart|click|selectionchange|vmousedown)$/) !nulledcity.com##+js(acs, document.oncontextmenu) !nulledcity.com##+js(aopr, document.onmousedown) !nulledcity.com##+js(aopw, document.onmousedown) adfly.kingdownload.net##div[id="cookie-pop"]:remove() nulledenvato.com##ins[data-ad-client]:remove() nulledenvato.com##+js(aopr, adsbygoogle) nulledenvato.com##+js(aopw, adsbygoogle) ||www.newzit.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.therecord.com##div[class*="leaderboard-ad-component"]:remove() www.therecord.com##div[class*="adview-"]:remove() www.therecord.com##div[class*="c-googleadslot"]:remove() www.therecord.com##+js(aopr, _comscore) www.therecord.com##+js(aopw, _comscore) www.therecord.com##div[id^="div-gpt-ad-"]:remove() qbforums.shiki.hu##div[aria-label="cookieconsent"]:remove() www.linuxliteos.com##div[id^="ad2"]:remove() www.linuxliteos.com##div[id^="adbox"]:remove() www.linuxliteos.com##ins[data-ad-client]:remove() distrowatch.com##div[id="ezoic-pub-ad-"]:remove() distrowatch.com##div[id^="div-ub-gpt-ad"]:remove() distrowatch.com##div[id^="div-ub-gpt-ad"]:style(height: 0px) distrowatch.com##+js(remove-node-text, script, /window\.advBidxc\.domain/gm) distrowatch.com##+js(remove-node-text, script, /adsbygoogle\s?=/gm) distrowatch.com##+js(aopr, pbjs.initAdserverSet) distrowatch.com##+js(aopw, pbjs.initAdserverSet) distrowatch.com##+js(aopr, window.advBidxc) distrowatch.com##+js(aopw, window.advBidxc) distrowatch.com##+js(aopr, adsbygoogle) distrowatch.com##+js(aopw, adsbygoogle) distrowatch.com##+js(aopr, googletag) distrowatch.com##+js(aopw, googletag) distrowatch.com##+js(set-constant, advertiser, null, stay) ||distrowatch.com/ads.txt$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.unblockia.com/h.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.unblockia.com/prebid6.20.0.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.unblockia.com^* ||t.unblockia.com^* www.khronos.org##div[id="cookie_decline"]:remove() ||entirelysacrament.com^* ||nutattorneyjack.com^* ||www.syaomlovqeq.com^* ||westats.dev/js/plausible.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||jaavnacsdw.com^* www.wemod.com##div[class*="cookie-policy"]:remove() ||againirksomefutile.com^* ||lowlatiasan.com^* ||gfxtra.dirp.app/app/x12.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||arabdevastatingpatty.com^* ||decencyjessiebloom.com^* ||supervpnoffers.com^* ||gfxtra.dirp.app/hkz$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gfxtra.dirp.app/&/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fz.noaon2.com^* ||brain.foresee.com/state/att/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css gfxtra.dirp.app##div[id^="cookieConsent"]:remove() gfxtra.dirp.app##^script:has-text(/debugger;/):remove() gfxtra.dirp.app##script:has-text(/debugger;/):remove() gfxtra.dirp.app##:xpath(//script[contains(text(), 'debugger;')]):remove() gfxtra.dirp.app##+js(trusted-replace-node-text, script, /^debugger;/gm, "") !gfxtra.dirp.app##+js(remove-node-text, script, /debugger;/gm) ! TODO: Really abort on debugger as that is what the debugger statement already does? gfxtra.dirp.app##+js(acs, /debugger;/) abc7news.com##div[data-ad-placeholder]:remove() www.jdsupra.com##div[id="cookiesModal"]:remove() ||rummaringp.pics^* ||oaksafta.com^* ||fiexpectthatmy.xyz^* ||dlooqrhebkjoh.cloudfront.net^* ||bmalbgbljljwc.com^* darksiders.pl##div[id="elGuestTerms"]:remove() ||alfafile.net/img/buttons/HelpUkraine.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||whncourses.com/wp-content/plugins/deblocker/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css whncourses.com##*[id^="mdp-deblocker-"]:remove() whncourses.com##div[class*="-blackout"]:remove() whncourses.com##div[class*="-wrapper"]:remove() whncourses.com##+js(set-constant, adsBlocked, falseFunc) whncourses.com##+js(set-constant, window.mdpDeBlockerDestroyer, false) whncourses.com##+js(set-constant, disableTextSelection, noopFunc) whncourses.com##+js(set-constant, disableContextMenu, noopFunc) whncourses.com##+js(set-constant, disableHotKeys, noopFunc) whncourses.com##+js(set-constant, disableDeveloperTools, noopFunc) whncourses.com##script[id^="google_gtagjs"]:remove() !whncourses.com##+js(remove-class, /wp-\w+-blur/, body) whncourses.com##body:remove-class(/wp-\w+-blur/) whncourses.com##*:style(filter: blur(0px) !important; -webkit-filter: blur(0px) !important;) ||pingback.giphy.com^* www.techwhoop.com##div[class*="ezo_ad"]:remove() www.techwhoop.com##span[class*="ezoic-ad"]:remove() www.techwhoop.com##span[class*="adtester-container"]:remove() www.techwhoop.com##+js(aopr, ez_ad_units) www.techwhoop.com##+js(aopw, ez_ad_units) www.techwhoop.com##+js(aopr, __pd) www.techwhoop.com##+js(aopw, __pd) www.techinpost.com##ins[data-ad-client]:remove() www.techinpost.com##+js(aopr, adsbygoogle) www.techinpost.com##+js(aopw, adsbygoogle) onlinecoursedownload.com##+js(aeld, contextmenu) onlinecoursedownload.com##+js(adjust-setInterval, , *, 0.01) course9x.com##div[class="cookies-warning"]:remove() course9x.com##div[id="modal_blocker"]:remove() course9x.com##+js(nano-stb, , *, 0.01) course9x.com##div[class*="modal-backdrop"]:remove() magybu.net##div[id="cookie_notice"]:remove() magybu.net##div[id="sub-frame-error"]:remove() ||c.srvpcn.com^* ||tutorialsplanet.net/wp-content/plugins/better-adsmanager/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tutorialsplanet.net/wp-content/plugins/deblocker/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css tutorialsplanet.net##+js(aopr, jwych) tutorialsplanet.net##+js(aopw, jwych) tutorialsplanet.net##+js(aopr, _stq) tutorialsplanet.net##+js(aopw, _stq) tutorialsplanet.net##+js(aopr, betterads_screen_width) tutorialsplanet.net##+js(aopw, betterads_screen_width) tutorialsplanet.net##ins[data-ad-client]:remove() tutorialsplanet.net##div[class$="-blackout active"]:remove() tutorialsplanet.net##div[class$="-wrapper"]:remove() tutorialsplanet.net##div[class$="-modal active"]:remove() tutorialsplanet.net##*:style(filter: blur(0px) !important; -webkit-filter: blur(0px) !important;) tutorialsplanet.net##+js(remove-class, jwych-pubadban, div) tutorialsplanet.net##+js(acs, decodeURIComponent) ||uklyeconnected.monster^* ||space-ads.xyz^* ||oo.leerilypimelea.com^* ||waredscots.casa^* ||nu.ginnersinfanta.com^* ||vb.fructushumble.com^* community.chocolatey.org##div[id="cookieNoticeAlert"]:remove() ||aorta.clickagy.com/pixel.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||eu.gtrxlnd.com^* ||ukdliketobepa.monster^* www.syncs.online##div[aria-label="cookieconsent"]:remove() ||tv.gourdycortes.com^* ||hhklc.com^* ||marfeelrev.com^* eio.io##div[id="adb_detected"]:remove() ||eio.io/js/scripts/nr.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css eio.io##+js(aopr, fuckAdBlock) eio.io##+js(aopw, fuckAdBlock) eio.io##+js(aopr, importFAB) eio.io##+js(aopw, importFAB) eio.io##+js(acs, disableItToContinue) eio.io##^script:has-text(disableItToContinue):remove() ||mobileprice.site^* ||endangersquarereducing.com^* ||granddaughterrepresentationintroduce.com^* ||eliss-vas.com^* ||d3t3z4teexdk2r.cloudfront.net^* ||ubbfpm.com^* ||pertyvaluationia.monster^* ||prhzxq.com^* ||first-bonusplace.life^* ||click.expmdiadi.com^* ||run.storkmobi.com^* fxgear.shop##div[class="jnews-cookie-law-policy"]:remove() ||great-winner.life^* !||cdn.discordapp.com/attachments/564314255701311491/1007384209301700709/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.discordapp.com/attachments/564314255701311491/1007397946838495304/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.discordapp.com/attachments/564314255701311491/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css shrinke.me##div[class="expop"]:remove() shrinke.me##+js(remove-attr, disabled, #go-submit, stay) shrinke.me##+js(remove-class, hidden, #go-submit, stay) shrinke.me##+js(remove-class, hidden, #go-link, stay) shrinke.me##+js(remove-class, disabled, ,) !shrinke.me##input[name="ad_form_data"]:remove() microsoftcaregh.com##section[id="eu_cookie_law_widget-2"]:remove() microsoftcaregh.com##ins[data-ad-client]:remove() microsoftcaregh.com##section[id^="vmag_leaderboard_ad"]:remove() microsoftcaregh.com##div[id^="amzn-assoc-ad"]:remove() ||c0.wp.com/p/jetpack/11.2/_inc/build/widgets/eu-cookie-law/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.c-sharpcorner.com##div[id$="_ad729X90"]:remove() www.c-sharpcorner.com##div[id$="_ad728X90"]:remove() www.kythera.ai##div[class^="sqs-cookie-banner"]:remove() ||filessoftpc.com^* techdows.com##ins[data-ad-client]:remove() techdows.com##h3[class="widgettitle widget-title"]:has-text(/ADVERTISEMENT/i):remove() techdows.com##div[class="adsbyvli"]:remove() zonegfx.com##+js(remove-attr, disabled, .mycred-buy-this-content-button, stay) www.dynamixyz.com##div[class^="sqs-cookie-banner"]:remove() ||files-24.com^* ||marianduanet.com^* ||1d0wnload1ngx.com^* ||fynbest.com^* ||10kjdbfkj10.monster^* !||file-upload.site/page.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||file-upload.site^* ||modovia.de^* www.indiatoday.in##div[class="story-header-ad"] www.indiatoday.in##div[class="adtext"] www.indiatoday.in##+js(aopr, div_ads) www.indiatoday.in##+js(aopw, div_ads) www.indiatoday.in##+js(set-constant, div_ads, '', stay) www.indiatoday.in##div[id^="div-gpt-ad"] www.indiatoday.in##.inline-story-add www.accuwebhosting.com##div[id="gdpr_notice"] buhta.ws##div[data-dlebclicks="yes"] shadowcore.ru##div[class^="pix-cookie"] nullpk.com##aside[id="rb-privacy"] ||underthfeoveu.monster^* magybu.net##div[id="_bd"] ||stat.turb.pw^* www.thecpuguide.com##+js(aopr, ai_adb) www.thecpuguide.com##+js(aopw, ai_adb) www.thecpuguide.com##+js(aopr, __ez) www.thecpuguide.com##+js(aopw, __ez) ! blocking __ezaq prevents lazyload images BUT it is required to prevent the anti-adblock redirect and overlay www.thecpuguide.com##+js(aopr, _ezaq) www.thecpuguide.com##+js(aopw, _ezaq) www.thecpuguide.com##+js(set-constant, _ezaq, {}, stay) www.thecpuguide.com##+js(aopr, __sellerid) www.thecpuguide.com##+js(aopw, __sellerid) www.thecpuguide.com##+js(aopr, window.ezslots_raw) www.thecpuguide.com##+js(aopw, window.ezslots_raw) www.thecpuguide.com##+js(aopr, __banger_pmp_deals) www.thecpuguide.com##+js(aopw, __banger_pmp_deals) www.thecpuguide.com##+js(aopr, window.ez_ad_units) www.thecpuguide.com##+js(aopw, window.ez_ad_units) www.thecpuguide.com##+js(aopr, ezslot_interstitial) www.thecpuguide.com##+js(aopw, ezslot_interstitial) www.thecpuguide.com##+js(aopr, ez_ad_units) www.thecpuguide.com##+js(aopw, ez_ad_units) www.thecpuguide.com##+js(aopr, adj1) www.thecpuguide.com##+js(aopw, adj1) www.thecpuguide.com##+js(aopr, __advertiserRule) www.thecpuguide.com##+js(aopw, __advertiserRule) www.thecpuguide.com##div:has-text(Blocked because of Ad Blocker):remove() www.thecpuguide.com##div[class*="ezo_ad"]:remove() www.thecpuguide.com##div[id="banner-advert-container"]:remove() ||www.thecpuguide.com/wp-content/plugins/ad-inserter/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.thecpuguide.com##div[id^="uglipop_overlay"]:remove() www.thecpuguide.com##cnx[class*="cnx-ad"]:remove() www.thecpuguide.com##span[class*="ezoic-ad"]:remove() www.thecpuguide.com##span[class*="adtester-container"]:remove() www.thecpuguide.com##div[class^="cnx-ad"]:remove() www.thecpuguide.com##object[id^="ai-adb"]:remove() www.thecpuguide.com##div[id^="div-gpt-ad"]:remove() !www.thecpuguide.com##script[data-ezscrex="false"]:remove() www.recmaster.net##div[class="privacy_policy"]:remove() !||api.fouanalytics.com/s/pp.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||api.fouanalytics.com/api/init-*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.fouanalytics.com^* www.techgeekandmore.com##div[id="cookieChoiceInfo"]:remove() ||www.techgeekandmore.com/wp-content/plugins/wf-cookie-consent/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css windows101tricks.com##.bs-gdpr-law:remove() windows101tricks.com###ezmobfooter:remove() windows101tricks.com##div[id="cpp-print-disabled"]:remove() windows101tricks.com##span[id^="ezoic-pub-ad-placeholder"]:remove() windows101tricks.com##span[id^="div-gpt-ad-"]:remove() windows101tricks.com##span[class^="ezoic-ad"]:remove() windows101tricks.com##+js(aopr, __advertiserRule) windows101tricks.com##+js(aopw, __advertiserRule) windows101tricks.com##+js(aopr, __ez_dims) windows101tricks.com##+js(aopw, __ez_dims) windows101tricks.com##+js(aopr, window.ezogetbrkey) windows101tricks.com##+js(aopw, window.ezogetbrkey) ||windows101tricks.com/tardisrocinante/austin.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||windows101tricks.com/wp-content/plugins/better-content-protector/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||windows101tricks.com/wp-content/plugins/better-adsmanager/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.drivereasy.com##div[class="float-bar"]:has(div[class="cookies-text"]):remove() howtofixwindows.com##span[class^="td-adspot"]:remove() www.upload-4ever.com##ins[data-ad-client]:remove() ||gsybyniypo.com^* ||lqcngknn.com^* howtofixwindows.com##div[class*="td-a-rec-id-custom_ad"]:remove() woshub.com##div[id^="div-gpt-ad"]:remove() woshub.com##ins[data-ad-client]:remove() ||balaraofixes.website^* ||yh.williedcasteth.com^* ||adwx6vcj.com^* secufiles.com##div[class*="cookiealert"]:remove() ||besmeargleor.com^* ||crabereyren.website^* ||zu.loggatscowbyre.com^* ||fixmostrefinedtheproduct.vip^* www.alphr.com##div[data-freestar-ad]:remove() www.alphr.com##div[class*="sticky-ads"]:remove() !||reuters-d.openx.net/w/1.0/jstag$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||reuters-d.openx.net^* www.reuters.com##div[class^="ad-slot"]:remove() www.reuters.com##div[data-testid="ResponsiveAdSlot"]:remove() www.reuters.com##div[id="reuters_1x1_bouncex"]:remove() www.reuters.com##iframe[class="smartad_iframe"]:remove() www.reuters.com##iframe[class="dianomi-parent-iframe"]:remove() www.reuters.com##main[id="main-content"]:style(max-width: 100% !important; width: 100% !important; grid-column-start: 1 !important; grid-column-end: span 12 !important;) www.reuters.com##+js(remove-node-text, script, /\.push\(\{['"]gtm\.start['"]/gm) www.reuters.com##+js(remove-node-text, script, /freestar\.config\.enabled_slots\.push\(\{/gm) www.reuters.com##+js(remove-node-text, script, /if\s?\(window\.BOOMR_API_key\s?=/gm) www.reuters.com##+js(aopr, window.BOOMR_mq) www.reuters.com##+js(aopw, window.BOOMR_mq) www.reuters.com##script[id^="ccpa-id-"]:remove() www.reuters.com##script[id="boomr-scr-as"]:remove() ||www.dianomi.com/cgi-bin/pixeltrack.pl$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.dianomi.com/cgi-bin/smartads.pl$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.dianomi.com/cgi-bin/smartads_video_a.pl$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.dianomi.com/cgi-bin/smartads_video_json.pl$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.dianomi.com/partner/abp/px.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.dianomi.com/smartads.epl$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lsknf45vgh.click^* ||fkdcm5tg.click^* ||as76rtju.cfd^* ||per345rdfc.click^* ||crackphilia.com^* wakelet.com##div[class*="bg-cookie-banner"]:upward(1):remove() ||odomom.com^* ||hft76yu.cfd^* ||crackpro.org^* ||gielobraihaelialis.cf^* web.archive.org##iframe[src*="://www.blogger.com/blogin.g"]:remove() web.archive.org##div[itemscope="itemscope"]:style(display: inline !important;) web.archive.org##+js(remove-attr, style, itemscope) web.archive.org##+js(remove-class, variant-dark, body) web.archive.org##+js(remove-attr, style, body) web.archive.org##*:style(visibility: visible !important;) web.archive.org##div[id^="donato"]:remove() ||cdn.discordapp.com/attachments/981225862621966446/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css cpmlink.net##div[id^="ad-display-section"]:remove() cpmlink.net##div[id="disable"]:remove() cpmlink.net##+js(set-constant, downloadButton.disabled, false, stay) cpmlink.net##+js(aopr, adcodeID) cpmlink.net##+js(aopw, adcodeID) cpmlink.net##+js(aopr, fullAdsRendered) cpmlink.net##+js(aopw, fullAdsRendered) cpmlink.net##+js(acs, decodeURIComponent) cpmlink.net##div[id="content-box-section-1"]:remove() cpmlink.net##div[id="ad-display-section-10"]:remove() ||www.lutvcmuisohfyq.com^* ||wednesdaynaked.com^* www.namecheap.com##div[class^="gb-stand-with-ukraine-banner"]:remove() !na2.documents.adobe.com##div[class="terms-of-use"]:remove() documents.adobe.com##div[class="terms-of-use"]:remove() !na2.documents.adobe.com##div[id="es-underlay"]:remove() documents.adobe.com##div[id="es-underlay"]:remove() www.raytheonintelligenceandspace.com##*[class^="gdpr__"]:remove() www.raytheonintelligenceandspace.com##form[id="gdprForm"]:remove() www.raytheonintelligenceandspace.com##div[class*="cookies_wrapper"]:remove() !www.raytheonintelligenceandspace.com##+js(remove-attr, style, body) www.raytheonintelligenceandspace.com##body,html:style(overflow: scroll !important;) ||tonsilyearling.com^* ||as7.zerodeltanode.shop^* blenderartists.org##div[aria-label="cookieconsent"]:remove() ||metrics.svc.conholdate.cloud^* freemagazinespdf.com##script[custom-element="amp-auto-ads"]:remove() freemagazinespdf.com##script[id="cookie-notice-front-js-extra"]:remove() ||freemagazinespdf.com/wp-content/plugins/chp-ads-block-detector/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||freemagazinespdf.com/wp-content/plugins/cookie-notice/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css freemagazinespdf.com##*[class^="adblock_"]:remove() freemagazinespdf.com##div[id="cookie-notice"]:remove() freemagazinespdf.com##amp-auto-ads:remove() freemagazinespdf.com##+js(aopr, adblockModal) freemagazinespdf.com##+js(aopw, adblockModal) www.tominlab.com##div[class^="cookie-law"]:remove() www.azfonts.net##div[aria-label="cookieconsent"]:remove() randomwordgenerator.com##div[id^="RWG_Bottom_Banner"]:remove() randomwordgenerator.com##div[id^="RWG_Top_Banner"]:remove() randomwordgenerator.com##div[id^="div-gpt-ad"]:remove() randomwordgenerator.com##div[class*="google-ad-container"]:remove() ||ug.pangaeajibboom.com^* ||xcfss2.xyz^* ||productivitytab.co^* ||d204slsrhoah2f.cloudfront.net^* ||asforsalesr.one^* ||encesprincipl.one^* ||6fgnkfhjgfh6.monster^* ! blocking themezon.net block download links from shrinke.me !||themezon.net^* ||captchaless.top^* ||p-analytics.life^* ||appcloud-store.com^* ||199.callevespy.buzz^* ||fuveexohd.in.net^* www.fontspring.com##div[id="js_footer_messages"]:remove() www.free-fonts.com##div[id="notice"]:upward(2):remove() www.free-fonts.com##+js(acs, /GdprApplies/i) www.free-fonts.com##+js(aopr, consentStatus) www.free-fonts.com##+js(aopw, consentStatus) ||cp.free-fonts.com/stats$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.univention.com##link[id^="cookie-law-info"] ||www.univention.com/wp-content/cache/min/1/wp-content/plugins/webtoffee-gdpr-cookie-consent/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn-eu.pagesense.io^* www.univention.com##+js(aopr, _paq) www.univention.com##+js(aopw, _paq) www.univention.com##div[id^="cookie-law-info-"]:remove() www.univention.com##div[class="wt-cli-cookie-bar-container"]:remove() ||yrecomemu.one^* ||maticalaccurate.one^* ||goomaphy.com^* ||tackchen.gitee.io^* ||cleardexchange.com^* ! Do NOT use the following rule or anti-adblocking will be triggered. ! Cannot change or hide anything under that div tag either or anti-adblocking will be triggered. !1cloudfile.com##div[class*="advert-wrapper"]:remove() !1cloudfile.com##div[class*="advert-wrapper"] > center:nth-child(1) > a:nth-child(1):remove() !1cloudfile.com##button:has-text(Download):remove() ! Do NOT abort on adsbygoogle access since the script which generates the download links contains the adsbygoogle var. !1cloudfile.com##+js(aopr, adsbygoogle) !1cloudfile.com##+js(aopw, adsbygoogle) ! Do NOT remove this script as it prevent the download link from being generated. !1cloudfile.com##+js(remove-node-text, script, /\(adsbygoogle = window\.adsbygoogle || [])\.push\(\{\}\);/gm) ! The clear-adblock class is only added if adblocking is detected by the inline script. 1cloudfile.com##*[class*="clear-adblock"]:remove-class(clear-adblock) 1cloudfile.com##+js(remove-class, clear-adblock, *[class*="clear-adblock"]) !1cloudfile.com##+js(remove-class, clear-adblock, *[class*="clear-adblock"], stay) 1cloudfile.com##a[id="5874698"]:remove() 1cloudfile.com##div[id="adblockinfo"]:remove() 1cloudfile.com##div[class*="top-advert"]:remove() 1cloudfile.com##div[class*="advert-page-footer"]:remove() 1cloudfile.com##ins[data-ad-client]:remove() 1cloudfile.com##iframe[name="googlefcPresent"]:remove() 1cloudfile.com##+js(set-constant, CookieConsent, noopFunc) 1cloudfile.com##+js(aopr, CookieConsent) 1cloudfile.com##+js(aopw, CookieConsent) 1cloudfile.com##+js(set-constant, _wau, []) 1cloudfile.com##+js(aopr, _wau) 1cloudfile.com##+js(aopw, _wau) 1cloudfile.com##script[id="_wauvym"]:remove() 1cloudfile.com##+js(set-constant, LOGGED_IN, true) ! seconds is only set to 1 by the original code 1cloudfile.com##+js(set-constant, seconds, 0) ! The following rule prevents the continual access of pagead2.googlesyndication.com without breaking site functionality. 1cloudfile.com##+js(no-setInterval-if, /display\(\)/) !1cloudfile.com##+js(no-setInterval-if, !display) 1cloudfile.com##+js(no-fetch-if, /googlesyndication|nerveheels/) ||1cloudfile.com/themes/spirit/assets/frontend/js/cookieconsent.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||1cloudfile.com/themes/spirit/assets/frontend/css/cookiealert.css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||1cloudfile.com/js/xads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! breaks 1cloudfile.com !||d18e74vjvmvza1.cloudfront.net^* ||britehostngco.xyz^* ||teuk9iolff.xyz^* ||pforplotfile.xyz^* ||137.184.227.198/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css uploadhub.to##div[class*="advert-wrapper"]:remove() uploadhub.to##div[class*="top-advert"]:remove() ||metrics1.citibankonline.com^* www.anycodings.com##div[id="myblock"]:remove() www.anycodings.com##div[id="ads"]:remove() www.anycodings.com##body:style(overflow: scroll !important;) www.anycodings.com##ins[data-ad-client]:remove() analyticsindiamag.com##a[href*="://ad.doubleclick.net/"]:remove() analyticsindiamag.com##img[src*="://ad.doubleclick.net/"]:remove() ||cdn1.overdrive.io/js/cookieconsent/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css gsuitetips.com##div[aria-label="cookieconsent"]:remove() www.linuxquestions.org##ins[data-ad-client]:remove() www.linuxquestions.org##div[id^="beacon_"]:remove() www.linuxquestions.org##ins[id^="revive-"]:remove() www.linuxquestions.org##+js(acs, document.write) www.linuxquestions.org##+js(aopr, adsbygoogle) www.linuxquestions.org##+js(aopw, adsbygoogle) ! TODO: should probably block rev.linuxquestions.org wholesale !||rev.linuxquestions.org/www/delivery/lg.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rev.linuxquestions.org/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||saltsspectacles.com^* ||nursecompellingsmother.com^* ||lmdjlmneovhwe.com^* ||paiwhoki.com^* www.iplocation.net##span[id^="div-gpt-ad"]:remove() www.iplocation.net##span[id^="ezoic-pub-ad"]:remove() www.iplocation.net##span[class*="ezoic-ad"]:remove() www.iplocation.net##span[class*="adtester-container"]:remove() www.iplocation.net##+js(aopr, __ez) www.iplocation.net##+js(aopw, __ez) www.iplocation.net##+js(aopr, __banger_pmp_deals) www.iplocation.net##+js(aopw, __banger_pmp_deals) www.lawnmowerforum.com##div[class*="ezo_ad"]:remove() www.lawnmowerforum.com##span[class*="ezoic-ad"]:remove() www.lawnmowerforum.com##span[class*="adtester-container"]:remove() www.lawnmowerforum.com##span[id^="ezoic-pub-ad"]:remove() ||gfnwktjmrrmdss.com^* ||kougloar.com^* ||onemillion.autos^* ||249.passalgum.buzz^* ||apeseenart.top^* ||swingbrasileiro.com^* ||chlod-qui.com^* ||salletsilvully.com^* ||getsthis.com/hit$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||getsthis.com/api/report$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||elsewherebuckle.com^* ||verandahcrease.com^* ||pl16427087.alternativecpmgate.com^* ||roadmappenal.com^* ||beta.easyhitcounters.com/counter/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||analytics-public.cart.com^* coupons.thedailybeast.com##div[data-testid="CookieBanner"]:remove() www.manualsdir.com##div[id="cookie-bar"]:remove() www.retailmenot.com##div[class^="AdSlot"]:remove() www.retailmenot.com##div[data-adunit]:remove() ||twutpnwretnwyal.com^* ||boakauso.com^* www.nickiswift.com##div[data-ad-height]:remove() www.seventeen.com##div[class^="leaderboard-ad"]:remove() www.seventeen.com##div[class="ad-container"]:remove() www.seventeen.com##div[class*="breaker-ad"]:remove() ||cremateretainedsurname.com^* ||duplicatepowerquay.com^* ||parachuteeffectedotter.com^* ||vilereasoning.com^* ||betzapdoson.com^* ||atebilaterde.one^* ||d1of5w8unlzqtg.cloudfront.net^* ||pectthatmye.shop^* ||eandcpmg.com^* !www.lifehacker.com.au##div[data-ads-displayed]:remove() www.lifehacker.com.au##div[id^="ad-slot_"]:remove() www.lifehacker.com.au##+js(aopr, adSlot) www.lifehacker.com.au##+js(aopw, adSlot) ||www.puupnewsapp.com^* youfiles.herokuapp.com##+js(aopr, google_ad_client) youfiles.herokuapp.com##+js(aopw, google_ad_client) youfiles.herokuapp.com##+js(set-constant, gadb, false, stay) ||lephaush.net^* www.uploadcloud.pro##div[class^="cookieinfo"]:remove() www.uploadcloud.pro##a[title="Putin, Stop the War in Ukraine!"]:remove() www.uploadcloud.pro##^script:has-text(/debugger;/):remove() www.uploadcloud.pro##script:has-text(/debugger;/):remove() www.uploadcloud.pro##:xpath(//script[contains(text(), 'debugger;')]):remove() www.uploadcloud.pro##+js(trusted-replace-node-text, script, /^debugger;/gm, "") !www.uploadcloud.pro##+js(remove-node-text, script, /debugger;/gm) ! TODO: Really abort on debugger as that is what the debugger statement already does? www.uploadcloud.pro##+js(acs, /debugger;/) www.nydailynews.com##div[class*="ad_container"]:remove() !www.nydailynews.com##div[class="top_ad_wrapper"]:remove() www.nydailynews.com##div[class*="ad_wrapper"]:remove() www.nydailynews.com##div[aria-label="Paywall"]:remove() www.nydailynews.com##div[id="zephr-overlay"]:remove() ||smoggysnakes.com^* !||www.tribdss.com/meter/assets/nydnarc-reaction-1q2w3-4227101563976737884.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.tribdss.com/meter/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pubads.g.doubleclick.net/adsid/integrator.json$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||7ceb0.v.fwmrm.net/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||7f077.v.fwmrm.net/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.v.fwmrm.net/ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.heyitsfree.net##div[id^="AdThrive_"]:remove() www.heyitsfree.net##div[class*="adthrive-"]:remove() streamingsites.com##div[class="ads-block"]:remove() ||platform.linkedin.com/litms/vendor/google/gtag-adwords.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.statnews.com##div[class*="ad-wrap"]:remove() www.statnews.com##div[data-ad-unit]:remove() ||smetrics.statnews.com^* ||www.statnews.com/wp-content/compiled/js/stat-google-ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.statnews.com/wp-content/compiled/js/stat-microsoft-ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.statnews.com/wp-content/plugins/stat-analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.statnews.com/wp-content/plugins/ad-refresh-control/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.statnews.com/wp-content/plugins/bgmp-gdpr/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||aerialmistaken.com^* ||burlydeclined.com^* ||preauc.com^* ||peciet.com^* ||momentcleanpitch.com^* !||key.seckeyserv.me^* ||playoffsstream.com/ts.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ardslediana.com^* ||www.hacbfyvvsw.com^* ||hacbfyvvsw.com^* ||bzwdksdngjhay.com^* ||www.bzwdksdngjhay.com^* ||nordeela.com^* ||ojjavpljruu.com^* ||ad.kubiadserv.icu^* csoft.com##div[id="pvc"]:remove() ||browsobsolete.com^* ||thiem-csl.com^* ||fyngood.com^* ||virginyoungestrust.com^* ||pl16164575.highperformancegate.com^* ||xhofdnrmnehp.com^* ||www.rsnogpgohyo.com^* ||rsnogpgohyo.com^* ||personwhois.xyz^* ||moksoxos.com^* ||mscoldness.com^* ||locomotiveconvenientriddle.com^* ||kalclguwwyq.com^* ||livetvon.click/stream/adblock.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||notadsworld.com^* !||specgoal.com/api/v1/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||specgoal.com^* !||adfpoint.com/api/v1/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adfpoint.com^* ||xml-v4.pxfindone.com^* ||www.ldndromaqpnnp.com^* ||ldndromaqpnnp.com^* msfreemicrosoft.ru##div[aria-label="cookieconsent"]:remove() ||op.aewbx.shop^* !||werese.com/script/i.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||werese.com^* !||weakya.com/prod/ngo.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||weakya.com^* ||yeet.revcontent.com/yeet/events/api-errors$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||assets.revcontent.com/master/delivery.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rechargemind.com/wp-content/plugins/advanced-ads-pro/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rechargemind.com/wp-content/plugins/advanced-ads-responsive/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rechargemind.com/wp-content/plugins/advanced-ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||aihoasso.net^* ||smashofferss.com^* ||wfpsdwkebqgj.com^* yourtehzeeb.com##+js(remove-class, seek-disabled, , stay) yourtehzeeb.com##+js(remove-class, media-control-hide, , stay) yourtehzeeb.com##^script:has-text(/debugger;/):remove() yourtehzeeb.com##script:has-text(/debugger;/):remove() yourtehzeeb.com##:xpath(//script[contains(text(), 'debugger;')]):remove() yourtehzeeb.com##+js(remove-node-text, script, /debugger;/gm) ! TODO: Really abort on debugger as that is what the debugger statement already does? yourtehzeeb.com##+js(acs, /debugger;/) ||ivexjkwo.com^* ||strollcurepinching.com^* ||reapinject.com^* ||cadencecovetousfireplace.com^* ||d18myvrsrzjrd7.cloudfront.net^* ||pogothere.xyz^* ||ktobedirectu.autos^* ||tefections.xyz^* ||junemy.com^* ||jfbhxkwpsbndq.com^* ||ewoutosh.com^* ||trk.trotrot.one^* ||mscreview.com^* ||hehe.heptix.net^* ||opensuperoriginaltheproduct.vip^* ||espotl.com^* ||stat.livesportbar.net^* ||stats.hd24.watch^* ||milips.com^* jokersplayer.xyz##div[id="close"]:remove() ||jokersplayer.xyz/ad1.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css jokersplayer.xyz##div[id="ad_overlay"]:remove() jokersplayer.xyz##div[id="ad"]:remove() jokersplayer.xyz##div[class="snackbar message bottom center slideUp"]:has(img[src="/snack/video-hd-2-xxl.png"]):remove() www.whattowatch.com##div[class*="ad-unit"]:remove() www.whattowatch.com##div[class="dfp-leaderboard-container"]:remove() ||trkn.us/pixel/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||data.adxcel-ec2.com/pixel/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||data.adxcel-ec2.com^* ||k.clarity.ms/collect$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||aywfsjpglvhzdk.com^* ||www.bonmrpwrl32.xyz^* ||hapinessii.offerstrack.net^* ||ps5.fusecloudnational.com^* ||ecched.com^* ||nbuuhmxvzgrgu.com^* ||staixooh.com^* ||fuylufrn.com^* ||trafficbooster.xyz^* ||ebodyfairesra.xyz^* ||rnoddenkn.asia^* ||d2sp5g360gsxjh.cloudfront.net^* ||treatycalculator.com^* ||tiltfastest.com^* ||cdn.hooliganmedia.com/hmrads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ruootirq.com^* ||visit.nordvpn.com^* ||aviole.com/prod/ngo.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||fivern.com/script/i.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||fivern.com/ts.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fivern.com^* ||www.pxolp.xyz^* ||ad.ipredictive.com^* ||record.webpartners.co^* ||metrics1.thankyou.com^* ||www.betus.com.pa/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||bm.adentifi.com/pixel/conv/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||bm.adentifi.com^* ||acuityplatform.com/Adserver/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||px.adentifi.com/Pixels$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||px.adentifi.com^* !||up.pixel.ad/assets/up.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||up.pixel.ad^* ||eiteribesshaints.com^* ||komarchlupoid.com^* ||www.aexp-static.com/cdaas/one/rum-telemetry/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||premium-uploaded.net^* ||last0nef1le.com^* fc-lc.com##iframe[id="iframe_id"]:remove() ||downloadfreexx1.com^* ||tovanillitechan.com^* ||jevtguexebyt.com^* ||trustbummler.com^* !ckk.ai##iframe:remove() ckk.ai##a:has(img[src="/webroot/modern_theme/img/dwndbnr1.png"]):remove() ckk.ai##a:has(img[src="/webroot/img/25525422.png"]):remove() ckk.ai##a:has(img[src="/webroot/modern_theme/img/dwndbnr5.png"]):remove() ||skipdearbeautify.com^* ||hellocaterersomeone.com^* ier.ai##a:has(img[src="/webroot/modern_theme/img/dwndbnr1.png"]):remove() ier.ai##a:has(img[src="/webroot/img/25525422.png"]):remove() ier.ai##a:has(img[src="/webroot/modern_theme/img/dwndbnr5.png"]):remove() ier.ai##a:has(img[src="/webroot/modern_theme/img/dwndbnr4.1.png"]):remove() ||amp.whatabouteconomy.com^* www.nme.com##div[id^="div-gpt-ad-"]:remove() www.nme.com##span[class="td-adspot-title"]:remove() www.nme.com##+js(set-constant, wordpress.hideAllAds, true, stay) ||d9e07bd35d.b05ac36841.com^* ||9c5e44dfb7.36d1ef387c.com^* ||haffic.com^* ||52cd6c03a3.de1cb9e4b1.com^* ||ovhgbqrbxfcb.com^* ||owoxauky.com^* !||omnan.com/script/i.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||omnan.com^* ||cdn-guse1-xch.media.net/AdExchange/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn-ssl.vidible.tv/prod/ad-client/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||oravamcudbcfcb.com^* ||67f2c19a0d.60a15a92ee.com^* ||lassue.com^* ||9efb810f2e.aeb33be3f8.com^* ||f38fd28823.111d140e96.com^* ||www.antiadblocksystems.com/bootstrap-markdown-editor.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||antiadblocksystems.com^* ||www.zadcyacitht.com^* ||zadcyacitht.com^* ||www.aywfsjpglvhzdk.com^* ||alpidoveon.com^* ||immise.com^* ||intellipopup.com/XiD.asp$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||thurch.com/prod/ngo.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||thurch.com^* ||vilith.com^* ||www.intellipopup.com/feature.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.ueypzubwo.com^* ||accoln.com^* ||www.ghskoqhz.com^* ||ghskoqhz.com^* ||lockfireshimself.com^* ||forgerylimit.com^* ||earnbearerelectricity.com^* ||bodher.com^* sport-play.xyz##div[class="gambling_website"]:remove() sport-play.xyz##+js(acs, gtag) livefootball24.com##div[id^="div-gpt-ad-"]:remove() livefootball24.com##div[class="banner mobile fixed_bottom sticky-bottom bet_banner"]:remove() livefootball24.com##ins[data-ad-client]:remove() livefootball24.com##+js(aopr, adsbygoogle) livefootball24.com##+js(aopw, adsbygoogle) livefootball24.com##+js(aopr, window.googletag) livefootball24.com##+js(aopw, window.googletag) livefootball24.com##+js(remove-node-text, script, /googletag\.pubads\(\)/gm) !||pl17675718.profitablegatetocontent.com^* !||pl16925805.profitablegatetocontent.com^* !||pl17142106.profitablegatetocontent.com^* ||pl*.profitablegatetocontent.com^* ||sauomqaulcqng.com^* ||precitatic.xyz^* !www.hackerrank.com##div[class*="cookie-banner"]:remove() www.hackerrank.com##div[class="cookie-banner-wrapper"]:remove() windowsreport.com##div[id="td-bottom-mpu-0__ad"]:upward(1):remove() windowsreport.com##div[id="td-top-mpu-0__ad"]:upward(1):remove() windowsreport.com##div[class="bnr-block-label"]:has-text(Ad):remove() ||unresolveddrama.com^* ||poosoahe.com^* ||obituaryfuneral.com^* ||graduatewonderentreaty.com^* ||modificationdispatch.com^* cdn.laola1.live##div[data-ad-slot]:remove() ||etfbkicrbyiw.com^* 4qrcode.com##ins[data-ad-client]:remove() 4qrcode.com##div[id="addContainer"]:remove() 4qrcode.com##+js(aopr, adsbygoogle) 4qrcode.com##+js(aopw, adsbygoogle) ourcodeworld.com##div[aria-label="cookieconsent"]:remove() ourcodeworld.com##div[id="we-stand-with-ukraine"]:remove() hanging-garden.babylonsfall.com##div[id="onetrust-banner-sdk"]:remove() downloadudemy.com##div[id="mdp-deblocker-ads"]:remove() !downloadudemy.com##div[class*="-blackout"]:remove() !downloadudemy.com##div[class*="-wrapper"]:remove() downloadudemy.com##+js(set-constant, app_advert, 0, stay) downloadudemy.com##script[id="mdp-deblocker-ads-js"]:remove() ||downloadudemy.com/wp-content/plugins/deblocker/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css downloadudemy.com##+js(set-constant, adsBlocked, falseFunc) downloadudemy.com##+js(set-constant, window.mdpDeBlockerDestroyer, false) downloadudemy.com##+js(set-constant, disableTextSelection, noopFunc) downloadudemy.com##+js(set-constant, disableContextMenu, noopFunc) downloadudemy.com##+js(set-constant, disableHotKeys, noopFunc) downloadudemy.com##+js(set-constant, disableDeveloperTools, noopFunc) downloadudemy.com##+js(acs, decodeURIComponent) downloadudemy.com##ins[data-ad-client]:remove() !downloadudemy.com##div[class="notice text underline-effect"]:remove() !downloadudemy.com##div[class="grid-container"]:has(div[class="info"], a[href$="epcl-action=remove-notice"]):remove() downloadudemy.com##div[class="info"]:has(a[href$="epcl-action=remove-notice"]):remove() link.downloadr.in##div[id="cookie-pop"]:remove() www.aparat.com##div[id="sideAds"]:remove() app.pluralsight.com##+js(aopr, window.analytics) app.pluralsight.com##+js(aopw, window.analytics) app.pluralsight.com##*[class^="psds-navcookiebanner"]:remove() app.pluralsight.com##div[data-css-17e1gtc]:remove() www.pluralsight.com##div[class="jsx-1227599814 banner"]:remove() learn.pluralsight.com##div[class="cookie-notification-wrapper"]:remove() www.pluralsight.com##div[class*="cookie-notification-"]:remove() www.pluralsight.com##div[class="cookie_notification options"]:remove() ||clm-proxy.pluralsight.com/api/clm/measure/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||app.pluralsight.com/web-analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||app.pluralsight.com/course-player/api/v1/metric/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||s2.pluralsight.com/analytics/analytics-facade.v4.5.1.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.pluralsight.com/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||webanalytics.pluralsight.com/web/webplayer_player_ui/identify$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||webanalytics.pluralsight.com^* ||pluralsight.hb.omtrdc.net^* smsreceivefree.com##div[id="ezmobfooter"]:remove() smsreceivefree.com##span[class*="ezoic-ad"]:remove() smsreceivefree.com##span[class*="adtester-container"]:remove() smsreceivefree.com##+js(aopr, ez_ad_units) smsreceivefree.com##+js(aopw, ez_ad_units) smsreceivefree.com##+js(aopr, cid) smsreceivefree.com##+js(aopw, cid) smsreceivefree.com##+js(aopr, _ezaq) smsreceivefree.com##+js(aopw, _ezaq) smsreceivefree.com##+js(set-constant, ezoicTestActive, false, stay) smsreceivefree.com##*[id^="div-gpt-ad-"]:remove() smsreceivefree.com##+js(acs, __ez_fad_ezpbinit) www.defensenews.com##div[class*="AdWrapper-"]:remove() www.defensenews.com##div[class*="dfp-ad"]:remove() www.usta.com##+js(aopr, window.desktopAdSlot) www.usta.com##+js(aopw, window.desktopAdSlot) www.usta.com##*[class^="adImageComp"]:remove() *-app-*.ondigitalocean.app/werrx01/?phone=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rljorxgkbqjl.com^* ||lgqtooyvqdvnnla.com^* ||m1dnightclubx.com^* ||furlsstealbilk.com^* ||stoopsellers.com^* uploadydl.com##a[href*="://m1dnightclubx.com/"]:remove() !removes captcha !uploadydl.com##iframe:remove() uploadydl.com##+js(remove-attr, disabled, #downloadbtn, stay) ||arithmeticshovel.com^* ||prize-claim-a3d.live^* audials.com##div[class^="pure-cookies-notice-"]:remove() ||hellrider.live^* ||kowalik-assistance.de^* www.axinom.com##div[id="cookieConsent"]:remove() www.ispringsolutions.com##*[class^="cookie-popup-eu"]:remove() ||events.api.boomtrain.com/event/track$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tg1.aniview.com/api/adserver/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css downloadtutorials.net##div[itemtype="https://schema.org/WPAdBlock"]:remove() ||adehimalow.xyz^* ||d3hib26r77jdus.cloudfront.net^* ||heriverafte.xyz^* ||kuleqasfors.one^* www.udemy.com##+js(remove-attr, controlslist, , stay) www.edx.org##div[class^="edx-cookie-banner"]:remove() support.discord.com##+js(remove-class, required, , stay) ||enit.in/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||screenshotfactory.com^* skincarie.com##ins[class*="adCreator"]:remove() skincarie.com##div[id="orquidea-slideup"]:remove() skincarie.com##+js(remove-class, disabled, #getlink, stay) skincarie.com##div[id^="Ad.Plus-"]:remove() skincarie.com##div[id^="div-gpt-ad-"]:remove() skincarie.com##script[id="purpleads-client"]:remove() enit.in##div[id="orquidea-slideup-ad-slot"]:remove() !enit.in##input[name="ad_form_data"]:remove() enit.in##div[id^="gpt-passback_"]:remove() enit.in##div[id="orquidea-slideup"]:remove() ||mostongou.com^* ||wadmargincling.com^* ||athitmontopon.com^* ||www.profitablegatetocontent.com^* ||teefuthe.com^* ||gqkwnllokgaf.com^* ||adshort.space/script_ad.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css go.techgeek.digital##+js(remove-class, disabled, #getlink, stay) go.techgeek.digital##div[id^="div-gpt-ad-"]:remove() go.techgeek.digital##div[class="alert alert-danger"]:has-text(Please disable Adblock):remove() go.techgeek.digital##+js(abort-on-property-write, document.oncontextmenu) go.techgeek.digital##+js(abort-on-property-read, document.oncontextmenu) go.techgeek.digital##+js(acs, googletag) go.techgeek.digital##+js(set-constant, _qasp, []) go.techgeek.digital##+js(abort-on-property-write, _qasp) go.techgeek.digital##+js(abort-on-property-read, _qasp) go.techgeek.digital##+js(set-constant, adBlockNotDetected, trueFunc) go.techgeek.digital##+js(set-constant, adBlockDetected, falseFunc) go.techgeek.digital##+js(set-constant, window.adblockDetector, noopFunc) go.techgeek.digital###adb-not-enabled:style(display: block !important;) go.techgeek.digital###adb-enabled:style(display: none !important;) go.techgeek.digital##a[class^="btn-main get-link"]:remove-class(disabled) go.techgeek.digital##a[class^="btn-main get-link"]:remove-attr(onclick) go.techgeek.digital##+js(set-constant, isPrivateMode, false, stay) go.techgeek.digital##button[class="btn btn-primary"]:remove-attr(onclick) go.techgeek.digital##button[id="invisibleCaptchaShortlink"]:remove-attr(onclick) go.techgeek.digital##+js(aeld, { "type": "/click/", "pattern": "/onclick/", "log": 2 }) !go.techgeek.digital##+js(aeld, { "type": "/click/", "pattern": "/^/", "log": 2 }) ! (nostif, /^function\(\)/) kills the countdown timer !go.techgeek.digital##+js(no-setTimeout-if, /^function\(\)/) !go.techgeek.digital##+js(set-constant, checkAdblockUser, noopFunc) ! #ad-banner is checked by checkAdblockUser(); !go.techgeek.digital##div[id="ad-banner"]:remove() ! ads.js creates #ad-banner !||go.techgeek.digital/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css recorder.easeus.com##div[id="float_box"]:remove() obsproject.com##div[class="u-bottomFixer js-bottomFixTarget"]:has(li[class*="notice--cookie"]):remove() hansdegoede.livejournal.com##div[cookies-alert]:remove() www.learncpp.com##div[id="ezmobfooter"]:remove() www.learncpp.com##div[class*="ezo_ad"]:remove() www.learncpp.com##span[class*="ezoic-ad"]:remove() www.learncpp.com##span[class*="adtester-container"]:remove() www.learncpp.com##+js(aopr, ez_ad_units) www.learncpp.com##+js(aopw, ez_ad_units) www.learncpp.com##+js(aopr, __ezaps) www.learncpp.com##+js(aopw, __ezaps) pallycon.com##div[id="catapult-cookie-bar"]:remove() ||analytics.driverscloud.com^* www.androidgreek.com##ins[data-ad-client]:remove() ||www.primeos.in/wp-content/uploads/*/Sidebar-Ad$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css explorelinux.com##div[class*="ezo_ad"]:remove() explorelinux.com##span[class*="ezoic-ad"]:remove() explorelinux.com##span[class*="adtester-container"]:remove() ||www.sfchronicle.com/hdn/dynamic/hnpprivacy-min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.sfchronicle.com/file/305/7/3057-gdpr-min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.sfchronicle.com##div[class="fancybox-wrap fancybox-desktop fancybox-type-html fancybox-opened"]:remove() www.sfchronicle.com##div[class="belowMastheadWrapper"]:remove() www.sfchronicle.com##div[class*="adModule"]:remove() www.sfchronicle.com##+js(aopr, BCTracker) www.sfchronicle.com##+js(aopw, BCTracker) www.sfchronicle.com##+js(aopr, displayStatus) www.sfchronicle.com##+js(aopw, displayStatus) www.sfchronicle.com##+js(aopr, iscript) www.sfchronicle.com##+js(aopw, iscript) www.sfchronicle.com##+js(acs, hideArticle) www.sfchronicle.com##+js(acs, bcTrackData) www.sfchronicle.com##div[class^="bcPaywall"]:remove() www.sfchronicle.com##div[id="bcSFCPaywall"]:remove() www.sfchronicle.com##+js(remove-class, fancybox-overlay, , stay) www.sfchronicle.com##+js(remove-class, fancybox-overlay-fixed, , stay) www.sfchronicle.com###bc_overlay_paywall:remove() www.sfchronicle.com##div[class="bc_header_placeholder"]:remove() www.sfchronicle.com##+js(set-constant, window.tregEnabled, false, stay) www.sfchronicle.com##+js(set-constant, omni_paywallSite, 0, stay) www.sfchronicle.com##+js(set-constant, HDN.dataLayer.paywall.premiumStatus, null, stay) !www.sfchronicle.com##*[class*="article--content"]:style(overflow: scroll !important;) !www.sfchronicle.com##main:style(overflow: scroll !important;) ! fixes scrollbar but prevents inline pictures www.sfchronicle.com^$inline-script www.get-itsolutions.com##div[class*="ezo_ad"]:remove() www.get-itsolutions.com##span[class*="ezoic-ad"]:remove() www.get-itsolutions.com##span[class*="adtester-container"]:remove() www.get-itsolutions.com##+js(aopr, ez_ad_units) www.get-itsolutions.com##+js(aopw, ez_ad_units) www.thedrive.com##div[class="empire-content__mobile-prefill-container empire-prefill-container-injected"]:remove() www.thedrive.com##div[class="empire-content__desktop__articles-prefill-container empire-prefill-container-injected"]:has(div[class*="tadm_ad_unit"]):remove() www.thedrive.com##div[class="empire-below_content__desktop__articles-prefill-container empire-prefill-container-injected"]:has(div[class*="tadm_ad_unit"]):remove() www.thedrive.com##div[class*="tadm_ad_unit"]:remove() ||smetrics.trellix.com^* ||tag.demandbase.com^* ||musarubra.demdex.net^* ||amazon.partners.tremorhub.com^* ||hosteagle.club/pagead/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hosteagle.club/adsid/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css dualless.dllplayer.com##div[data-ad-client]:remove() dualless.dllplayer.com##ins[data-ad-client]:remove() www.digieffects.com##div[class*="atf_adWrapper"]:remove() www.digieffects.com##div[class*="wgAd-loaded"]:remove() www.digieffects.com##div[id^="wgAdPlacement"]:remove() ||fpofvdovrk.com^* www.radzen.com##div[id="cookie-bar"]:remove() ||dishphysics.com^* ||peeredgerman.com^* oko.sh##a[href*="://taghaugh.com/"]:remove() oko.sh##a[href*="://dishphysics.com/"]:remove() oko.sh##+js(aopr, window.googletag) oko.sh##+js(aopw, window.googletag) oko.sh##+js(aopr, adtrue_tags) oko.sh##+js(aopw, adtrue_tags) oko.sh##div[id^="adtrue_tag"]:remove() oko.sh,ckk.ai##div[id^="pf-"]:remove() ||ourhugenews.com^* ||mrktserve.com^* ||audio-players.com^* ||saqedtjcqtoqc.com^* ||shauksug.com^* www.freecodecamp.org##div[class*="ad-wrapper"]:remove() ankitsharmablogs.com##aside[id^="eu_cookie_law"]:remove() camstudio.org##ins[data-ad-client]:remove() camstudio.org##+js(aopr, adsbygoogle) camstudio.org##+js(aopw, adsbygoogle) ||saving-files.com^* ||smartblocker.org^* ||d2kpucccxrl97x.cloudfront.net^* ||rtoomany.buzz^* ||polerenewget.buzz^* ||dictatormiserablealec.com^* ||toherburked.com^* ||tincalsamiably.website^* ||track.rtbadspheremedia.com^* ||click-eu.pclk.name^* ||www.jhlcrejfi.com^* ||www.mycruhmeaoy.com^* ||adforyounews.com^* publuu.com##div[id="cookies-regulation"]:remove() !||stat.publuu.com/publishers/4002/logs/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stat.publuu.com^* skincarie.com##div[id^="gpt-passback"]:remove() enit.in##+js(remove-attr, onclick, a, stay) enit.in##+js(remove-class, disabled, a, stay) ||ponuadema.com^* ||tartator.com^* ||mitly.us/links/popad$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.fullversionforever.com##object[id^="ai-adb-"]:remove() www.fullversionforever.com##ins[data-ad-client]:remove() www.arcadepunks.com##div[class*="-gprd-law"]:remove() www.arcadepunks.com##div[class="adsDiv"]:remove() www.arcadepunks.com##ins[data-ad-client]:remove() www.arcadepunks.com##div[class*="penci-google-adsense"]:remove() !www.arcadepunks.com##div[class*="penci_archive_ad_below"]:remove() !www.arcadepunks.com##div[class*="penci_archive_ad_above"]:remove() www.arcadepunks.com##div[class*="penci_archive_ad_"]:remove() techdows.com##span[class*="ezoic-ad"]:remove() techdows.com##span[class*="adtester-container"]:remove() techdows.com##+js(aopr, ez_ad_units) techdows.com##+js(aopw, ez_ad_units) techdows.com##+js(aopr, __ez) techdows.com##+js(aopw, __ez) collider.com##div[id^="ad-zone-"]:remove() collider.com##div[id^="div-gpt-ad"]:remove() collider.com##div[id^="adsninja-ad-zone"]:remove() collider.com##div[id^="dynamically-injected-refresh-ad-zone"]:remove() collider.com##+js(set-constant, window.websiteSentinel, false) collider.com##+js(aopr, window.websiteSentinel) collider.com##+js(aopw, window.websiteSentinel) collider.com##+js(remove-node-text, script, /window\.websiteSentinel\s?=/gm) collider.com##+js(set-constant, window.bidderTypeLibraryPrebidScriptLocation, "") collider.com##+js(aopr, window.bidderTypeLibraryPrebidScriptLocation) collider.com##+js(aopw, window.bidderTypeLibraryPrebidScriptLocation) collider.com##+js(remove-node-text, script, /window\.bidderTypeLibraryPrebidScriptLocation\s?=/gm) collider.com##+js(set-constant, window.bidderTypeLibraryAmazonScriptLocation, "") collider.com##+js(aopr, window.bidderTypeLibraryAmazonScriptLocation) collider.com##+js(aopw, window.bidderTypeLibraryAmazonScriptLocation) collider.com##+js(remove-node-text, script, /window\.bidderTypeLibraryAmazonScriptLocation\s?=/gm) collider.com##+js(set-constant, window.imaSDKScriptLocation, "") collider.com##+js(aopr, window.imaSDKScriptLocation) collider.com##+js(aopw, window.imaSDKScriptLocation) collider.com##+js(remove-node-text, script, /window\.imaSDKScriptLocation\s?=/gm) collider.com##+js(set-constant, window.adsNinjaWorkerScriptLocation, "") collider.com##+js(aopr, window.adsNinjaWorkerScriptLocation) collider.com##+js(aopw, window.adsNinjaWorkerScriptLocation) collider.com##+js(remove-node-text, script, /window\.adsNinjaWorkerScriptLocation\s?=/gm) collider.com##+js(set-constant, window.adsNinjaScriptLocation, "") collider.com##+js(aopr, window.adsNinjaScriptLocation) collider.com##+js(aopw, window.adsNinjaScriptLocation) collider.com##+js(remove-node-text, script, /window\.adsNinjaScriptLocation\s?=/gm) collider.com##+js(set-constant, window.adsNinjaAdBehaviourOptions, {}) collider.com##+js(aopr, window.adsNinjaAdBehaviourOptions) collider.com##+js(aopw, window.adsNinjaAdBehaviourOptions) collider.com##+js(remove-node-text, script, /window\.adsNinjaAdBehaviourOptions\s?=/gm) collider.com##+js(set-constant, window.isUserVerified, true) collider.com##+js(trusted-replace-node-text, script, /window\.isUserVerified\s?=\s?false/gm, window.isUserVerified = true) collider.com##+js(set-constant, window.isInternalTraffic, true) collider.com##+js(trusted-replace-node-text, script, /window\.isInternalTraffic\s?=\s?false/gm, window.isInternalTraffic = true) collider.com##+js(set-constant, VALNET_GLOBAL_ISADBLOCK, false) collider.com##+js(trusted-replace-node-text, script, /var VALNET_GLOBAL_ISADBLOCK\s?=\s?true/gm, VALNET_GLOBAL_ISADBLOCK = false) collider.com##+js(trusted-set-constant, VALNET_GLOBAL_ADS, "noAds") collider.com##+js(trusted-replace-node-text, script, /var VALNET_GLOBAL_ADS\s?=\s?"showAds"/gm, VALNET_GLOBAL_ADS = "noAds") collider.com##+js(set-constant, valnet_hideAds, true) collider.com##+js(trusted-replace-node-text, script, /var valnet_hideAds\s?=\s?false/gm, var valnet_hideAds = true) collider.com##+js(aopr, window.adsNinja) collider.com##+js(aopw, window.adsNinja) collider.com##+js(remove-node-text, script, /window\.adsNinja\s?=/gm) collider.com##+js(aopr, gads) collider.com##+js(aopw, gads) collider.com##+js(remove-node-text, script, /var gads\s*=/gm) collider.com##+js(aopr, campaign) collider.com##+js(aopw, campaign) collider.com##+js(remove-node-text, script, /var campaign\s?=/gm) collider.com##+js(set-constant, googletag.pubads, noopFunc, complete) collider.com##+js(remove-node-text, script, /googletag\.pubads\(\)/gm) collider.com##+js(set-constant, googletag.defineSlot, noopFunc, complete) collider.com##+js(remove-node-text, script, /googletag\.defineSlot\(/gm) collider.com##script[id="optimera-ops"]:remove() ||collider.com/public/build/valnet-header-ads.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css docs.realmlist.eu##div[aria-label="Cookies"]:remove() ||integrations.gitbook.com/v1/integrations/googleanalytics/installations/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||s2l.sendtonews.com/stn_trk.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.resonate.com/analytics.js/v1/200302733/analytics.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.resonate.com/analytics.js/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mbid.marfeelrev.com^* ||www.linkedin.com/lynda/tracking$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.linkedin.com/li/track$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.linkedin.com/platform-telemetry/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.linkedin.com/countserv/count/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.linkedin.com/countserv/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.linkedin.com/csp/dtag$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.linkedin.com/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.linkedin.com##div[class*="_notice_1ywt5s"]:upward(1):remove() www.linkedin.com##div[id="organization_guest_contextual-sign-in"]:remove() www.linkedin.com##div[id="artdeco-global-alert-container"]:remove() www.linkedin.com##div[id="base-contextual-sign-in-modal"]:remove() www.linkedin.com##+js(aopr, window.impressionTracking) www.linkedin.com##+js(aopw, window.impressionTracking) www.dexerto.com##div[data-ad-unit-id]:remove() www.dexerto.com##div[data-placeholder="ad"]:remove() www.dexerto.com##div[data-cy="GoogleAd"]:remove() www.dexerto.com##div[data-openweb-ad="true"]:remove() www.dexerto.com##div[class*="adhesiveAdWrapper"]:remove() www.dexerto.com##div[id^="browsi_adContainer"]:remove() www.dexerto.com##noscript[id="comscore-noscript"]:remove() www.dexerto.com##aside[data-cy="Sidebar"]:remove() www.dexerto.com##div[class^="flex flex-col items-center"]:has(div[class*="text-center"]:has-text(Article continues after ad)):remove() www.dexerto.com##div[class="w-full flex items-center justify-center top-0 left-0 lg:min-h-[256px] aspect-[390/219] md:aspect-[192/35] min-h-[56px] bg-neutral-grey p-2"]:remove() www.dexerto.com##script[id="admiral-script"]:remove() www.dexerto.com##+js(remove-node-text, script, /admiral_getConsentForGTM\s?=/gm) www.dexerto.com##iframe[id="rufous-sandbox"]:remove() www.dexerto.com##iframe[id="arcframe1"]:remove() www.dexerto.com##iframe[name]:matches-attr(name=/^__\S+Locator$/):remove() blog.youtube##div[id="cookieBar"]:remove() gameloop.en.softonic.com##div[id="top-leaderboard-article-page-desktop-wrapper"]:remove() gameloop.en.softonic.com##div[id="top-banner-article-page-desktop-wrapper"]:remove() gameloop.en.softonic.com##div[id="bottom-leaderboard-article-page-desktop-wrapper"]:remove() gameloop.en.softonic.com##div[class="sam-slot__wrapper sam-slot--sticky"]:remove() www.psd2html.com##div[class="war-in-ukraine"]:remove() ||evermoto.xyz^* ||d3numuoibysgi8.cloudfront.net^* ||hisgames.org/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d3rb9wasp2y8gw.cloudfront.net^* ||reswsentativ.xyz^* ||andamafraidt.xyz^* www.artec3d.com##div[id="modal_cookie"]:remove() www.artec3d.com##div[id="sliding-popup"]:remove() spectrum.ieee.org##div[class*="gdpr-cookie"]:remove() spectrum.ieee.org##div[id^="rblad-"]:remove() spectrum.ieee.org##div[class*="rblad-"]:remove() spectrum.ieee.org##div[class*="rbl-ad"]:remove() spectrum.ieee.org##div[id="sSS_Default_Post_0_0_20_0_0_1_1"]:remove() ||irene-eux.com^* clipchamp.com##a[href="/en/legal/cookies/"]:upward(4):remove() clipchamp.com##+js(aopr, enableFacebookPixelSnippet) clipchamp.com##+js(aopw, enableFacebookPixelSnippet) ||app.clipchamp.com/v2/location$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.sonantic.io##div[class^="cookieConsent"]:remove() www.javascripttutorial.net##div[class*="ad-"]:has(div[id^="Ad.Plus-"]):remove() www.javascripttutorial.net##div[id="carbon-block"]:remove() www.javascripttutorial.net##div[class*="carbon-ads"]:remove() www.javascripttutorial.net##+js(aopr, carbonScript) www.javascripttutorial.net##+js(aopw, carbonScript) recvfanremake.webnode.es##section[id="cookiebar"]:remove() ||www.youtube-nocookie.com/youtubei/v1/log_event$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css crimsontech.jp##div[id^="cookie-law-info"]:remove() crimsontech.jp##div[id="cliSettingsPopup"]:remove() courseclub.me##div[id^="mdp-deblocker-"]:remove() courseclub.me##div[class*="adloc-show-"]:remove() courseclub.me##div[id="better-ads-"]:remove() courseclub.me##div[class*="widget_better-ads"]:remove() courseclub.me##ins[data-ad-client]:remove() courseclub.me##+js(acs, decodeURIComponent) courseclub.me##+js(set-constant, adsBlocked, falseFunc) courseclub.me##+js(set-constant, window.mdpDeBlockerDestroyer, false) courseclub.me##+js(set-constant, disableTextSelection, noopFunc) courseclub.me##+js(set-constant, disableContextMenu, noopFunc) courseclub.me##+js(set-constant, disableHotKeys, noopFunc) courseclub.me##+js(set-constant, disableDeveloperTools, noopFunc) livsavr.co##div[id="ezmobfooter"]:remove() livsavr.co##span[class*="ezoic-ad"]:remove() livsavr.co##span[class*="adtester-container"]:remove() livsavr.co##+js(aopr, ez_ad_units) livsavr.co##+js(aopw, ez_ad_units) livsavr.co##span[id^="ezoic-pub-ad"]:remove() livsavr.co##div[class*="idblog-floatbanner"]:remove() !livsavr.co##+js(acs, decodeURIComponent) livsavr.co##+js(aopr, __ez_fad_floatshowd) livsavr.co##+js(aopw, __ez_fad_floatshowd) livsavr.co##div[class$="-wrapper"]:has(div[class*="-modal"]):remove() livsavr.co##div[class$="-blackout active"]:remove() livsavr.co##^script:has-text(/debugger;/):remove() !livsavr.co##+js(trusted-replace-node-text, script, /^debugger;/gm, "") livsavr.co##+js(remove-node-text, script, /debugger;/gm) livsavr.co##:xpath(//script[contains(text(), 'debugger;')]):remove() ! TODO: Really abort on debugger as that is what the debugger statement already does? livsavr.co##+js(acs, /debugger;/) livsavr.co##+js(aopr, _audins_dom) livsavr.co##+js(aopw, _audins_dom) livsavr.co##*:style(filter: blur(0px) !important; -webkit-filter: blur(0px) !important;) www.awwwards.com##div[id="banner-cookies"]:remove() ||tracker.metricool.com^* ||mansernema.com^* ||fhisladyloveh.xyz^* ||syenitetatler.tech^* ||xml-v4.fastdmr.com^* ||medadelem.xyz^* devicetests.com##div[data-position="bottom_adhesive"]:remove() ! remove() is necessary for these to prevent lazy load of ad banners devicetests.com##div[data-adid]:remove() devicetests.com##div[id^="adngin-"]:remove() windows10gadgets.pro##div[class*="uawar"]:remove() windows10gadgets.pro##div[id="flyingads"]:remove() windows10gadgets.pro##ins[data-ad-client]:remove() windows10gadgets.pro##img[src*="advertisement.gif"]:remove() windows10gadgets.pro##+js(aopr, adsbygoogle) windows10gadgets.pro##+js(aopw, adsbygoogle) ||aab.devicetests.com^* ||ssl.1.damoh.chip.de/hic_qos?ads&adserv=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.chip.de##div[id="notice"]:upward(1):remove() www.chip.de##div[id^="contentad-topbanner-"]:upward(1):remove() www.chip.de##div[class*="contentad-topbanner"]:remove() www.chip.de##div[class*="contentad-commercial"]:remove() www.chip.de##div[class*="contentad-top-adsense"]:remove() oldgamesdownload.com##div[class*="cmplz-cookiebanner"]:remove() oldgamesdownload.com/wp-content/plugins/complianz-gdpr-premium/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tracking.digitalocean.com^* !||ats-wrapper.privacymanager.io/ats-modules/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ats-wrapper.privacymanager.io^* !||launchpad.privacymanager.io/latest/launchpad.bundle.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||launchpad.privacymanager.io^* ||www.samsclub.com/px/PXsLC3j22K/xhr/b/s/beacon$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||samsclub-app.quantummetric.com^* !||beacon.samsclub.com/rum.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||beacon.samsclub.com^* !||cdn.quantummetric.com/instrumentation/1.32.11/quantum-samsclub.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.quantummetric.com/instrumentation/*/quantum-samsclub.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.quantummetric.com/bootstrap/quantum-samsclub.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css disqus.com##div[data-role="ad-content"] disqus.com##div[class*="ad-slot-wrapper"] disqus.com##div[class*="ad__"] ||video.ktkjmp.com/adsbygoogle.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||creative.xlivrdr.com/widgets/Spot/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||creative.xlivrdr.com^* ||kemono.party/onomek$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gsinspiring.xyz^* ||mywifecon.xyz^* !||enit.in/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||enit.in/ads/footer.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||lanza.me/pag/inter/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.exmarketplace.com/bidder/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||yahoo.adtrackers.net^* azmath.info##+js(aopw, document.onkeydown) azmath.info##+js(aopr, document.onkeydown) scratch247.info##+js(aopw, document.onkeydown) scratch247.info##+js(aopr, document.onkeydown) scratch247.info##+js(aeld, contextmenu) azmath.info##+js(aeld, contextmenu) azmath.info##div[data-adunitid]:remove() scratch247.info##div[data-adunitid] azmath.info##div[id="adb_detected"] scratch247.info##div[id="adb_detected"] azmath.info##+js(aopw, e.d7b2) azmath.info##+js(aopr, e.d7b2) scratch247.info##+js(aopw, e.d7b2) scratch247.info##+js(aopr, e.d7b2) azmath.info##+js(aopw, _0x623e) azmath.info##+js(aopr, _0x623e) scratch247.info##+js(aopw, _0x623e) scratch247.info##+js(aopr, _0x623e) azmath.info##+js(acs, _0x967ex2) scratch247.info##+js(acs, _0x967ex2) scratch247.info##script[id^="vidcrunchJS"]:remove() azmath.info##script[id^="vidcrunchJS"]:remove() azmath.info##div[id="d7b2"]:remove() scratch247.info##div[id="d7b2"]:remove() azmath.info##+js(remove-attr, oncontextmenu, body) scratch247.info##+js(remove-attr, oncontextmenu, body) azmath.info##+js(remove-attr, onclick, #proceed) scratch247.info##+js(remove-attr, onclick, #proceed) scratch247.info##div[class="form-group"]:style(display: inline-block !important;) azmath.info##div[class="form-group"]:style(display: inline-block !important;) azmath.info##div[id="a11y-label"]:style(display: inline-block !important;) scratch247.info##div[id="a11y-label"]:style(display: inline-block !important;) scratch247.info##input[id="proceed"]:style(display: inline-block !important;) azmath.info##input[id="proceed"]:style(display: inline-block !important;) azmath.info##+js(remove-attr, disabled, #link) scratch247.info##+js(remove-attr, disabled, #link) azmath.info##+js(remove-attr, disabled, #proceed) scratch247.info##+js(remove-attr, disabled, #proceed) azmath.info##+js(set-constant, currentTime, 0, stay) scratch247.info##+js(set-constant, currentTime, 0, stay) scratch247.info##button[id="proceed"]:style(display: inline-block !important;) azmath.info##button[id="proceed"]:style(display: inline-block !important;) ||scratch247.info/wp-content/plugins/chp-ads-block-detector/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||azmath.info/wp-content/plugins/chp-ads-block-detector/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css azmath.info##div[id="content"]:style(display: inline-block !important;) scratch247.info##div[id="content"]:style(display: inline-block !important;) azmath.info##+js(acs, ftsgjuVNAhxR) scratch247.info##+js(acs, ftsgjuVNAhxR) scratch247.info##img[src$="/wp-content/plugins/chp-ads-block-detector/assets/img/icon.png"]:upward(6):remove() azmath.info##img[src$="/wp-content/plugins/chp-ads-block-detector/assets/img/icon.png"]:upward(6):remove() ||scratch247.info/wpsafelink.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||azmath.info/wpsafelink.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||n33d0nem0re.com^* ||cdn.vidcrunch.com/integrations/*/Monetiza_*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css financerites.in##iframe[id^="adsbox_ex_"] ||financerites.in/wp-content/plugins/ad-inserter/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.darkhorizons.com##ins[data-ad-client]:remove() www.darkhorizons.com##+js(aopw, adsbygoogle) www.darkhorizons.com##+js(aopr, adsbygoogle) ||activation.cyberlink.com^* ||analytics.wondershare.cc^* ||antipiracy.wondershare.com^* www.onmsft.com##div[class*="header-ad"]:remove() www.onmsft.com##div[class*="sidebar-ad"]:remove() deluxe.news##iframe[id^="google_ads_"]:remove() deluxe.news##ins[data-ad-client]:remove() deluxe.news##+js(aopw, adsbygoogle) deluxe.news##+js(aopr, adsbygoogle) ||pureinfotech.com/wp-content/plugins/google-analytics-for-wordpress/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css pureinfotech.com##+js(aopw, bsa_optimize) pureinfotech.com##+js(aopr, bsa_optimize) pureinfotech.com##+js(aopw, mi_track_user) pureinfotech.com##+js(aopr, mi_track_user) pureinfotech.com##div[id^="bsa-zone_"]:remove() ||duscleouphes.com^* ||singlwirre.click^* ||fyncenter.com^* ||pelagicmismate.com^* ||wirratailage.com^* ||d38rrxgee6j9l3.cloudfront.net^* ||avellingand.xyz^* ||efarketingplan.xyz^* ||rhearthinkchlo.xyz^* ||mployeesihi.xyz^* ||d2jp87c2eoduan.cloudfront.net^* ||econtinue.xyz^* ! block Pega platform web browser sharing (co-browse) ||us.cobrowse.pega.com^* educatiocenter.online##div[id="modalpop"]:remove() educatiocenter.online##+js(remove-attr, oncontextmenu, body) www.minitool.com##div[id^="page-top-ad"]:remove() www.minitool.com##div[id^="article-sidebar-ad"]:remove() www.minitool.com##div[id^="page-bottom-fixed-ad"]:remove() www.minitool.com##pxf[id^="pxft-ad-"]:remove() www.minitool.com##*[class*="bottom-cookie-"]:remove() www.minitool.com##+js(aopw, window.googletag) www.minitool.com##+js(aopr, window.googletag) ||serv-vdo.pixfuture.com/vpaid/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.advancedinstaller.com##div[id="cookies"]:remove() opengapps.org##div[class*="mdl-snackbar"]:remove() opengapps.org##div[id="bota"]:remove() opengapps.org##div[id="topa"]:remove() ||d1hgdmbgioknig.cloudfront.net^* ||urtseysadm.one^* ||theappyrinc.buzz^* !||ghb.platform.vidcrunch.com/adunit/tracking$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ghb.platform.vidcrunch.com/adunit/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||techacode.com/wpsafelink.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api-js.mixpanel.com/track/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css filen.io##div[id="cookie-consent"] ||archeswethers.live^* ||detinetcallant.com^* ||taxedborley.com^* ||syringekineses.website^* ||prolatecyclus.com^* ||cdn.adsfirm.com^* ||cdn.adsfcdn.com^* ||serve.adtrackers.net^* ||linkszia.co/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.ergadx.com/js/2176/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.ergadx.com^* ||app.web3ads.net^* ||webtrafic.ru/ads.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dvypar.com^* ||renomeeguze.com^* ||au.web3ads.net^* !||torrentz.adtrackers.net/mgid/ad.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||torrentz.adtrackers.net^* !||zoover.bannertrack.net/shared/bannerpages/darttagsbanner.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||zoover.bannertrack.net^* !||udbaa.com/bnr.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||udbaa.com^* ||ajxx98.online^* ||grefutiwhe.com^* !||data.adop.cc/collect.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||data.adop.cc^* !||compass.adop.cc/RE/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||compass.adop.cc^* ||adopdmp.adop.cc^* ||serv.ergadx.com^* ||servt.ergadx.com^* ||tg1.ergadx.com^* ||p29116.nonotro.name^* !||tracot.com/v2/a/prl/vst/204566$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tracot.com^* ||examtadka.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css examtadka.com##+js(aopw, _0x57e0) examtadka.com##+js(aopr, _0x57e0) lazyadmin.nl##div[class*="adthrive-ad"]:remove() store.rg-adguard.net##ins[data-ad-client]:remove() store.rg-adguard.net##+js(aopw, adsbygoogle) store.rg-adguard.net##+js(aopr, adsbygoogle) www.xsplit.com##div[id="cookiebar"]:remove() stealthoptional.com##div[class*="ad-wrapper"]:remove() stealthoptional.com##div[class*="ad-container"]:remove() ||pb-logs.media.net/log$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||hbxlp.media.net/log$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||navvy.media.net/log$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||i.forbesimg.com/welcomead/scripts/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||i.forbesimg.com/scripts/adframe.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||horizon.forbes.com/horizon/track$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||d.email.forbes.com/track.v2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||images.forbes.com/scripts/omniture/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||images.forbes.com/scripts/simple_reach.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fast.forbes.com/fps/cookie_backup.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fast.forbes.com/fps/cookie_callback.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.forbes.com/pepe/track.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.forbes.com/pepe2/track.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.forbes.com/workbox/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.forbes.com/service-worker.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.forbes.com/zephr/features$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! TODO: Does the left rail in the following rule always contain only ads? forbes.com##div[id^="google_ads_iframe"]:remove() forbes.com##div[id^="top-ad"]:remove() www.forbes.com##div[class="body-container"]:has(div[class="article-headline-container"]):style(max-width: 99vw !important; width: 99vw !important;) www.forbes.com##.fs-article:style(max-width: 100% !important;) ! The following rule is needed to keep the left-side of the main page content from being pushed off the page to the left. www.forbes.com##div[class="right-rail"]:remove() www.forbes.com##*[class*="cnx-ad-"]:remove() www.forbes.com##fbs-ad:remove() www.forbes.com##article[class*="pay-wall-content"]:remove-class(pay-wall-content) www.forbes.com##article[class*="ads-loaded"]:remove-class(ads-loaded) www.forbes.com##div[class^="zephr-ad-block-detected"]:remove() www.forbes.com##div[class="left-rail"]:remove() www.forbes.com##div[class="footer-ad-labeling"]:remove() www.forbes.com##div[class*="vestpocket"]:style(min-height: 0px !important;) www.forbes.com##div[class*="top-ad"]:remove() www.forbes.com##div[class*="fbs-ad-"]:remove() www.forbes.com##div[class*="adrail-destroyed"]:remove() www.forbes.com##div[class*="ad-unit"]:remove() www.forbes.com##div[class*="ad-rail"]:remove() www.forbes.com##iframe[id="mnet"]:remove() www.forbes.com##+js(set-constant, enableAds, noopFunc) www.forbes.com##+js(set-constant, defaultAdConfig, {}) www.forbes.com##+js(set-constant, apstag, noopFunc) www.forbes.com##+js(set-constant, adId, noopFunc) www.forbes.com##+js(set-constant, loadMedianetManagePrebid, noopFunc) www.forbes.com##+js(set-constant, loadMedianetAd, noopFunc) www.forbes.com##+js(set-constant, loadMedianetHeaderBidding, noopFunc) www.forbes.com##+js(set-constant, checkConsentCookieLoaded, trueFunc) www.forbes.com##+js(set-constant, userGaveFullConsent, trueFunc) www.forbes.com##+js(set-constant, userConsentPrefrences, true) www.forbes.com##+js(remove-node-text, script, /const loadMedianetAd\s?=/gm) www.forbes.com##+js(remove-node-text, script, /data\.advertiserLineItemId\s?=/gm) www.forbes.com##+js(remove-node-text, script, /trackerDataWoodford/gm) www.forbes.com##+js(remove-class, pay-wall-content, article[class*="pay-wall-content"]) www.forbes.com##+js(remove-class, ads-loaded, article[class*="ads-loaded"]) www.forbes.com##+js(aopw, trackerDataWoodford) www.forbes.com##+js(aopw, trackerData) www.forbes.com##+js(aopw, defaultAdConfig) www.forbes.com##+js(aopr, trackerDataWoodford) www.forbes.com##+js(aopr, trackerData) www.forbes.com##+js(aopr, defaultAdConfig) www.forbes.com##+js(aeld, AdPlay) ||mcuxdyyvoqooqpl.com^* ||russiaroman.com^* ||spellingunacceptable.com^* ||invaderannihilationperky.com^* ||intimidatekerneljames.com^* ||byehulngkn.com^* www.twitch.tv##div[id="amazon-video-ads-div"]:remove() www.twitch.tv##div[class*="avap-ads-container"]:remove() ||static.twitchcdn.net/assets/features.upsell-bottom-banner.component-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css linkszia.co##div[id="cookie-pop"]:remove() ||thebtcfaucet.com^* ||urbharat.xyz^* ||gateway.sexmessenger.com^* ||jwbvdz.paiatiaidates.com^* ||xozqng.impresivedates.com^* ||b0d1.com^* proviralhost.com##+js(remove-attr, onmouseover, body[onmouseover], stay) examtadka.com##+js(remove-attr, onmouseover, body[onmouseover], stay) linkszia.co##+js(remove-attr, onmouseover, body[onmouseover], stay) ||orgassme.com^* ||m.orgassme.com^* ||chikaveronika.com^* ||t.anmdr.link^* ||a.vfgtc.com^* ||t.ajump1.com^* linkszia.co##meta[name="eroads_"]:remove() linkszia.co##meta[name="adbit-site-verification"]:remove() linkszia.co##meta[name="exoclick-site-verification"]:remove() linkszia.co##meta[name="juicyads-site-verification"]:remove() linkszia.co##div[data-clickadilla-banner]:remove() linkszia.co##iframe[src*="://viewm.moonicorn.network/"]:remove() linkszia.co##+js(remove-class, hidden, #go-submit, stay) linkszia.co##+js(aopw, adsurfebe) linkszia.co##+js(aopr, adsurfebe) linkszia.co##+js(remove-attr, style, div) gamecaster.com##div[class="Growl_growl__F6o6x"]:remove() www.apowersoft.com##div[class="cookie-tip"]:remove() www.theblaze.com##div[class="ad-top-padding"] www.theblaze.com##div[id="top_ad_banner"]:remove() www.theblaze.com##div[id^="div-gpt-ad"]:remove() cycling74.com##div[class*="c74-cookie-check"]:remove() techcyan.com##+js(aopw, ai_insert_code) techcyan.com##+js(aopr, ai_insert_code) techcyan.com##+js(aopw, _0xc17e89) techcyan.com##+js(aopr, _0xc17e89) techcyan.com##+js(aopw, globeAdb) techcyan.com##+js(aopr, globeAdb) techcyan.com##+js(acs, detectADB) techcyan.com##div[id="as15v6d9999gg"]:remove() techcyan.com##div[id^="div-gpt-ad"]:remove() techcyan.com##+js(remove-attr, style, #second-btn", stay) techcyan.com##a[href*="://7EvNmdSRz.click/"]:remove() kiktu.com##a[href*="://7EvNmdSRz.click/"]:remove() ||7evnmdsrz.click^* ||wreddismorce.com^* ||tvbxrr4ym3.click^* ||upshrink.com/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||upshrink.com/vendor/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sandwichesinstinctive.com^* ||aswaystumbly.com^* ||pepperysergeantrisky.com^* ||8ebtdbsjsu.click^* !||macro.adnami.io/macro/hosts/adsm.macro.dexerto.com.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||macro.adnami.io/macro/spec/adsm.macro.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||macro.adnami.io^* ||adsm.macro.dexerto.com^* www.codingem.com##+js(aopw, __ez) www.codingem.com##+js(aopr, __ez) www.codingem.com##+js(aopw, __ez.fads) www.codingem.com##+js(aopr, __ez.fads) www.codingem.com##+js(aopw, ezorbf) www.codingem.com##+js(aopr, ezorbf) www.codingem.com##+js(aopw, __banger_pmp_deals) www.codingem.com##+js(aopr, __banger_pmp_deals) www.codingem.com##+js(aopw, __advertiserRule) www.codingem.com##+js(aopr, __advertiserRule) www.codingem.com##+js(aopw, window.ezogetbrkey) www.codingem.com##+js(aopr, window.ezogetbrkey) www.codingem.com##+js(aopw, _ezaq) www.codingem.com##+js(aopr, _ezaq) www.codingem.com##div[id="ezmobfooter"]:remove() www.codingem.com##script[src^="/detroitchicago/"]:remove() www.codingem.com##*[class*="cnx-ad-"]:remove() www.codingem.com##span[class*="ezoic-ad"]:remove() www.codingem.com##span[class*="adtester-container"]:remove() ||track.mailerlite.com^* thispointer.com##ins[data-ad-client]:remove() thispointer.com##h2[class="widget-title"]:has-text(/Advertisements/i):remove() thispointer.com##+js(aopw, adsbygoogle ) thispointer.com##+js(aopr, adsbygoogle ) deadline.com##div[data-is-adhesion-ad]:remove() deadline.com##div[class*="rail-ads-"]:remove() deadline.com##div[class*="ad-text"]:remove() www.thefocus.news##div[data-ad-type]:remove() www.thefocus.news##iframe[src*="://pre.ads.justpremium.com/"]:remove() ||hereisthecity-d.openx.net^* pakstech.com##ins[data-ad-client]:remove() pakstech.com##div[class*="ezo_ad"]:remove() pakstech.com##span[class*="ezoic-ad"]:remove() pakstech.com##+js(aopw, __ez.fads) pakstech.com##+js(aopr, __ez.fads) pakstech.com##+js(aopw, window.ezmadspc) pakstech.com##+js(aopr, window.ezmadspc) pakstech.com##+js(aopw, __ez_fad_gpt) pakstech.com##+js(aopr, __ez_fad_gpt) pakstech.com##+js(aopw, ezorbf) pakstech.com##+js(aopr, ezorbf) pakstech.com##+js(aopw, window.isEZABL) pakstech.com##+js(aopr, window.isEZABL) pakstech.com##+js(aopw, __inScopeForCCPA) pakstech.com##+js(aopr, __inScopeForCCPA) pakstech.com##script[src*="/detroitchicago/"]:remove() www.bestbuy.com##div[id^="shop-display-ad"]:remove() www.bestbuy.com##div[id*="shop-pushdown-ad"]:remove() ||assets.bbystatic.com/shop/display-ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||assets.bbystatic.com/shop/pushdown-ad/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.bestbuy.com/~assets/bby/_com/analytics-dotcom/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.gamesindustry.biz##div[class^="advert"]:remove() www.gamesindustry.biz##+js(remove-attr, data-ads, body) www.pluralsightone.org##div[class="cookie-notification-wrapper"]:remove() www.skillshare.com##div[id="usercentrics-root"]:remove() www.programiz.com##div[id="summer-sale-popup"]:remove() adblockplus.org##form[class="cookie cookieprompt"]:remove() adblockplus.org##div[id="cookiebar"]:remove() adblockplus.org##+js(remove-class, show-cookies-notice, body) ||ads.brave.software^* ||ads-admin.bravesoftware.com^* ||ads.bravesoftware.com^* ||ads-admin.brave.com^* ||ads-admin.brave.software^* ||stats.brave.com^* www.pythontutorial.net##div[class="whitelist"]:remove() www.pythontutorial.net##div[data-aa-adunit]:remove() www.pythontutorial.net##div[class="ad ad-336"]:remove() ||ads.resetsrv.com^* ||www.increaserev.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css secureads.increaserev.com^* !||increaserev.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||increaserev.com^* computersciencehub.io##span[class*="ezoic-ad"]:remove() computersciencehub.io##span[class*="adtester-container"]:remove() computersciencehub.io##span[class*="ezoic-autoinsert-ad"] computersciencehub.io##+js(aopw, window.ezoAdBackFill) computersciencehub.io##+js(aopr, window.ezoAdBackFill) computersciencehub.io##+js(aopw, __ez.fads) computersciencehub.io##+js(aopr, __ez.fads) computersciencehub.io##+js(aopw, __ez_fad_gptd) computersciencehub.io##+js(aopr, __ez_fad_gptd) computersciencehub.io##+js(aopw, ez_ad_units) computersciencehub.io##+js(aopr, ez_ad_units) computersciencehub.io##div[id="ezmobfooter"]:remove() computersciencehub.io##script[src*="/porpoiseant/fads.js"] ||topawardhere.life^* ||2221.misstarbone.live^* ||repappcloud.com^* ! blocks CSS on some websites !||cdn.shortpixel.ai^* ||www.essvote.net/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.voterview.ar-nova.org##+js(aopw, TrackerURL) www.voterview.ar-nova.org##+js(aopr, TrackerURL) www.voterview.ar-nova.org##div[id="ModalCookiesMustBeEnabled"]:remove() ||weblog.e-himart.co.kr/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||*.adtouch.adbirx.io^* 3dm-games.com##script[src^="data:text/javascript;base64,"]:remove() 3dm-games.com##div[id^="eu_cookie_law_"]:remove() ||payce-google.com^* ||snanpckat-apk.com^* ||vidmates-app.com^* ||paltpal-apk.com^* ||m-apkpures.com^* ||tlktok-apk.link^* ||notepads-plus-plus.org^* ||tocproject.com^* ||thundersbird.org^* ||codevisualstudio.org^* ||braves-browsers.org^* ||ethersmine.com^* kiktu.com##+js(acs, detectADB) kiktu.com##+js(acs, as15v6d9999gg) kiktu.com##div[id="as15v6d9999gg"]:remove() ||adstargets.com/myAdstargets/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css memtest.org##div[aria-label="cookieconsent"]:remove() slidedog.com##section[id="cookiereminder"]:remove() ! remove() doesn't work with :: styles constexpr.org##body::before ! remove() doesn't work with :: styles constexpr.org##body::after ||home.penfed.org/s/sfsites/auraAnalytics$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||smetrics.penfed.org^* !||dynatracesg.penfed.org/bf/$method=post,xhr !||dynatracesg.penfed.org/jstag/managed/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dynatracesg.penfed.org^* www.penfed.org##section[class="banner-cookies banner-cookies--visible"]:remove() www.penfed.org##*[class*="banner-cookies"]:remove() www.ocinside.de##div[id="cookie_box"]:remove() barcode.tec-it.com##div[class^="cookieConsent"]:remove() www.tec-it.com##div[class^="cookieConsent"]:remove() whois-history.whoisxmlapi.com##div[id="bottom-cookie-message-block"]:remove() www.domainiq.com##+js(remove-class, blur, span) www.domainiq.com##+js(remove-class, blur, div) www.slingbox.com##div[id="cookie_policy"]:remove() www.gigabyte.com##div[id="policy-div"]:remove() ||miszonepionic.space^* !||macroschauth.com/rf/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||macroschauth.com^* !||euouaeslurped.com/rIcBic4Le3xZFKg/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||euouaeslurped.com^* !||violondeaf.guru/gd/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||violondeaf.guru^* www.piecex.com##div[class*="cookie-consent"]:remove() www.dennys.com##cookie-banner-placeholder:remove() www.linuxcapable.com##div[id="top-article"]:remove() www.linuxcapable.com##div[class*="code-block-top-side-ads"]:remove() www.cpuid.com##div[class*="widget-advert"]:remove() www.cpuid.com##ins[data-ad-client]:remove() www.ubackup.com##div[class="ensureCookie"]:remove() gparted.org##div[aria-label="cookieconsent"]:remove() ||download-msetup.org^* !||healthyteeth.tips^* ||mp-download.org^* healthyteeth.tips##div[id="cookie-notice"]:remove() healthyteeth.tips/wp-content/plugins/cookie-notice/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.nucleustechnologies.com##div[id="cookieNotice"]:remove() www.thekitchn.com##div[class*="Ad--"]:remove() www.thekitchn.com##div[class*="Post__ad"]:remove() mxlinux.org##div[id="webarx-cookie-notice"]:remove() ||8d861e4c-056c-43c1-b98b-3f58271dcf26.s3.ap-northeast-2.amazonaws.com^* ||qanatn.com^* ||gaut-hil.com^* www.how2shout.com##div[class="text-ads"]:remove() www.how2shout.com##div[class="adsbyvli"]:remove() www.how2shout.com##div[class*="box_ads_content_"]:remove() ||godpvqnszo.com^* www.asrock.com##section[id="AcceptCookies"]:remove() !||turbobitnet1669361143305.delikatsov.com^* ||*.delikatsov.com^* www.openmediavault.org##div[id="cmplz-cookiebanner-container"]:remove() kiktu.com##ins[data-ad-client]:remove() kiktu.com##+js(aopw, adsbygoogle) kiktu.com##+js(aopr, adsbygoogle) upshrink.com##+js(aopw, globeAdb) upshrink.com##+js(aopr, globeAdb) ||azmath.info/kampyle.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||distinctbelieverjustify.com^* ||refpa4903566.top^* ||coinmarketbag.com^* !||svibeacon.onezapp.com/analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||svibeacon.onezapp.com^* forum.sbenny.com##iframe[id^="google_ads_frame"]:remove() ||interviewdegenerateperspective.com^* www.modbaixar.com##div[class="fot-fixd"]:remove() ||rating.downloadatoz.com/cookie/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css wirelessjoint.com##div[aria-label="cookieconsent"]:remove() wirelessjoint.com##div[data-phpbb-ads-id]:remove() ||wirelessjoint.com/assets/cookieconsent/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.nextpit.com##div[class*="gptSlot"]:remove() www.nextpit.com##div[class="cpgSlot cpgSlot__header"]:remove() www.nextpit.com##div[class="cpgSlot cpgSlot__article-recommendation"]:remove() www.nextpit.com##aside[class="articlePart articlePartBanner"] > div[class="cpgSlot cpgSlot__article-content-under-intro"]:remove() www.nextpit.com##div[class="aboveFooterWrapper"] > div[class="cpgSlot cpgSlot__above-footer"]:remove() www.nextpit.com##div[id="sticky-footer-ad"]:remove() www.nextpit.com##div[id="jobbio-horizontal"]:remove() www.nextpit.com##div[id="sky-right-container"]:has(div[id="NEX_D_Sky_Right"]):remove() www.nextpit.com##div[id="sky-left-container"]:has(div[id="NEX_D_Sky_Left"]):remove() www.nextpit.com##div[id="NEX_D_Top"]:remove() www.nextpit.com##iframe[name]:matches-attr(name=/^__\S+Locator$/):remove() www.nextpit.com##+js(trusted-replace-node-text, script, /['"]hideAds['"]:\s?false/gm, "hideAds": true) www.nextpit.com##+js(trusted-replace-node-text, script, /['"]showAds['"]:\s?true/gm, "showAds": false) www.nextpit.com##+js(trusted-replace-node-text, script, /['"]bottom-sticky-ad['"]:\s?['"]ON['"]/gm, "bottom-sticky-ad": "OFF") www.nextpit.com##+js(trusted-replace-node-text, script, /['"]googletag-set-targeting['"]:\s?['"]ON['"]/gm, "googletag-set-targeting": "OFF") www.nextpit.com##+js(trusted-replace-node-text, script, /['"]google-tag-manager['"]:\s?['"]ON['"]/gm, "google-tag-manager": "OFF") www.nextpit.com##+js(trusted-replace-node-text, script, /['"]ads-header['"]:\s?['"]ON['"]/gm, "ads-header": "OFF") www.nextpit.com##+js(trusted-replace-node-text, script, /['"]ads-incontent-word-density-200['"]:\s?['"]ON['"]/gm, "ads-incontent-word-density-200": "OFF") www.nextpit.com##+js(trusted-replace-node-text, script, /['"]AG-2661-articleLazy-ads['"]:\s?['"]ON['"]/gm, "AG-2661-articleLazy-ads": "OFF") www.nextpit.com##+js(trusted-replace-node-text, script, /['"]ads-div-skyscraper_right_1-disabled['"]:\s?['"]ON['"]/gm, "ads-div-skyscraper_right_1-disabled": "OFF") www.nextpit.com##+js(trusted-replace-node-text, script, /['"]ads-div-skyscraper_right_2-disabled['"]:\s?['"]ON['"]/gm, "ads-div-skyscraper_right_2-disabled": "OFF") www.nextpit.com##+js(trusted-replace-node-text, script, /['"]ads-div-skyscraper_right_3-disabled['"]:\s?['"]ON['"]/gm, "ads-div-skyscraper_right_3-disabled": "OFF") www.nextpit.com##+js(trusted-replace-node-text, script, /['"]google-analytics['"]:\s?['"]ON['"]/gm, "google-analytics": "OFF") www.nextpit.com##+js(trusted-replace-node-text, script, /['"]showNagScreen['"]:\s?true/gm, "showNagScreen": false,) www.nextpit.com##+js(remove-node-text, script, /adHandler\.cmd\.push(/gm) ||www.nextpit.com/mod_pagespeed_beacon$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css download.apkmody.fun##+js(remove-attr, onclick, #download-button) ||dipaka-ead.com^* ||managecompletelyquickinfo-file.info^* usersdownload.com##h5[id="title_12324323"]:remove() ||js.mobileoffers-7-o-download.com^* semiconductor.samsung.com##div[id="cookie_component"]:remove() www.razer.com##div[class*="tos-cookies-container"]:remove() ||analytics.300624.com^* www.realvnc.com##div[id="elementor-popup-modal-7516"]:remove() www.draytek.com##div[class="cookie"]:remove() www.rapidseedbox.com##div[id="cookie-notice"]:remove() proxybros.com##div[data-cookies]:remove() linuxtechlab.com##+js(aopw, ez_ad_units) linuxtechlab.com##+js(aopr, ez_ad_units) linuxtechlab.com##div[data-ad-slot]:remove() linuxtechlab.com##span[class*="ezoic-ad"]:remove() linuxtechlab.com##span[class*="adtester-container"]:remove() ||advice-ads.s3.amazonaws.com^* ! The following four rules don't keep the profile page from being redirected if not logged in. !||api.twitter.com/1.1/onboarding/task.json?flow_name=login$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||api.x.com/1.1/onboarding/task.json?flow_name=login$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||abs.twimg.com/responsive-web/client-web/shared~bundle.AboutThisAd~bundle.NotMyAccount~bundle.MultiAccount~bundle.Articles~bundle.AudioSpacePeek~bundl.*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||abs.twimg.com/responsive-web/client-web/shared~loader.DMDrawer~bundle.AccountAnalytics~bundle.AudioSpacePeek~bundle.Birdwatch~bundle.BookmarkFolders~.*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static.ads-twitter.com/uwt.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||static.ads-twitter.com^* ||ads-twitter.com^* ||ads.twitter.com^* ||ads.x.com^* ||ads-api.twitter.com^* ||ads-api.x.com^* ||analytics.twitter.com^* ||analytics.x.com^* ||advertising.twitter.com^* ||advertising.x.com^* x.com,twitter.com##html,body:style(overflow: auto !important;) x.com,twitter.com##div[data-testid="BottomBar"]:remove() x.com,twitter.com##div[data-testid="mask"]:upward(1):remove() x.com,twitter.com##div[data-testid="mask"]:remove() !x.com,twitter.com##div[data-testid="mask"]:has(div[aria-labelledby="modal-header"][role="dialog"], input[id="tim_input"][name="ui_metrics"]):remove() x.com,twitter.com##div[aria-labelledby="modal-header"][role="dialog"]:has(input[id="tim_input"][name="ui_metrics"]):remove() x.com,twitter.com##div[class="css-175oi2r r-12vffkv"][style^="position: absolute; bottom: 0px; width: 100%;"]:remove() ||twitter.com/i/js_inst?c_name=ui_metrics$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||x.com/i/js_inst?c_name=ui_metrics$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||twitter.com/i/csp_report$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||x.com/i/csp_report?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||twitter.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||x.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||twitter.com/push_service_worker.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||x.com/push_service_worker.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||syndication.twitter.com/i/jot/syndication$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||syndication.x.com/i/jot/syndication$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.windows7download.com##ins[data-ad-client]:upward(1):remove() www.windows7download.com##ins[data-ad-client]:remove() www.patreon.com##div[class="root__XMKIj bottomLeft__O0HMt"]:remove() nordvpn.com##div[class*="CookieConsentV2"]:remove() blog.matrixpost.net##div[id="dsgvomiddlewrap"]:remove() pixonic.com##div[id="cmpbox"]:remove() !||fastly.jsdelivr.net/npm/disable-devtool/disable-devtool.min.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||fastly.jsdelivr.net/npm/disable-devtool*/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! just disable the scripts not all content ||fastly.jsdelivr.net/npm/disable-devtool*/*.ts$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||fastly.jsdelivr.net/npm/disable-devtool*/*.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ermin-oxj.info^* ||kzsfip3v.cfd^* ||techthematter.xyz/adsby.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css techthematter.xyz##+js(remove-attr, onclick, #dl, stay) techthematter.xyz##ins[data-ad-client]:remove() techthematter.xyz##+js(aopw, adsbygoogle) techthematter.xyz##+js(aopr, adsbygoogle) nordpass.com##div[id="cookie-consent"]:remove() ||cm.nordpass.com/nordaddy/?event_name=adblock_detection$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||monitor.clickcease.com/stats/stats.aspx$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||monitor.clickcease.com^* ||www.clickcease.com/monitor/stat.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cm.nordpass.com/ads-min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css myaccount.summitutilities.com##div[id="VTX_BrandingHeader"]:remove() myaccount.summitutilities.com##div[id="VTX_Footer"]:remove() fm.solewe.com##div[id="babasbmsgx"]:remove() !fm.solewe.com##div[id="banner_ad"]:remove() fm.solewe.com^script:has-text(banner_ad):remove() www.cablefree.net##div[id="cmplz-cookiebanner-container"]:remove() !||www.cablefree.net/wp-content/uploads/complianz/css/banner-1-optin.css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.cablefree.net/wp-content/uploads/complianz/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css rmprepusb.com##div[id^="cookie-law"]:remove() rmprepusb.com##div[id="cliSettingsPopup"]:remove() discussion.fedoraproject.org##div[aria-label="cookieconsent"]:remove() www.emtec-international.com##div[class*="cookiealert"]:remove() speedify.com##*[id^="cookie-notice-"]:remove() ||speedify.com/wp-content/plugins/cookie-notice/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.sberbank.com##div[data-pid^="KomCookieWarning"]:remove() games.digipen.edu##div[id="cookieToast"]:remove() www.lawyer-turkey.com##div[id="buton"]:remove() www.openpr.com##div[id^="cmpbox"]:remove() www.openpr.com##div[id="ad-leaderboard"]:remove() www.openpr.com##ins[data-ad-client]:remove() www.openpr.com##body:style(overflow: scroll !important;) ! "important" is used in the following two rules to override the @@||consentmanager.net$script,third-party rule from the "Bypass Paywalls Clean" filter list. !||cdn.consentmanager.net/delivery/$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.consentmanager.net^*$important ||a.delivery.consentmanager.net^*$important ||venge.io/adblock.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||api.poki.com/ads/settings$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.poki.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css gofile.io##div[id="adplus-anchor"]:remove() gofile.io##img[alt="adplus-dvertising"]:remove() gofile.io##div[id="adsNordvpn"]:remove() gofile.io##div[id="adsGoogleH"]:remove() gofile.io##div[id="adsAads"]:remove() gofile.io##div[id="adsPlaywire"]:remove() gofile.io##div[id="adsGoogleSquare"]:remove() gofile.io##div[id="adsPix"]:remove() gofile.io##ins[data-ad-client]:remove() www.technopediasite.com##ins[data-ad-client]:remove() www.technopediasite.com##iframe[id^="google_ads_frame"]:remove() www.technopediasite.com##div[aria-label="Close Ads"]:remove() disqus.com##div[class="osano-cm-window__dialog osano-cm-dialog osano-cm-dialog--position_bottom osano-cm-dialog--type_bar"]:remove() support.jdownloader.org##div[class*="cc_banner"]:remove() us.7digital.com##div[data-notice-id="cookie-opt-in"]:remove() maclookup.app##div[id="cc_div"]:remove() www.utomik.com##div[id^="cookiescript_"]:remove() www.programmersmusic.com##div[aria-label="cookieconsent"]:remove() www.highresaudio.com##div[aria-label="cookieconsent"]:remove() www.intrepiduniverse.com##div[id="permission-bar"]:remove() ||lobbydesires.com^* ||letsmakeparty3.ga^* ||deliverygoodstrategies.com^* ||gabriellalovecats.com^* ||css.digestcolect.com^* ||clon.collectfasttracks.com^* ||count.trackstatisticsss.com^* www.enttec.com##div[id="show-gdpr"]:remove() www.enttec.com##div[id="gdpr-notice"]:remove() tv247.us,tv247us.com##header[id="masthead"]:style(position: static !important;) tv247.us,tv247us.com##iframe[src="javascript:false"][style="display: none;"][width="0"][height="0"]:remove() tv247.us,tv247us.com##article[id="post-1978"]:style(width: 99vw !important;) tv247.us,tv247us.com##div[class*="jw-logo"]:remove() tv247.us,tv247us.com##div[class^="afs_ads"]:remove() tv247.us,tv247us.com##div[class*="adsbyvli"]:remove() tv247.us,tv247us.com##div[class*="hantads"]:remove() tv247.us,tv247us.com##div[data-ad-slot]:remove() tv247.us,tv247us.com##div[id="banner_ad"]:remove() tv247.us,tv247us.com##div[id^="afc_sidebar"]:remove() tv247.us,tv247us.com##div[id="vvv"]:style(left: 0px !important; right: 0px !important; padding: 0 !important; margin: 0 !important; border: none !important; border-width: 0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) tv247.us,tv247us.com##div[id="vvv"][class*="vjs-controls-disabled"]:remove-class(vjs-controls-disabled) tv247.us,tv247us.com##+js(remove-class, vjs-controls-disabled, div[id="vvv"][class*="vjs-controls-disabled"]) tv247.us,tv247us.com##+js(add-class, vjs-controls-enabled, div[id="vvv"]) tv247.us,tv247us.com##+js(add-class, jw-flag-cast-available, div[id="vvv"]) tv247.us,tv247us.com##+js(add-class, vjs-has-mouse, div[id="vvv"]) tv247.us,tv247us.com##+js(add-class, vjs-workinghover, div[id="vvv"]) tv247.us,tv247us.com##+js(trusted-set-attr, div[id="vvv"], crossorigin, anonymous) tv247.us,tv247us.com##+js(trusted-set-attr, div[id="vvv"], preload, metadata) !tv247.us,tv247us.com##+js(trusted-set-attr, div[id="vvv"], preload, none) !tv247.us,tv247us.com##+js(trusted-set-attr, div[id="vvv"], preload, auto) ! Do not use the following rule to remove the jw-flag-user-inactive class as this is done automatically when the user interacts with the video player. !tv247.us,tv247us.com##div[id="vvv"][class*="jw-flag-user-inactive"]:remove-class(jw-flag-user-inactive) tv247.us,tv247us.com##div[id="tv247-75013289"]:remove() tv247.us,tv247us.com##input[type="button"][aria-label="play"]:remove-attr(disabled) tv247.us,tv247us.com##+js(remove-class, hantads, div) tv247.us,tv247us.com##+js(acs, eval) tv247.us,tv247us.com##+js(noeval) !tv247.us,tv247us.com##^script:has-text(decodeURIComponent):remove() tv247.us,tv247us.com##+js(remove-node-text, script, /decodeURIComponent/gm) !tv247.us,tv247us.com##+js(acs, decodeURIComponent) tv247.us,tv247us.com##+js(set-constant, b9231331f17013bbdfc6ca79fbe61a84, "") tv247.us,tv247us.com##+js(acs, 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=') tv247.us,tv247us.com##+js(set-constant, advanced_ads_ready, noopFunc) tv247.us,tv247us.com##+js(set-constant, advanced_ads_ready_queue, []) tv247.us,tv247us.com##+js(set-constant, window.advanced_ads_ready_queue, []) tv247.us,tv247us.com##+js(set-constant, window.advanced_ads_ready, []) tv247.us,tv247us.com##+js(acs, advanced_ads_ready) ! Uncaught TypeError: cannot declare global binding 'loadAd': property must be configurable or both writable and enumerable !tv247.us,tv247us.com##+js(set-constant, loadAd, noopFunc) tv247.us,tv247us.com##+js(trusted-replace-node-text, script, /loadAd\(\);/gm, null;) tv247.us,tv247us.com##+js(trusted-replace-node-text, script, /if\s*\(Math\.trunc\(player\.getPosition\(\)\)\s?==\s?timead\)/gm, if (null)) tv247.us,tv247us.com##+js(trusted-replace-node-text, script, /timead\s?=\s?\d+;/gm, timead = 0;) !tv247.us,tv247us.com##+js(set-constant, timead, 0) !tv247.us,tv247us.com##+js(aopw, timead) !tv247.us,tv247us.com##+js(aopr, timead) tv247.us,tv247us.com##+js(remove-node-text, script, /aclib\.runPop\(\{/gm) tv247.us,tv247us.com##+js(set-constant, _stq, []) tv247.us,tv247us.com##+js(aopr, _stq) tv247.us,tv247us.com##+js(aopw, _stq) tv247.us,tv247us.com##+js(acs, /_stq\.push(/) tv247.us,tv247us.com##+js(remove-node-text, script, /_stq\.push\(\[/gm) tv247.us,tv247us.com##^script:has-text(/advanced_ads_ready/):remove() tv247.us,tv247us.com##+js(remove-node-text, script, /advanced_ads_ready/gm) tv247.us,tv247us.com##:xpath(//script[contains(text(), 'advanced_ads_ready')]):remove() /^https?:\/\/(tv247\.us|tv247us\.com)\/aclib\.js/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !*$3p,script,denyallow=c0.wp.com|cdnjs.cloudflare.com|cdn.jsdelivr.net.cdn.cloudflare.net|cdn.jsdelivr.net|jsdelivr.map.fastly.net|jwplayer-dualstack.map.fastly.net|ssl.p.jwpcdn.com|tv247.us|tv247us.com,domain=tv247.us|tv247us.com /^https?:\/\/(?!-)[A-Za-z0-9-]+([\-\.]{1}[A-Za-z0-9]+)*\.[A-Za-z]{2,6}\/?\S*/$3p,script,denyallow=c0.wp.com|cdnjs.cloudflare.com|cdn.jsdelivr.net.cdn.cloudflare.net|cdn.jsdelivr.net|jsdelivr.map.fastly.net|jwplayer-dualstack.map.fastly.net|ssl.p.jwpcdn.com|tv247.us|tv247us.com,domain=tv247.us|tv247us.com ! The following rule is implemented in a broader rule elsewhere in this list. !/^https?:\/\/((?!-)[A-Za-z0-9-]+([\-\.]{1}))?(tv247us\.com|tv247\.us)\/z\-\d{7,}$/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c.popsads.net^* ||adblock-pro-download.com^* ||fumuluckt.com^* ||rentingimmoderatereflecting.com^* ||racingorchestra.com^* portal.av-atlas.org##div[id="cdk-overlay-0"]:upward(2):remove() portal.av-atlas.org##div[id="cdk-overlay-0"]:remove() portal.av-atlas.org##div[class="cdk-overlay-container"]:remove() toolslick.com##div[id="tool-top-right-ad"]:remove() ||metrics.icloud.com^* ||metrics.mzstatic.com^* ||ad.samsungadhub.com^* ||samsungadhub.com^* ||samsung-com.112.2o7.net^* ||business.samsungusa.com^* ||analytics.samsungknox.com^* ||bigdata.ssp.samsung.com^* ||analytics-api.samsunghealthcn.com^* ||analytics.oneplus.cn^* ||click.oneplus.cn^* ||click.oneplus.com^* !||open.oneplus.net^* ||metrics.data.hicloud.com^* ||metrics1.data.hicloud.com^* ||metrics2.data.hicloud.com^* ||metrics3.data.hicloud.com^* ||metrics4.data.hicloud.com^* ||metrics5.data.hicloud.com^* ||logservice.hicloud.com^* ||logservice1.hicloud.com^* ||metrics-dra.dt.hicloud.com^* ||logbak.hicloud.com^* ||api.ad.xiaomi.com^* !||app.chat.xiaomi.net^* ||data.mistat.xiaomi.com^* ||data.mistat.intl.xiaomi.com^* ||data.mistat.india.xiaomi.com^* ||data.mistat.rus.xiaomi.com^* ||sdkconfig.ad.xiaomi.com^* ||sdkconfig.ad.intl.xiaomi.com^* ||globalapi.ad.xiaomi.com^* ||www.cdn.ad.xiaomi.com^* ||tracking.miui.com^* ||sa.api.intl.miui.com^* ||tracking.intl.miui.com^* ||tracking.india.miui.com^* ||tracking.rus.miui.com^* /^https?:\/\/appmetrica.yandex.com\//$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The following rule allows redirects. @@||redirect.appmetrica.yandex.com/serve/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||yandexadexchange.net^* ||global.adserver.yahoo.com^* ||analytics-sg.tiktok.com^* ||ads-sg.tiktok.com^* ||analytics.pointdrive.linkedin.com^* ||app.getsentry.com^* ||api.bugsnag.com^* ||app.bugsnag.com^* ||luckyorange.com^* ||cdn.luckyorange.com^* ||w1.luckyorange.com^* ||upload.luckyorange.net^* ||cs.luckyorange.net^* !||freshmarketer.com^* !||mouseflow.com^* ||a.mouseflow.com^* ||hotjar.com^* ||api-hotjar.com^* ||hotjar-analytics.com^* ||assoc-amazon.com^* ||media.fastclick.net^* ||youtube.cleverads.vn^* |adservetx.media.net^* ||analyticsengine.s3.amazonaws.com^* ||amazonaax.com^* ||nmetrics.samsung.com^* ||adtago.s3.amazonaws.com^* ||dlem1deojpcg7.cloudfront.net^* ||ctoziphius.com^* ||chematernicate.com^* ||toprecodeclub.com^* ||f.frequentvisitor.com^* !||667350.directcpmfwr.com/bdvfrd.dbm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||667350.directcpmfwr.com^* !||directcpmrev.com/bdv_rd3.dbm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||directcpmrev.com^* docs.bibisco.com##div[data-rnwrdesktop-1moh23t-e1k2in="true"][data-rnwr700-1moh23t-e1k2in-tceitz="true"]:remove() ||rhemistdimyary.tech^* ||pyxiscablese.com^* ||theodyscreams.store^* !!en.wikipedia.org##html:style(width: 99vw !important; height: 99vh !important; margin-left: 0 !important; margin-right: 0 !important;) ! for 3440 pixels width monitor !wikipedia.org##html:style(width: 99vw !important; height: 99vh !important; margin-left: 0 !important; margin-right: 0 !important; padding-left: 0 !important; padding-right: 0 !important; min-width: 3400px !important; max-width: 3400px !important;) !wikipedia.org##div[class="mw-page-container"]:style(width: 99vw !important; height: 99vh !important; margin-left: 50px !important; margin-right: 0 !important; padding-left: 0 !important; padding-right: 0 !important; min-width: 3400px !important; max-width: 3400px !important;) !wikipedia.org##div[class="mw-content-container"]:style(width: 3070px !important; height: 99vh !important; margin-left: 0 !important; margin-right: 0 !important; padding-left: 0 !important; padding-right: 0 !important; min-width: 3070px !important; max-width: 3070px !important;) !!wikipedia.org##div[class="mw-body"]:style(width: 3070px !important; height: 99vh !important; margin-left: 0 !important; margin-right: 0 !important; padding-left: 0 !important; padding-right: 0 !important; min-width: 3070px !important; max-width: 3070px !important;) ! for 1920 pixels width monitor wikipedia.org##html:style(width: 99vw !important; height: 99vh !important; margin-left: 0 !important; margin-right: 0 !important; padding-left: 0 !important; padding-right: 0 !important; min-width: 1510px !important; max-width: 1510px !important;) wikipedia.org##div[class="mw-page-container"]:style(width: 99vw !important; height: 99vh !important; margin-left: 10px !important; margin-right: 0 !important; padding-left: 0 !important; padding-right: 0 !important; min-width: 1510px !important; max-width: 1510px !important;) wikipedia.org##div[class="mw-content-container"]:style(width: 1190px !important; height: 99vh !important; margin-left: 0 !important; margin-right: 0 !important; padding-left: 0 !important; padding-right: 0 !important; min-width: 1190px !important; max-width: 1190px !important;) !wikipedia.org##div[class="mw-body"]:style(width: 1190px !important; height: 99vh !important; margin-left: 0 !important; margin-right: 0 !important; padding-left: 0 !important; padding-right: 0 !important; min-width: 1190px !important; max-width: 1190px !important;) sosmediacorp.com##div[id="cookie"]:remove() us.cnn.com,www.cnn.com##div[class^="terms-of-service"]:remove() us.cnn.com,www.cnn.com##div[class^="ad-slot"]:remove() us.cnn.com,www.cnn.com##div[class^="container__ads"]:remove() us.cnn.com,www.cnn.com##div[class^="tui-ad-slate"]:remove() us.cnn.com,www.cnn.com##div[id^="waterfall-"]:remove() us.cnn.com,www.cnn.com##div[id="ad-feedback__modal-overlay"]:remove() us.cnn.com,www.cnn.com##div[data-ad-identifier]:remove() us.cnn.com,www.cnn.com##iframe[class="smartad_iframe"]:remove() us.cnn.com,www.cnn.com##iframe[id="omid_v1_present"]:remove() us.cnn.com,www.cnn.com##iframe[id^="omid-verification-script-frame-"]:remove() us.cnn.com,www.cnn.com##iframe[name]:matches-attr(name=/^__\S+Locator$/):remove() us.cnn.com,www.cnn.com##iframe[name="_usrConWBD"]:remove() us.cnn.com,www.cnn.com##+js(set-constant, wminst.nielsenPageBeacon, noopFunc, complete) us.cnn.com,www.cnn.com##+js(set-constant, wminst.nielsenVideoBeacon, noopFunc, complete) us.cnn.com,www.cnn.com##+js(set-constant, wminst.comscorePageBeacon, noopFunc, complete) us.cnn.com,www.cnn.com##+js(acs, /wminst\.comscorePageBeacon\(/) us.cnn.com,www.cnn.com##+js(acs, /wminst\.nielsenPageBeacon\(/) us.cnn.com,www.cnn.com##+js(acs, /wminst\.nielsenVideoBeacon\(/) us.cnn.com,www.cnn.com##+js(set-constant, window.COMSCORE, false) us.cnn.com,www.cnn.com##+js(set-constant, window.env.ADFUEL_BUSINESS_EDITION_SRC, "", complete) us.cnn.com,www.cnn.com##+js(set-constant, window.env.ADFUEL_BUSINESS_SRC, "", complete) us.cnn.com,www.cnn.com##+js(set-constant, window.env.ADFUEL_CNN_EDITION_SRC, "", complete) us.cnn.com,www.cnn.com##+js(set-constant, window.env.ADFUEL_CNN_SRC, "", complete) us.cnn.com,www.cnn.com##+js(set-constant, window.env.AD_SLOT_CLIENT_INJECTOR_REGISTRY, "", complete) us.cnn.com,www.cnn.com##+js(set-constant, window.env.ENABLE_ADFUEL, false, complete) us.cnn.com,www.cnn.com##+js(set-constant, window.env.ENABLE_ADFUEL_METRICS, false, complete) us.cnn.com,www.cnn.com##+js(set-constant, window.env.ENABLE_AD_FEEDBACK_DISPLAY_ADS, false, complete) us.cnn.com,www.cnn.com##+js(set-constant, window.env.ENABLE_AD_FEEDBACK_VIDEO_ADS, false) us.cnn.com,www.cnn.com##+js(set-constant, window.env.ENABLE_AD_SLOT_CLIENT_INJECTOR, false) us.cnn.com,www.cnn.com##+js(set-constant, window.env.ENABLE_OPENWEB_AD, false) us.cnn.com,www.cnn.com##+js(set-constant, window.env.ENABLE_OPENWEB_MIDPROMO, false) us.cnn.com,www.cnn.com##+js(set-constant, window.env.ENABLE_DATADOG_TELEMETRY, false) us.cnn.com,www.cnn.com##+js(set-constant, window.env.ENABLE_SERVER_AD_REGISTRIES, false) us.cnn.com,www.cnn.com##+js(set-constant, window.env.ENABLE_ZION_ANALYTICS_CLICK_EVENTS, false) us.cnn.com,www.cnn.com##+js(set-constant, window.env.ENABLE_ZION_ANALYTICS_ON_OFF_EVENTS, false) us.cnn.com,www.cnn.com##+js(set-constant, window.env.ONE_TRUST_SRC, "") us.cnn.com,www.cnn.com##+js(set-constant, window.env.PLEDGE_DONATION_ENABLED, false) us.cnn.com,www.cnn.com##+js(set-constant, window.env.REGWALL_FEATURE_ENABLED, false) us.cnn.com,www.cnn.com##+js(set-constant, window.env.TOP_AD_RENDER_STICKY_TIMEOUT, 1) us.cnn.com,www.cnn.com##+js(set-constant, window.env.TRINITY_CONFIGURATION.domestic.michonne.features.enableAmazonDisplayAds, false) us.cnn.com,www.cnn.com##+js(set-constant, window.env.TRINITY_CONFIGURATION.domestic.michonne.features.enableIntegralAdScience, false) us.cnn.com,www.cnn.com##+js(set-constant, window.env.TRINITY_CONFIGURATION.domestic.michonne.features.enablePrebid, false) us.cnn.com,www.cnn.com##+js(set-constant, window.env.TRINITY_CONFIGURATION.international.michonne.features.enableAmazonDisplayAds, false) us.cnn.com,www.cnn.com##+js(set-constant, window.env.TRINITY_CONFIGURATION.international.michonne.features.enableCep, false) us.cnn.com,www.cnn.com##+js(set-constant, window.env.TRINITY_CONFIGURATION.international.michonne.features.enableIntegralAdScience, false) us.cnn.com,www.cnn.com##+js(set-constant, window.env.TRINITY_CONFIGURATION.international.michonne.features.enablePrebid, false) us.cnn.com,www.cnn.com##+js(set-constant, window.env.ZION_TELEMETRY_ENDPOINT, "") us.cnn.com,www.cnn.com##section[class="layout__wrapper layout-with-bottom-rail__wrapper"]:style(max-width: 100vw !important; width: 100vw !important) ! TODO: expanding the video player viewport isn't working with only these changes as it overlaps the rest of the page which doesn't dynamically change size. !us.cnn.com,www.cnn.com##div[class="video"]:style(padding:0 !important; margin: 0px !important; border: none !important; border-width:0 !important; min-width: 99vw !important; width: 99vw !important; min-height: 99vh !important; height: 99vh !important;) !us.cnn.com,www.cnn.com##div[id^="top-container-"]:style(padding:0 !important; margin: 0px !important; border: none !important; border-width:0 !important; min-width: 99vw !important; width: 99vw !important; min-height: 99vh !important; height: 99vh !important;) !us.cnn.com,www.cnn.com##div[id="top-player-container-"]:style(padding:0 !important; margin: 0px !important; border: none !important; border-width:0 !important; min-width: 99vw !important; width: 99vw !important; min-height: 99vh !important; height: 99vh !important;) ! TODO: have to move video playlist if expand the video player viewport. !us.cnn.com,www.cnn.com##div[class="video-playlist"] us.cnn.com,www.cnn.com##div[class="video-inline__video-resource"]:style(padding:0 !important; margin: 0px !important; border-width:0px !important; max-width: 100% !important; width: 100% !important; max-height: 100% !important; height: 100% !important; user-select: all !important; pointer-events: all !important;) us.cnn.com,www.cnn.com##div[class="video-inline__video-resource"]:remove-class(vjs-controls-disabled) us.cnn.com,www.cnn.com##+js(remove-class, vjs-controls-disabled, div[class="video-inline__video-resource"]) us.cnn.com,www.cnn.com##+js(trusted-set-attr, div[class="video-inline__video-resource"], crossorigin, anonymous) us.cnn.com,www.cnn.com##+js(trusted-set-attr, div[class="video-inline__video-resource"], preload, metadata) us.cnn.com,www.cnn.com##+js(add-class, vjs-controls-enabled, div[class="video-inline__video-resource"]) us.cnn.com,www.cnn.com##video[id^="bitmovinplayer-video-top-player-container"]:style(padding:0 !important; margin: 0px !important; border-width:0px !important; max-width: 100% !important; width: 100% !important; max-height: 100% !important; height: 100% !important;user-select: all !important; pointer-events: all !important;) us.cnn.com,www.cnn.com##video[id^="bitmovinplayer-video-top-player-container"]:remove-attr(disableremoteplayback) us.cnn.com,www.cnn.com##+js(remove-attr, disableremoteplayback, video[id^="bitmovinplayer-video-top-player-container"]) us.cnn.com,www.cnn.com##video[id^="bitmovinplayer-video-top-player-container"]:remove-attr(disablepictureinpicture) us.cnn.com,www.cnn.com##+js(remove-attr, disablepictureinpicture, video[id^="bitmovinplayer-video-top-player-container"]) us.cnn.com,www.cnn.com##+js(trusted-set-attr, video[id^="bitmovinplayer-video-top-player-container"], x-webkit-airplay, allow) us.cnn.com,www.cnn.com##+js(trusted-set-attr, video[id^="bitmovinplayer-video-top-player-container"], data-autoplay-mute-lock, false) us.cnn.com,www.cnn.com##+js(trusted-set-attr, video[id^="bitmovinplayer-video-top-player-container"], controls, true) us.cnn.com,www.cnn.com##+js(trusted-set-attr, video[id^="bitmovinplayer-video-top-player-container"], width, 100%) us.cnn.com,www.cnn.com##+js(trusted-set-attr, video[id^="bitmovinplayer-video-top-player-container"], height, 100%) us.cnn.com,www.cnn.com##+js(trusted-set-attr, video[id^="bitmovinplayer-video-top-player-container"], crossorigin, anonymous) us.cnn.com,www.cnn.com##+js(trusted-set-attr, video[id^="bitmovinplayer-video-top-player-container"], preload, metadata) us.cnn.com,www.cnn.com##+js(trusted-set-attr, video[id^="bitmovinplayer-video-top-player-container"], playsinline, true) us.cnn.com,www.cnn.com##+js(trusted-set-attr, video[id^="bitmovinplayer-video-top-player-container"], webkit-playsinline, true) !||www.cnn.com/media/sites/js/bundles/business-adfuel.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.cnn.com/media/sites/js/bundles/business-adfuel-body.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.cnn.com/media/sites/js/bundles/business-adfuel$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.cnn.com/media/sites/js/bundles/cnn-adfuel$script !||cdn.cnn.com/ads/cnn/cnn_quantum_leaf.json$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.cnn.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||smetrics.cnn.com/b/ss/cnn-adbp-domestic/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||smetrics.cnn.com^* ||z.cdn.cnn.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||social-login.cnn.com/gscounters.sendReport$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cnn.com.102.122.2o7.net/b/ss/cnn-adbp-domestic/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cnn.com.102.122.2o7.net^* ||collector.cdp.cnn.com^* ||atom.warnermedia.com/api/v1/events*=ad-break-event-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||atom.warnermedia.com/api/v1/events*=ad-event-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||atom.warnermedia.com/api/v1/events*=impression$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.fosslinux.com##div[id="div-pw-1648737234"]:remove() www.bbc.com##div[class^="dotcom-ad"]:remove() www.bbc.com##div[id="sticky-mpu"]:remove() !||emupedia.net/emupedia-app-vscode/static/vs/platform/telemetry/common/telemetryService.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||emupedia.net/emupedia-app-vscode/static/vs/platform/telemetry/common/telemetryUtils.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||emupedia.net/emupedia-app-vscode/static/vs/platform/telemetry/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.gog-games.com##+js(remove-class, no-js-hide, , stay) gog-games.com##+js(remove-class, no-js-hide, , stay) www.fosslinux.com##div[id="penci-adblocker-popup-adblock"]:remove() www.fosslinux.com##*[class*="penci-adblocker-"]:remove() www.fosslinux.com##div[class*="penci-promo-popup-wrapper"]:remove() www.fosslinux.com##html:style(overflow:scroll !important;) www.fosslinux.com##div[class*="penci-google-adsense"]:remove() www.fosslinux.com##ins[data-ad-client]:remove() ||www.fosslinux.com/wp-content/themes/soledad/js/detector.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||files-downloader-express.com^* ||operarymishear.store^* ||bo.yoginsnorland.com^* ||filedownloadapp.com^* ||tragicbeyond.com^* ||engine.adlogists.com^* ||nudgeworry.com^* ||friendshipmale.com^* ||equitydefault.com^* ||shaggyselectmast.com^* ||outbursttones.com^* ||excretekings.com^* www.gositestat.com##a[class="eaagpd68rp"]:remove() beamtic.com##div[id="_overlay"]:remove() beamtic.com##script[onerror^="adBlockFunction"]:remove() beamtic.com##+js(acs, adBlockFunction) beamtic.com##+js(aopw, adsbygoogle) beamtic.com##+js(aopr, adsbygoogle) !||beamtic.com/consent/area$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||beamtic.com/consent/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.cpuagent.com##div[id="placeholder_sticky_bottom"]:remove() www.cpuagent.com##div[id="placeholder_sticky_top"]:remove() www.cpuagent.com##div[data-ad-slot]:remove() ||s.nitropay.com/ads-1200.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.bh-dm.com/admgr_cpuagent.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||factor1right.com^* ||pizzapeppino.com.mx^* ||flymylife.info^* ||start3dfile33.com^all ||22filexstarted22.com^* ||apk4all.io/wp-content/cache/min/1/pu-script.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||messagereceiver.com^* ||sv.muoxx.icu^* ||bam.eu01.nr-data.net/jserrors/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tls12.eu01.nr-data.net.cdn.cloudflare.net/jserrors/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ws.cs.1worldsync.com/log$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||scripts.agilone.com/latest/a1.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||4e548839-5202-4337-be17-4c34e368b541.s3.ap-northeast-2.amazonaws.com^* ||kumpulbagi.id^* !||0redire.com/jr.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||0redire.com^* !||mybettermb.com/aS/sfclick?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mybettermb.com^* ||www10.securybrowseapp.com^* ||coundt.com/script/vppdzdrw.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.apriorit.com##nav[id="header"]:remove() *##a[href*="://war.ukraine.ua/"]:remove() *##a[href*="://payproglobal.com/ukraine-help"]:remove() ||www.host-tracker.com/Content/img/UA2.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.udemy.com##span[data-purpose="smart-bar-title"]:has-text(/Black History Month/i) www.udemy.com##a[href*="://about.udemy.com/udemy-news/honoring-black-history-month-with-transparency/"] www.udemy.com##+js(aopw, window.__onConsentChanged) www.udemy.com##+js(aopr, window.__onConsentChanged) www.belloflostsouls.net##div[id^="ad-container-"]:remove() ||gloos-zus.info^* tech-latest.com##div[id="brxe-aimgnb"]:remove() tech-latest.com##div[id="brxe-agxfna"]:remove() tech-latest.com##div[id="brxe-vznprt"]:remove() tech-latest.com##ins[data-ad-client]:remove() tech-latest.com##iframe[id^="google_ads_frame"]:remove() blog.desdelinux.net##ins[data-ad-client]:remove() blog.desdelinux.net##aside[id="abn_singlestealer"]:remove() ubuntuguide.net##div[id="ad1"]:remove() www.mcvuk.com##div[class="theme-notice"]:remove() !||ads.datateam.co.uk/www/delivery/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.datateam.co.uk^* !github.com/pieroproietti/penguins-eggs##a[href*="://vshymanskyy.github.io/StandWithUkraine"]:remove() *##a[href*="://vshymanskyy.github.io/StandWithUkraine"]:remove() ||raw.githubusercontent.com/vshymanskyy/StandWithUkraine/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||odestech.com^* ||www.highperformancegate.com^* !www.thomas-krenn.com##div[class*="xtx-privacy-cookie"]:upward(1):remove() www.thomas-krenn.com##div[class*="xtx-privacy-cookie"]:remove() www.thomas-krenn.com##div[class*="xtxNavigationOffCanvasOverlayCookie"]:remove() www.thomas-krenn.com##div[data-toggle="xtxNavigationOffCookiePolicy"]:remove() www.thomas-krenn.com##div[id="xtxNavigationOffCookiePolicy"]:remove() www.thomas-krenn.com##+js(remove-attr, data-disabled-over-scrolling) www.thomas-krenn.com##+js(remove-attr, data-gtm-tracking-id) www.thomas-krenn.com##+js(remove-attr, data-xtx-default-gtm-tracking-event-name-generic) www.thomas-krenn.com##+js(remove-attr, data-xtx-default-gtm-tracking-event-name-virtual-page-view) www.thomas-krenn.com##+js(remove-attr, data-xtx-default-gtm-tracking) haydenjames.io##div[id^="advads_ad_widget"]:remove() haydenjames.io##div[id^="hayden-"]:remove() ||amazingfilehosting.com/wp-content/plugins/cookie-law-info/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css cs.rin.ru##a[href$="/ucp.php?i=pm&folder=inbox"]:style(color:red !important; font-weight:bold) csrinrutkb3tshptdctl5lyei4et35itl22qvk5ktdcat6aeavy6nhid.onion##a[href$="/ucp.php?i=pm&folder=inbox"]:style(color:red !important; font-weight:bold) ||orangefreesounds.com/wp-content/plugins/cookie-law-info/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.androidacy.com/st/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rovno.xyz^* ||maggotpolity.com^* ||spritzawapuhi.guru^* ||knowledgesnooper.com^* ||dansanttina.com^* ||topadvdomdesign.com^* ||transitnotice.com^* ||tiffanypinworm.tech^* ||cjvdfw.com^* ||thecloudvantnow.com^* streamingsites.com##div[class^="styles_adverticementBlock"] streamingsites.com##div[class^="styles_desktopAds"] ||streamingsites.com/images/adverticement/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css streamingsites.com##a[href="https://streamingsites.app/nordvpn2"] !streamingsites.com##div[class^="styles_backdrop_"] !streamingsites.com##div[class^="styles_popup_"] streamingsites.com##div[class^="styles_vpnRow_"] streamingsites.com##a[class^="styles_getVpn_"] ||www.qjwglnuwqvr.com^* ||qjwglnuwqvr.com^* ! TODO: www.ustream.to is not currently ustreamyx.com. ustreamix.com and ustreamix.to redirect to www.ustream.to ! TODO: stream_pc is the URL of the playlist and should not be "". ! TODO: what does unblock() do? ! Do not block or remove all adblock_user, stream_adblock, and ads_blocked scripts !www.ustream.to,ustreamix.to,ustreamix.com##+js(noeval-if, /adblock_user/) !www.ustream.to,ustreamix.to,ustreamix.com##+js(noeval-if, /stream_adblock/) !www.ustream.to,ustreamix.to,ustreamix.com##+js(noeval-if, /ads_blocked/) !www.ustream.to,ustreamix.to,ustreamix.com##^script:has-text(/ads_blocked/):remove() !www.ustream.to,ustreamix.to,ustreamix.com##+js(remove-node-text, script, /ads_blocked/gm) !www.ustream.to,ustreamix.to,ustreamix.com##:xpath(//script[contains(text(), 'ads_blocked')]):remove() www.ustream.to,ustreamix.to,ustreamix.com##+js(noeval-if, /script_adfly/) www.ustream.to,ustreamix.to,ustreamix.com##+js(noeval-if, /adb_user_v3/) www.ustream.to,ustreamix.to,ustreamix.com##+js(noeval-if, /cookie_adb_ver/) www.ustream.to,ustreamix.to,ustreamix.com##+js(noeval-if, /adblockz_alert/) www.ustream.to,ustreamix.to,ustreamix.com##+js(set-constant, ads_blocked, falseFunc) www.ustream.to,ustreamix.to,ustreamix.com##+js(set-constant, skip_anti_adblock_1337, 1) www.ustream.to,ustreamix.to,ustreamix.com##+js(set-constant, user_is_clean, 1) www.ustream.to,ustreamix.to,ustreamix.com##+js(set-constant, user_is_clean2, 1) www.ustream.to,ustreamix.to,ustreamix.com##+js(set-constant, country_blocked, 0) www.ustream.to,ustreamix.to,ustreamix.com##+js(set-constant, he_is_bot, 0) www.ustream.to,ustreamix.to,ustreamix.com##+js(set-constant, stream_adblock, "") ! TODO: if(country=="ID"){} <- should set country to "ID" to bypass geolocation block? ! country is "" when the external country_blocker.js script is not run, and this rule is not used. ! The following rule is not working. country appears to be reset to undefined by another script after being set by this scriptlet. www.ustream.to,ustreamix.to,ustreamix.com##+js(trusted-set-constant, country, "ID") ! sp_user, adblock_user, country_loaded, access_pok are all set by an inline script via eval(). ! if(sp_user==48608){}var access_pok=0;var country_loaded=0;var adblock_user=0; www.ustream.to,ustreamix.to,ustreamix.com##+js(set-constant, adblock_user, 0) ! TODO: Should access_pok be 1 or some other value to bypass any restrictions? www.ustream.to,ustreamix.to,ustreamix.com##+js(set-constant, access_pok, 0) ! TODO: Should country_loaded be 1 or some other value to bypass the geolocation checks? ! if country_loaded is 1, access_pok is set to 0 a website script. www.ustream.to,ustreamix.to,ustreamix.com##+js(set-constant, country_loaded, 1) ! Use the following rule because getCookie() doesn't isn't defined for some reason, e.g. some other rule is preventing it? ! TODO: if getCookie() returns 0/false, then setCookie() is called so force getCookie() to return true? www.ustream.to,ustreamix.to,ustreamix.com##+js(set-constant, getCookie, trueFunc) ! TODO: Default value for sp_user is 0 as it is set inline on the channel pages, i.e. "sp_user = 0;" ! ?sp= is the query string for https://www.ustream.to/var/sp_user.js?sp= The "sp_user" value in the query string changes with subsequent reloads. ! How to set sp_user var to the value in the query string? ! The sp_user value is also specified in this script, e.g. "sp_user|32550|", but this is a dynamically generated value. ! if sp_user != that value, ads_blocked() is called. ! The following rule doesn't work because console.clear is called on an interval. www.ustream.to,ustreamix.to,ustreamix.com##+js(acs, /console\.clear\(\)/) ! This defuses console.clear(). www.ustream.to,ustreamix.to,ustreamix.com##+js(no-setInterval-if, /function\(\)\{console\.clear\(\)\}/) www.ustream.to,ustreamix.to,ustreamix.com##+js(noeval-if, /expired_after/) www.ustream.to,ustreamix.to,ustreamix.com##+js(aopr, expired_after) www.ustream.to,ustreamix.to,ustreamix.com##+js(aopw, expired_after) www.ustream.to,ustreamix.to,ustreamix.com##+js(noeval-if, /my_ads_url/) www.ustream.to,ustreamix.to,ustreamix.com##+js(set-constant, my_ads_url1, "") www.ustream.to,ustreamix.to,ustreamix.com##+js(set-constant, my_ads_url2, "") www.ustream.to,ustreamix.to,ustreamix.com##a[class="tgme_widget_message_bubble_logo"]:remove() www.ustream.to,ustreamix.to,ustreamix.com##div[id="mdp-deblocker-js-disabled"]:remove() www.ustream.to,ustreamix.to,ustreamix.com##div[class*="adblockz-alert"]:remove() www.ustream.to,ustreamix.to,ustreamix.com##h2[id="devtools-state"]:remove() www.ustream.to,ustreamix.to,ustreamix.com##h3[id="devtools-orientation"]:remove() www.ustream.to,ustreamix.to,ustreamix.com##iframe[style="display: none;"][width="0"][height="0"]:remove() www.ustream.to,ustreamix.to,ustreamix.com##iframe[id="rufous-sandbox"]:remove() www.ustream.to,ustreamix.to,ustreamix.com##+js(set-constant, mdpUnGrabber, {}) www.ustream.to,ustreamix.to,ustreamix.com##+js(aopr, mdpUnGrabber) www.ustream.to,ustreamix.to,ustreamix.com##+js(aopw, mdpUnGrabber) www.ustream.to,ustreamix.to,ustreamix.com##+js(set-constant, UnGrabber, noopFunc) www.ustream.to,ustreamix.to,ustreamix.com##+js(aopr, UnGrabber) www.ustream.to,ustreamix.to,ustreamix.com##+js(aopw, UnGrabber) www.ustream.to,ustreamix.to,ustreamix.com##+js(set-constant, adsBlocked, falseFunc) www.ustream.to,ustreamix.to,ustreamix.com##+js(set-constant, window.mdpDeBlockerDestroyer, false) www.ustream.to,ustreamix.to,ustreamix.com##+js(set-constant, disableTextSelection, noopFunc) www.ustream.to,ustreamix.to,ustreamix.com##+js(set-constant, disableContextMenu, noopFunc) www.ustream.to,ustreamix.to,ustreamix.com##+js(set-constant, disableHotKeys, noopFunc) www.ustream.to,ustreamix.to,ustreamix.com##+js(set-constant, disableDeveloperTools, noopFunc) www.ustream.to,ustreamix.to,ustreamix.com##+js(set-constant, _atrk_opts, {}) www.ustream.to,ustreamix.to,ustreamix.com##+js(aopr, _atrk_opts) www.ustream.to,ustreamix.to,ustreamix.com##+js(aopw, _atrk_opts) www.ustream.to,ustreamix.to,ustreamix.com##^script:has-text(/_atrk_opts/):remove() www.ustream.to,ustreamix.to,ustreamix.com##+js(remove-node-text, script, /_atrk_opts/gm) www.ustream.to,ustreamix.to,ustreamix.com##:xpath(//script[contains(text(), '_atrk_opts')]):remove() www.ustream.to,ustreamix.to,ustreamix.com##+js(set-constant, adfly_id, "") www.ustream.to,ustreamix.to,ustreamix.com##+js(aopr, adfly_id) www.ustream.to,ustreamix.to,ustreamix.com##+js(aopw, adfly_id) www.ustream.to,ustreamix.to,ustreamix.com##+js(set-constant, adfly_domain, "") www.ustream.to,ustreamix.to,ustreamix.com##+js(set-constant, popunder, false) www.ustream.to,ustreamix.to,ustreamix.com##+js(aeld, /devtoolschange/) www.ustream.to,ustreamix.to,ustreamix.com##+js(set-constant, devtools, {}) www.ustream.to,ustreamix.to,ustreamix.com##+js(set-constant, devtools.isOpen, false) www.ustream.to,ustreamix.to,ustreamix.com##+js(abort-current-script, popundersPerIP) www.ustream.to,ustreamix.to,ustreamix.com,tv247us.com,sporttuna.sx,sporttuna.online##+js(remove-node-text, script, /popundersPerIP/gm) www.ustream.to,ustreamix.to,ustreamix.com,tv247us.com,sporttuna.sx,sporttuna.online##^script:has-text(/popundersPerIP/):remove() www.ustream.to,ustreamix.to,ustreamix.com,tv247us.com,sporttuna.sx,sporttuna.online##:xpath(//script[contains(text(), 'popundersPerIP')]):remove() www.ustream.to,ustreamix.to,ustreamix.com##^script:has-text(/script_adfly/):remove() www.ustream.to,ustreamix.to,ustreamix.com##+js(remove-node-text, script, /script_adfly/gm) www.ustream.to,ustreamix.to,ustreamix.com##:xpath(//script[contains(text(), 'script_adfly')]):remove() www.ustream.to,ustreamix.to,ustreamix.com##^script:has-text(/https\:\/\/'\+d\+'\/401\//):remove() www.ustream.to,ustreamix.to,ustreamix.com##+js(remove-node-text, script, /https\:\/\/'\+d\+'\/401\//gm) www.ustream.to,ustreamix.to,ustreamix.com##:xpath(//script[contains(text(), 'https://'+d+'/401/')]):remove() www.ustream.to,ustreamix.to,ustreamix.com##iframe[id^="iframe_streaming_"]:style(left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; overflow:auto !important; user-select: all !important; pointer-events: all !important;) www.ustream.to,ustreamix.to,ustreamix.com##+js(trusted-set-attr, iframe[id^="iframe_streaming_"], width, 100%) www.ustream.to,ustreamix.to,ustreamix.com##+js(trusted-set-attr, iframe[id^="iframe_streaming_"], height, 100%) www.ustream.to,ustreamix.to,ustreamix.com##+js(trusted-set-attr, iframe[id^="iframe_streaming_"], scrolling, yes) www.ustream.to,ustreamix.to,ustreamix.com##+js(trusted-set-attr, iframe[id^="iframe_streaming_"], allowtransparency, true) www.ustream.to,ustreamix.to,ustreamix.com##+js(trusted-set-attr, iframe[id^="iframe_streaming_"], allow, picture-in-picture; autoplay; fullscreen; encrypted-media; clipboard-write; accelerometer; gyroscope; web-share;) www.ustream.to,ustreamix.to,ustreamix.com##+js(trusted-set-attr, iframe[id^="iframe_streaming_"], marginwidth, 0) www.ustream.to,ustreamix.to,ustreamix.com##+js(trusted-set-attr, iframe[id^="iframe_streaming_"], marginheight, 0) www.ustream.to,ustreamix.to,ustreamix.com##+js(trusted-set-attr, iframe[id^="iframe_streaming_"], seamless, seamless) www.ustream.to,ustreamix.to,ustreamix.com##+js(trusted-set-attr, iframe[id^="iframe_streaming_"], autoplay, yes) !www.ustream.to,ustreamix.to,ustreamix.com##+js(trusted-set-attr, iframe[id^="iframe_streaming_"], referrerpolicy, origin) www.ustream.to,ustreamix.to,ustreamix.com##+js(trusted-set-attr, iframe[id^="iframe_streaming_"], referrerpolicy, unsafe-url) !www.ustream.to,ustreamix.to,ustreamix.com##+js(trusted-set-attr, iframe[id^="iframe_streaming_"], loading, eager) ! TODO: Setting the sandbox attribute may break the video player. !www.ustream.to,ustreamix.to,ustreamix.com##+js(trusted-set-attr, iframe[id^="iframe_streaming_"], sandbox, allow-pointer-lock; allow-top-navigation; allowTransparency; allow-modals; allow-scripts; allow-same-origin; allow-popups; allow-popups-to-escape-sandbox; allow-storage-access-by-user-activation; allow-forms) ! The following attributes are already set by the page. www.ustream.to,ustreamix.to,ustreamix.com##+js(trusted-set-attr, iframe[id^="iframe_streaming_"], frameborder, 0) www.ustream.to,ustreamix.to,ustreamix.com##+js(trusted-set-attr, iframe[id^="iframe_streaming_"], allowfullscreen, true) www.ustream.to,ustreamix.to,ustreamix.com##+js(trusted-set-attr, iframe[id^="iframe_streaming_"], webkitallowfullscreen, true) www.ustream.to,ustreamix.to,ustreamix.com##+js(trusted-set-attr, iframe[id^="iframe_streaming_"], mozallowfullscreen, true) www.ustream.to,ustreamix.to,ustreamix.com##+js(trusted-set-attr, iframe[id^="iframe_streaming_"], oallowfullscreen, true) www.ustream.to,ustreamix.to,ustreamix.com##+js(trusted-set-attr, iframe[id^="iframe_streaming_"], msallowfullscreen, true) ! TODO: need to set div[data-player] too because it manually sets the height to a fixed value (298px)? www.ustream.to,ustreamix.to,ustreamix.com##div[id="vplayer"]:style(left: 0px !important; right: 0px !important; padding: 0 !important; margin: 0 !important; border: none !important; border-width: 0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) www.ustream.to,ustreamix.to,ustreamix.com##div[id="vplayer"][class*="vjs-controls-disabled"]:remove-class(vjs-controls-disabled) www.ustream.to,ustreamix.to,ustreamix.com##+js(remove-class, vjs-controls-disabled, div[id="vplayer"][class*="vjs-controls-disabled"]) www.ustream.to,ustreamix.to,ustreamix.com##+js(add-class, vjs-controls-enabled, div[id="vplayer"]) www.ustream.to,ustreamix.to,ustreamix.com##+js(trusted-set-attr, div[id="vplayer"], crossorigin, anonymous) www.ustream.to,ustreamix.to,ustreamix.com##+js(trusted-set-attr, div[id="vplayer"], preload, metadata) www.ustream.to,ustreamix.to,ustreamix.com##div[data-player]:style(left: 0px !important; right: 0px !important; padding: 0 !important; margin: 0 !important; border: none !important; border-width: 0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) www.ustream.to,ustreamix.to,ustreamix.com##div[data-player][class*="vjs-controls-disabled"]:remove-class(vjs-controls-disabled) www.ustream.to,ustreamix.to,ustreamix.com##+js(remove-class, vjs-controls-disabled, div[data-player][class*="vjs-controls-disabled"]) www.ustream.to,ustreamix.to,ustreamix.com##+js(add-class, vjs-controls-enabled, div[data-player]) www.ustream.to,ustreamix.to,ustreamix.com##+js(trusted-set-attr, div[data-player], crossorigin, anonymous) www.ustream.to,ustreamix.to,ustreamix.com##+js(trusted-set-attr, div[data-player], preload, metadata) ! TODO: force isMobile value? It appears that anti-adblocking is not imposed if isMobile is true. ! isMobile() is a function NOT a value. ! function isMobile(){var userAgent=navigator.userAgent||navigator.vendor||window.opera;if(/android|ipad|iphone|ipod|windows phone/.test(userAgent.toLowerCase())&&!window.MSStream){return 1;}else{return 0;}} www.ustream.to,ustreamix.to,ustreamix.com##+js(set-constant, isMobile, trueFunc) ! TODO: Always force isHidden() to false? It is used to check if the video iframe is hidden for anti-adblocking. www.ustream.to,ustreamix.to,ustreamix.com##+js(set-constant, isHidden, falseFunc) ! TODO: This following rule prevents the page from being displayed. ! The following rule will only prevent the redirection message. !www.ustream.to,ustreamix.to,ustreamix.com##+js(set-constant, isExternal, falseFunc) ! Do not block the following script or videos will not play. !||www.ustream.to/src/func.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! nginx-cf.maxcdn.info is currently parked @ sedo.com so scripts won't run from it anyway !nginx-cf.maxcdn.info^$script,domain=www.ustream.to|ustreamix.to|tv247.us|tv247us.com ||nginx-cf.maxcdn.info/country_blocker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||analytics.tiendaenoferta.com^* !stream2watch.games##+js(remove-attr, onclick, .player4) !stream2watch.games##+js(remove-attr, onclick, .btn_comant_box2) stream2watch.games##.player4:remove-attr(onclick) stream2watch.games##.btn_comant_box2:remove-attr(onclick) stream2watch.games##+js(acs, xurl) stream2watch.games##+js(aopw, xurl) stream2watch.games##+js(aopr, xurl) stream2watch.games##div[id="1234"]:remove() !stream2watch.games##div[id="1234"]:style(display: block !important;) stream2watch.games##div[id="blacks"]:remove() !stream2watch.games##div[id="blacks"]:style(display: block !important;) stream2watch.games##div[id="load"]:remove() !stream2watch.games##div[id="load"]:style(display: block !important;) stream2watch.games##div[id="left-play"]:style(display: block !important;) !stream2watch.games##div[id="green_b"][class="video-box2"]:remove() stream2watch.games##div[class="top_comant_box"]:has-text(VPN Player):remove() stream2watch.games##div[class="midel_comant_box"]:remove() ! Do NOT use either of the following rules or the video player viewport will not be displayed. !play.stream2watch.com##video[id="video"][class*="video23"]:remove-class(video23) !play.stream2watch.com##+js(remove-class, video23, #video[class*="video23"]) play.stream2watch.com##div[class="main-inner"]:style(left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; overflow:hidden !important; user-select: all !important; pointer-events: all !important;) play.stream2watch.com##div[class="main-inner"][class*="vjs-controls-disabled"]:remove-class(vjs-controls-disabled) play.stream2watch.com##+js(remove-class, vjs-controls-disabled, div[class="main-inner"][class*="vjs-controls-disabled"]) play.stream2watch.com##+js(add-class, vjs-controls-enabled, div[class="main-inner"]) play.stream2watch.com##+js(trusted-set-attr, div[class="main-inner"], crossorigin, anonymous) play.stream2watch.com##+js(trusted-set-attr, div[class="main-inner"], preload, metadata) play.stream2watch.com##video[id="video"]:style(padding:0 !important; margin-left: 10px !important; border: none !important; border-width:0 !important; max-width: 100% !important; width: 100% !important; max-height: 100% !important; height: 100% !important;user-select: all !important; pointer-events: all !important;) play.stream2watch.com##video[id="video"]:remove-attr(disableremoteplayback) play.stream2watch.com##+js(remove-attr, disableremoteplayback, video[id="video"]) play.stream2watch.com##+js(trusted-set-attr, video[id="video"], x-webkit-airplay, allow) play.stream2watch.com##+js(trusted-set-attr, video[id="video"], data-autoplay-mute-lock, false) play.stream2watch.com##+js(trusted-set-attr, video[id="video"], controls, true) play.stream2watch.com##+js(trusted-set-attr, video[id="video"], width, 100%) play.stream2watch.com##+js(trusted-set-attr, video[id="video"], height, 100%) play.stream2watch.com##+js(trusted-set-attr, video[id="video"], crossorigin, anonymous) play.stream2watch.com##+js(trusted-set-attr, video[id="video"], preload, metadata) play.stream2watch.com##+js(trusted-set-attr, video[id="video"], playsinline, true) play.stream2watch.com##+js(trusted-set-attr, video[id="video"], webkit-playsinline, true) play.stream2watch.com##video[id="video"]:remove-attr(disablepictureinpicture) play.stream2watch.com##+js(remove-attr, disablepictureinpicture, video[id="video"]) www.cxtvlive.com##div[class*="ad-titulo"]:remove() www.cxtvlive.com##ins[data-ad-client]:remove() www.cxtvlive.com##iframe[id^="aswift_"]:remove() ! daddylive.watch and thedaddy.to use the following script for their video player iframe. ! TODO: Could use uritransform on the width and height value in the following URL except would have to hard-code values. ! https://radamel.icu/reproductor/canal45.php?width=1100&height=430 has the values from embedt1.js. ! TODO: Xvw and Xvh don't work with these width and height attributes? !||radamel.icu/js/embedt1.js$replace=/width\s?=\s?\d{3,4};/width = "99vw";/gm,script,doc,xhr !||radamel.icu/js/embedt1.js$replace=/height\s?=\s?\d{3,4};/height = "99vh";/gm,script,doc,xhr !||radamel.icu/js/embedt1.js$replace=/width\s?=\s?\d{3,4};/width = "100%";/gm,script,doc,xhr !||radamel.icu/js/embedt1.js$replace=/height\s?=\s?\d{3,4};/height = "100%";/gm,script,doc,xhr ||radamel.icu/js/embedt1.js$replace=/width\s?=\s?\d{3,4};/width = window.innerWidth;/gm,script,doc,xhr ||radamel.icu/js/embedt1.js$replace=/height\s?=\s?\d{3,4};/height = window.innerHeight;/gm,script,doc,xhr radamel.icu##body[oncontextmenu]:remove-attr(oncontextmenu) radamel.icu##+js(remove-attr, oncontextmenu, body[oncontextmenu]) radamel.icu##body[onkeydown]:remove-attr(onkeydown) radamel.icu##+js(remove-attr, onkeydown, body[onkeydown]) ! The following rule removes the unmute button if present. radamel.icu##div[id="floatLayer1"]:remove() radamel.icu##+js(remove-node-text, script, /\{return\s?\{['"]popunderCondition['"]:\s?function\(\)\{/gm) radamel.icu##+js(acs, /'adsBox'\,/) radamel.icu##iframe[src^="https://cdn.sportcast.fun/nginx.php?id="]:style(left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100% !important; width: 100% !important; max-height: 100% !important; height: 100% !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important; overflow: hidden !important;) !radamel.icu##iframe[src^="https://cdn.sportcast.fun/nginx.php?id="]:style(left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) radamel.icu##+js(trusted-set-attr, iframe[src^="https://cdn.sportcast.fun/nginx.php?id="], scrolling, no) radamel.icu##+js(trusted-set-attr, iframe[src^="https://cdn.sportcast.fun/nginx.php?id="], webkitallowfullscreen, true) radamel.icu##+js(trusted-set-attr, iframe[src^="https://cdn.sportcast.fun/nginx.php?id="], mozallowfullscreen, true) radamel.icu##+js(trusted-set-attr, iframe[src^="https://cdn.sportcast.fun/nginx.php?id="], allowfullscreen, true) radamel.icu##+js(trusted-set-attr, iframe[src^="https://cdn.sportcast.fun/nginx.php?id="], allow, picture-in-picture; autoplay; fullscreen; encrypted-media; clipboard-write; accelerometer; gyroscope; web-share;) radamel.icu##+js(trusted-set-attr, iframe[src^="https://cdn.sportcast.fun/nginx.php?id="], allowtransparency, true) radamel.icu##+js(trusted-set-attr, iframe[src^="https://cdn.sportcast.fun/nginx.php?id="], marginwidth, 0) radamel.icu##+js(trusted-set-attr, iframe[src^="https://cdn.sportcast.fun/nginx.php?id="], marginheight, 0) radamel.icu##+js(trusted-set-attr, iframe[src^="https://cdn.sportcast.fun/nginx.php?id="], seamless, seamless) radamel.icu##+js(trusted-set-attr, iframe[src^="https://cdn.sportcast.fun/nginx.php?id="], autoplay, yes) !radamel.icu##+js(trusted-set-attr, iframe[src^="https://cdn.sportcast.fun/nginx.php?id="], referrerpolicy, origin) radamel.icu##+js(trusted-set-attr, iframe[src^="https://cdn.sportcast.fun/nginx.php?id="], referrerpolicy, unsafe-url) radamel.icu##+js(trusted-set-attr, iframe[src^="https://cdn.sportcast.fun/nginx.php?id="], oallowfullscreen, true) radamel.icu##+js(trusted-set-attr, iframe[src^="https://cdn.sportcast.fun/nginx.php?id="], msallowfullscreen, true) !radamel.icu##+js(trusted-set-attr, iframe[src^="https://cdn.sportcast.fun/nginx.php?id="], loading, eager) ! TODO: Setting the sandbox attribute may break the video player. !radamel.icu##+js(trusted-set-attr, iframe[src^="https://cdn.sportcast.fun/nginx.php?id="], sandbox, allow-pointer-lock; allow-top-navigation; allowTransparency; allow-modals; allow-scripts; allow-same-origin; allow-popups; allow-popups-to-escape-sandbox; allow-storage-access-by-user-activation; allow-forms) ! The following are already set by the page. radamel.icu##+js(trusted-set-attr, iframe[src^="https://cdn.sportcast.fun/nginx.php?id="], width, 100%) radamel.icu##+js(trusted-set-attr, iframe[src^="https://cdn.sportcast.fun/nginx.php?id="], height, 100%) radamel.icu##+js(trusted-set-attr, iframe[src^="https://cdn.sportcast.fun/nginx.php?id="], frameborder, 0) radamel.icu##iframe[src^="https://s2watch.link/"]:style(left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100% !important; width: 100% !important; max-height: 100% !important; height: 100% !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) radamel.icu##+js(trusted-set-attr, iframe[src^="https://s2watch.link/"], width, 100%) radamel.icu##+js(trusted-set-attr, iframe[src^="https://s2watch.link/"], height, 100%) radamel.icu##+js(trusted-set-attr, iframe[src^="https://s2watch.link/"], scrolling, no) radamel.icu##+js(trusted-set-attr, iframe[src^="https://s2watch.link/"], webkitallowfullscreen, true) radamel.icu##+js(trusted-set-attr, iframe[src^="https://s2watch.link/"], mozallowfullscreen, true) radamel.icu##+js(trusted-set-attr, iframe[src^="https://s2watch.link/"], allow, picture-in-picture; autoplay; fullscreen; encrypted-media; clipboard-write; accelerometer; gyroscope; web-share;) radamel.icu##+js(trusted-set-attr, iframe[src^="https://s2watch.link/"], allowtransparency, true) radamel.icu##+js(trusted-set-attr, iframe[src^="https://s2watch.link/"], marginwidth, 0) radamel.icu##+js(trusted-set-attr, iframe[src^="https://s2watch.link/"], marginheight, 0) radamel.icu##+js(trusted-set-attr, iframe[src^="https://s2watch.link/"], seamless, seamless) radamel.icu##+js(trusted-set-attr, iframe[src^="https://s2watch.link/"], autoplay, yes) !radamel.icu##+js(trusted-set-attr, iframe[src^="https://s2watch.link/"], referrerpolicy, origin) radamel.icu##+js(trusted-set-attr, iframe[src^="https://s2watch.link/"], referrerpolicy, unsafe-url) radamel.icu##+js(trusted-set-attr, iframe[src^="https://s2watch.link/"], oallowfullscreen, true) radamel.icu##+js(trusted-set-attr, iframe[src^="https://s2watch.link/"], msallowfullscreen, true) !radamel.icu##+js(trusted-set-attr, iframe[src^="https://s2watch.link/"], loading, eager) ! TODO: Setting the sandbox attribute may break the video player. !radamel.icu##+js(trusted-set-attr, iframe[src^="https://s2watch.link/"], sandbox, allow-pointer-lock; allow-top-navigation; allowTransparency; allow-modals; allow-scripts; allow-same-origin; allow-popups; allow-popups-to-escape-sandbox; allow-storage-access-by-user-activation; allow-forms) ! The following are already set by the page. radamel.icu##+js(trusted-set-attr, iframe[src^="https://s2watch.link/"], allowfullscreen, true) radamel.icu##+js(trusted-set-attr, iframe[src^="https://s2watch.link/"], frameborder, 0) ! The following rule is necessary to expand the division that holds the main video player so expanding the size of the player iframe doesn't extend over the rest of the elements. daddylive.watch,thedaddy.to##div[id="content"]:style(left: 0px !important; right: 0px !important; padding: 0 !important; margin: 0 !important; border: none !important; border-width: 0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; user-select: all !important; pointer-events: all !important;) ! The div tag in the following rule contains an iframe for a video player. daddylive.watch,thedaddy.to##div[id="77184714_F"]:style(left: 0px !important; right: 0px !important; padding: 0 !important; margin: 0 !important; border: none !important; border-width: 0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; user-select: all !important; pointer-events: all !important;) ! The following three rules are replacements for inline script values. ! width and height have to be integers or the URL will have the values as "undefined", i.e. "https://radamel.icu/reproductor/canal382.php?width=undefined&height=undefined" ! 1523 x 857 is 16:9 web viewport for a 1920 x 1080p display monitor. !daddylive.watch,thedaddy.to##+js(trusted-replace-node-text, script, /;width=1100;\s?height=430;/gm, ;width=1523;height=857;) !daddylive.watch,thedaddy.to##+js(trusted-replace-node-text, script, /;width=1100;\s?height=430;/gm, ;width="100%";height="100%";) daddylive.watch,thedaddy.to##+js(trusted-replace-node-text, script, /;width=1100;\s?height=430;/gm, ;width=99vw;height=99vh;) !daddylive.watch,thedaddy.to##+js(set-constant, width, 1523) !daddylive.watch,thedaddy.to##+js(set-constant, height, 857) !daddylive.watch,thedaddy.to##+js(trusted-set-constant, width, "100%") !daddylive.watch,thedaddy.to##+js(trusted-set-constant, width, {"value": 99vw}) daddylive.watch,thedaddy.to##+js(trusted-set-constant, width, {"value": window.innerWidth}) !daddylive.watch,thedaddy.to##+js(trusted-set-constant, height, "100%") !daddylive.watch,thedaddy.to##+js(trusted-set-constant, height, {"value": 99vh}) daddylive.watch,thedaddy.to##+js(trusted-set-constant, height, {"value": window.innerHeight}) daddylive.watch,thedaddy.to##iframe[src^="https://radamel.icu/reproductor/"]:style(left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://radamel.icu/reproductor/"], width, 100%) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://radamel.icu/reproductor/"], height, 100%) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://radamel.icu/reproductor/"], scrolling, no) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://radamel.icu/reproductor/"], webkitallowfullscreen, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://radamel.icu/reproductor/"], mozallowfullscreen, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://radamel.icu/reproductor/"], marginwidth, 0) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://radamel.icu/reproductor/"], marginheight, 0) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://radamel.icu/reproductor/"], seamless, seamless) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://radamel.icu/reproductor/"], autoplay, yes) !daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://radamel.icu/reproductor/"], referrerpolicy, origin) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://radamel.icu/reproductor/"], referrerpolicy, unsafe-url) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://radamel.icu/reproductor/"], oallowfullscreen, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://radamel.icu/reproductor/"], msallowfullscreen, true) !daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://radamel.icu/reproductor/"], loading, eager) ! TODO: Setting the sandbox attribute may break the video player. !daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://radamel.icu/reproductor/"], sandbox, allow-pointer-lock; allow-top-navigation; allowTransparency; allow-modals; allow-scripts; allow-same-origin; allow-popups; allow-popups-to-escape-sandbox; allow-storage-access-by-user-activation; allow-forms) ! The following are already set by the page. daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://radamel.icu/reproductor/"], allowfullscreen, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://radamel.icu/reproductor/"], frameborder, 0) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://radamel.icu/reproductor/"], allowtransparency, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://radamel.icu/reproductor/"], allow, picture-in-picture; autoplay; fullscreen; encrypted-media; clipboard-write; accelerometer; gyroscope; web-share;) daddylive.watch,thedaddy.to##iframe[src^="https://wikisport."]:style(left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://wikisport."], width, 100%) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://wikisport."], height, 100%) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://wikisport."], scrolling, no) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://wikisport."], webkitallowfullscreen, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://wikisport."], mozallowfullscreen, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://wikisport."], marginwidth, 0) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://wikisport."], marginheight, 0) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://wikisport."], seamless, seamless) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://wikisport."], autoplay, yes) !daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://wikisport."], referrerpolicy, origin) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://wikisport."], referrerpolicy, unsafe-url) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://wikisport."], oallowfullscreen, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://wikisport."], msallowfullscreen, true) !daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://wikisport."], loading, eager) ! TODO: Setting the sandbox attribute may break the video player. !daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://wikisport."], sandbox, allow-pointer-lock; allow-top-navigation; allowTransparency; allow-modals; allow-scripts; allow-same-origin; allow-popups; allow-popups-to-escape-sandbox; allow-storage-access-by-user-activation; allow-forms) ! The following are already set by the page. daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://wikisport."], allowfullscreen, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://wikisport."], frameborder, 0) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://wikisport."], allowtransparency, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://wikisport."], allow, picture-in-picture; autoplay; fullscreen; encrypted-media; clipboard-write; accelerometer; gyroscope; web-share;) daddylive.watch,thedaddy.to##iframe[src*="/stream.php"]:style(left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/stream.php"], width, 100%) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/stream.php"], height, 100%) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/stream.php"], allowfullscreen, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/stream.php"], webkitallowfullscreen, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/stream.php"], mozallowfullscreen, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/stream.php"], scrolling, no) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/stream.php"], frameborder, 0) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/stream.php"], allowtransparency, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/stream.php"], marginwidth, 0) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/stream.php"], marginheight, 0) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/stream.php"], allow, picture-in-picture; autoplay; fullscreen; encrypted-media; clipboard-write; accelerometer; gyroscope; web-share;) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/stream.php"], seamless, seamless) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/stream.php"], autoplay, yes) !daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/stream.php"], referrerpolicy, origin) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/stream.php"], referrerpolicy, unsafe-url) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/stream.php"], oallowfullscreen, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/stream.php"], msallowfullscreen, true) !daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/stream.php"], loading, eager) !daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/stream.php"], sandbox, allow-pointer-lock; allow-top-navigation; allowTransparency; allow-modals; allow-scripts; allow-same-origin; allow-popups; allow-popups-to-escape-sandbox; allow-storage-access-by-user-activation; allow-forms) daddylive.watch,thedaddy.to##iframe[id="thatframe"]:style(left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[id="thatframe"], width, 100%) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[id="thatframe"], height, 100%) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[id="thatframe"], frameborder, 0) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[id="thatframe"], allowfullscreen, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[id="thatframe"], webkitallowfullscreen, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[id="thatframe"], mozallowfullscreen, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[id="thatframe"], scrolling, no) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[id="thatframe"], allowtransparency, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[id="thatframe"], marginwidth, 0) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[id="thatframe"], marginheight, 0) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[id="thatframe"], allow, picture-in-picture; autoplay; fullscreen; encrypted-media; clipboard-write; accelerometer; gyroscope; web-share;) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[id="thatframe"], seamless, seamless) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[id="thatframe"], autoplay, yes) !daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[id="thatframe"], referrerpolicy, origin) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[id="thatframe"], referrerpolicy, unsafe-url) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[id="thatframe"], oallowfullscreen, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[id="thatframe"], msallowfullscreen, true) !daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[id="thatframe"], loading, eager) !daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[id="thatframe"], sandbox, allow-pointer-lock; allow-top-navigation; allowTransparency; allow-modals; allow-scripts; allow-same-origin; allow-popups; allow-popups-to-escape-sandbox; allow-storage-access-by-user-activation; allow-forms) daddylive.watch,thedaddy.to##iframe[src*="/premiumtv/"]:style(left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/premiumtv/"], width, 100%) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/premiumtv/"], height, 100%) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/premiumtv/"], webkitallowfullscreen, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/premiumtv/"], mozallowfullscreen, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/premiumtv/"], scrolling, no) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/premiumtv/"], marginwidth, 0) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/premiumtv/"], marginheight, 0) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/premiumtv/"], allowtransparency, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/premiumtv/"], allow, picture-in-picture; autoplay; fullscreen; encrypted-media; clipboard-write; accelerometer; gyroscope; web-share;) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/premiumtv/"], seamless, seamless) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/premiumtv/"], autoplay, yes) !daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/premiumtv/"], referrerpolicy, origin) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/premiumtv/"], referrerpolicy, unsafe-url) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/premiumtv/"], oallowfullscreen, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/premiumtv/"], msallowfullscreen, true) !daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/premiumtv/"], loading, eager) !daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/premiumtv/"], sandbox, allow-pointer-lock; allow-top-navigation; allowTransparency; allow-modals; allow-scripts; allow-same-origin; allow-popups; allow-popups-to-escape-sandbox; allow-storage-access-by-user-activation; allow-forms) daddylive.watch,thedaddy.to##iframe[src*="/online.php"]:style(left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/online.php"], scrolling, no) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/online.php"], height, 100%) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/online.php"], webkitallowfullscreen, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/online.php"], mozallowfullscreen, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/online.php"], marginwidth, 0) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/online.php"], marginheight, 0) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/online.php"], frameborder, 0) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/online.php"], allowfullscreen, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/online.php"], width, 100%) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/online.php"], allowtransparency, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/online.php"], allow, picture-in-picture; autoplay; fullscreen; encrypted-media; clipboard-write; accelerometer; gyroscope; web-share;) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/online.php"], seamless, seamless) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/online.php"], autoplay, yes) !daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/online.php"], referrerpolicy, origin) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/online.php"], referrerpolicy, unsafe-url) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/online.php"], oallowfullscreen, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/online.php"], msallowfullscreen, true) !daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/online.php"], loading, eager) !daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src*="/online.php"], sandbox, allow-pointer-lock; allow-top-navigation; allowTransparency; allow-modals; allow-scripts; allow-same-origin; allow-popups; allow-popups-to-escape-sandbox; allow-storage-access-by-user-activation; allow-forms) daddylive.watch,thedaddy.to##iframe[src^="https://wwwstream.pro/embed/"]:style(left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://wwwstream.pro/embed/"], scrolling, yes) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://wwwstream.pro/embed/"], height, 100%) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://wwwstream.pro/embed/"], webkitallowfullscreen, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://wwwstream.pro/embed/"], mozallowfullscreen, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://wwwstream.pro/embed/"], marginwidth, 0) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://wwwstream.pro/embed/"], marginheight, 0) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://wwwstream.pro/embed/"], frameborder, 0) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://wwwstream.pro/embed/"], allowfullscreen, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://wwwstream.pro/embed/"], width, 100%) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://wwwstream.pro/embed/"], allowtransparency, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://wwwstream.pro/embed/"], allow, picture-in-picture; autoplay; fullscreen; encrypted-media; clipboard-write; accelerometer; gyroscope; web-share;) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://wwwstream.pro/embed/"], seamless, seamless) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://wwwstream.pro/embed/"], autoplay, yes) !daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://wwwstream.pro/embed/"], referrerpolicy, origin) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://wwwstream.pro/embed/"], referrerpolicy, unsafe-url) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://wwwstream.pro/embed/"], oallowfullscreen, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://wwwstream.pro/embed/"], msallowfullscreen, true) !daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://wwwstream.pro/embed/"], loading, eager) !daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://wwwstream.pro/embed/"], sandbox, allow-pointer-lock; allow-top-navigation; allowTransparency; allow-modals; allow-scripts; allow-same-origin; allow-popups; allow-popups-to-escape-sandbox; allow-storage-access-by-user-activation; allow-forms) daddylive.watch,thedaddy.to##iframe[src^="https://librarywhispering.com/player"]:style(left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://librarywhispering.com/player"], scrolling, yes) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://librarywhispering.com/player"], height, 100%) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://librarywhispering.com/player"], webkitallowfullscreen, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://librarywhispering.com/player"], mozallowfullscreen, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://librarywhispering.com/player"], marginwidth, 0) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://librarywhispering.com/player"], marginheight, 0) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://librarywhispering.com/player"], frameborder, 0) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://librarywhispering.com/player"], allowfullscreen, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://librarywhispering.com/player"], width, 100%) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://librarywhispering.com/player"], allowtransparency, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://librarywhispering.com/player"], allow, picture-in-picture; autoplay; fullscreen; encrypted-media; clipboard-write; accelerometer; gyroscope; web-share;) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://librarywhispering.com/player"], seamless, seamless) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://librarywhispering.com/player"], autoplay, yes) !daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://librarywhispering.com/player"], referrerpolicy, origin) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://librarywhispering.com/player"], referrerpolicy, unsafe-url) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://librarywhispering.com/player"], oallowfullscreen, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://librarywhispering.com/player"], msallowfullscreen, true) !daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://librarywhispering.com/player"], loading, eager) !daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[src^="https://librarywhispering.com/player"], sandbox, allow-pointer-lock; allow-top-navigation; allowTransparency; allow-modals; allow-scripts; allow-same-origin; allow-popups; allow-popups-to-escape-sandbox; allow-storage-access-by-user-activation; allow-forms) ! TODO: alternative iframe selector for the following rules is iframe[src^="https://topembed.pw/channel/"]. daddylive.watch,thedaddy.to##iframe[name="iframe_a"]:style(left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[name="iframe_a"], scrolling, yes) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[name="iframe_a"], height, 100%) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[name="iframe_a"], webkitallowfullscreen, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[name="iframe_a"], mozallowfullscreen, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[name="iframe_a"], marginwidth, 0) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[name="iframe_a"], marginheight, 0) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[name="iframe_a"], frameborder, 0) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[name="iframe_a"], allowfullscreen, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[name="iframe_a"], width, 100%) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[name="iframe_a"], allowtransparency, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[name="iframe_a"], allow, picture-in-picture; autoplay; fullscreen; encrypted-media; clipboard-write; accelerometer; gyroscope; web-share;) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[name="iframe_a"], seamless, seamless) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[name="iframe_a"], autoplay, yes) !daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[name="iframe_a"], referrerpolicy, origin) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[name="iframe_a"], referrerpolicy, unsafe-url) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[name="iframe_a"], oallowfullscreen, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[name="iframe_a"], msallowfullscreen, true) !daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[name="iframe_a"], loading, eager) !daddylive.watch,thedaddy.to##+js(trusted-set-attr, iframe[name="iframe_a"], sandbox, allow-pointer-lock; allow-top-navigation; allowTransparency; allow-modals; allow-scripts; allow-same-origin; allow-popups; allow-popups-to-escape-sandbox; allow-storage-access-by-user-activation; allow-forms) daddylive.watch,thedaddy.to##div[id="fluid_video_wrapper_video-id"]:style(left: 0px !important; right: 0px !important; padding: 0 !important; margin: 0 !important; border: none !important; border-width: 0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) daddylive.watch,thedaddy.to##div[id="fluid_video_wrapper_video-id"][class*="vjs-controls-disabled"]:remove-class(vjs-controls-disabled) daddylive.watch,thedaddy.to##+js(remove-class, vjs-controls-disabled, div[id="fluid_video_wrapper_video-id"][class*="vjs-controls-disabled"]) daddylive.watch,thedaddy.to##+js(add-class, vjs-controls-enabled, div[id="fluid_video_wrapper_video-id"]) daddylive.watch,thedaddy.to##+js(trusted-set-attr, div[id="fluid_video_wrapper_video-id"], crossorigin, anonymous) daddylive.watch,thedaddy.to##+js(trusted-set-attr, div[id="fluid_video_wrapper_video-id"], preload, metadata) daddylive.watch,thedaddy.to##video[id="video-id"]:style(left: 0px !important; right: 0px !important; padding: 0 !important; margin: 0 !important; border: none !important; border-width: 0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; user-select: all !important; pointer-events: all !important;) daddylive.watch,thedaddy.to##video[id="video-id"]:remove-attr(disableremoteplayback) daddylive.watch,thedaddy.to##video[id="video-id"]:remove-attr(disablepictureinpicture) daddylive.watch,thedaddy.to##+js(remove-attr, disablepictureinpicture, video[id="video-id"]) daddylive.watch,thedaddy.to##+js(remove-attr, disableremoteplayback, video[id="video-id"]) daddylive.watch,thedaddy.to##+js(trusted-set-attr, video[id="video-id"], data-autoplay-mute-lock, false) daddylive.watch,thedaddy.to##+js(trusted-set-attr, video[id="video-id"], controls, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, video[id="video-id"], x-webkit-airplay, allow) daddylive.watch,thedaddy.to##+js(trusted-set-attr, video[id="video-id"], width, 100%) daddylive.watch,thedaddy.to##+js(trusted-set-attr, video[id="video-id"], height, 100%) daddylive.watch,thedaddy.to##+js(trusted-set-attr, video[id="video-id"], crossorigin, anonymous) daddylive.watch,thedaddy.to##+js(trusted-set-attr, video[id="video-id"], preload, metadata) daddylive.watch,thedaddy.to##+js(trusted-set-attr, video[id="video-id"], playsinline, true) daddylive.watch,thedaddy.to##+js(trusted-set-attr, video[id="video-id"], webkit-playsinline, true) daddylive.watch,thedaddy.to##div[id="footer"]:remove() daddylive.watch,thedaddy.to##div[id="sidebar"]:remove() daddylive.watch,thedaddy.to##iframe[id="stats"]:remove() daddylive.watch,thedaddy.to##iframe[src^="https://st.chatango.com/"]:remove() daddylive.watch,thedaddy.to##iframe[data-aa]:remove() daddylive.watch,thedaddy.to##textarea[id="txtarea"]:remove() daddylive.watch,thedaddy.to##input[type=button]:remove-attr(disabled) !daddylive.watch,thedaddy.to##+js(remove-attr, disabled, input[type=button], stay) daddylive.watch,thedaddy.to##+js(noeval) daddylive.watch,thedaddy.to##+js(remove-node-text, script, /afScript\(/gm) daddylive.watch,thedaddy.to##+js(aopw, emulateStorage) daddylive.watch,thedaddy.to##+js(aopr, emulateStorage) daddylive.watch,thedaddy.to##+js(set-constant, afScript, noopFunc) daddylive.watch,thedaddy.to##+js(set-constant, popWin, noopFunc) daddylive.watch,thedaddy.to##+js(aopw, _chatangoTagserver) daddylive.watch,thedaddy.to##+js(aopr, _chatangoTagserver) ! TODO: ^script doesn't work with attributes since checked before DOM created? daddylive.watch,thedaddy.to##script[data-admpid]:remove() daddylive.watch,thedaddy.to##script[data-adel]:remove() daddylive.watch,thedaddy.to##script[admn]:remove() daddylive.watch,thedaddy.to##script[adcgn]:remove() daddylive.watch,thedaddy.to##script[id="tsjson"]:remove() daddylive.watch,thedaddy.to##^script:has-text(/debugger;/):remove() daddylive.watch,thedaddy.to##+js(remove-node-text, script, /debugger;/gm) daddylive.watch,thedaddy.to##:xpath(//script[contains(text(), 'debugger;')]):remove() ! TODO: Really abort on debugger as that is what the debugger statement already does? daddylive.watch,thedaddy.to##+js(acs, /debugger;/) daddylive.watch,thedaddy.to##^script:has-text(-parseInt):remove() daddylive.watch,thedaddy.to##+js(remove-node-text, script, /\-parseInt/gm) daddylive.watch,thedaddy.to##+js(set-constant, _gaq, []) daddylive.watch,thedaddy.to##+js(abort-on-property-read, _gaq) daddylive.watch,thedaddy.to##+js(abort-on-property-write, _gaq) daddylive.watch,thedaddy.to##+js(acs, /_gaq\.push\(/) daddylive.watch,thedaddy.to##+js(acs, atob, decodeURIComponent) daddylive.watch,thedaddy.to##+js(acs, document, $._Eu, $.BD) daddylive.watch,thedaddy.to##+js(aopw, document.oncontextmenu) daddylive.watch,thedaddy.to##+js(aopr, document.oncontextmenu) daddylive.watch,thedaddy.to##+js(aopw, document.onkeypress) daddylive.watch,thedaddy.to##+js(aopr, document.onkeypress) daddylive.watch,thedaddy.to##+js(aopw, document.onmousedown) daddylive.watch,thedaddy.to##+js(aopr, document.onmousedown) daddylive.watch,thedaddy.to##+js(aopw, x.withCredentials) daddylive.watch,thedaddy.to##+js(aopr, x.withCredentials) daddylive.watch,thedaddy.to##+js(abort-current-script, popundersPerIP) daddylive.watch,thedaddy.to##^script:has-text(/popundersPerIP/):remove() daddylive.watch,thedaddy.to##+js(remove-node-text, script, /popundersPerIP/gm) daddylive.watch,thedaddy.to##:xpath(//script[contains(text(), 'popundersPerIP')]):remove() daddylive.watch,thedaddy.to##+js(remove-node-text, script, /aclib\.runPop\(/gm) daddylive.watch,thedaddy.to##iframe[src="about:blank"]:remove() daddylive.watch,thedaddy.to##div[style="position: fixed !important; display: block; width: 100%; height: 100%; inset: 0px; background-color: rgba(0, 0, 0, 0); z-index: 300000;"]:remove() !daddylive.watch,thedaddy.to##+js(no-setTimeout-if, /^/) daddylive.watch,thedaddy.to##+js(no-setTimeout-if, /function\s?\(\)/) daddylive.watch,thedaddy.to##iframe[src="javascript:false"]:remove() daddylive.watch,thedaddy.to##a[href="/"] > img[alt="web counter free"]:remove() daddylive.watch,thedaddy.to##a[id="preview-link"]:remove() daddylive.watch,thedaddy.to##a[id="frame-link"]:remove() /^https?:\/\/((?!-)[A-Za-z0-9-]+([\-\.]{1}))?(daddylive\.watch|dlhd\.so|dlhd\.sx|daddylivehd\.sx)\/(embed|stream)\/adblock\.php\S*/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !*$3p,script,denyallow=daddylive.watch|thedaddy.to,domain=daddylive.watch|thedaddy.to /^https?:\/\/(?!-)[A-Za-z0-9-]+([\-\.]{1}[A-Za-z0-9]+)*\.[A-Za-z]{2,6}\/?\S*/$3p,script,denyallow=daddylive.watch|thedaddy.to,domain=daddylive.watch|thedaddy.to ||armoryleaseholder.com^* ||santstipule.com^* ||aads.com/campaigns/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ustvgo.live/wp-content/uploads/ad-inserter/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ustvgo.live/wp-content/plugins/ad-inserter-pro/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ustvgo.live/wp-content/plugins/ad-ace/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ustvgo.live/wp-content/plugins/flying-analytics/js/minimal-analytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ustvgo.live/wp-content/plugins/flying-analytics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ustvgo.live/wp-content/plugins/6c8695625fe152188cd21b7e86bd38cd-plugin/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ustvgo.live/wp-content/cache/busting/google-tracking/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ustvgo.live##script[id^="adace-"]:remove() !ustvgo.live##*:style(opacity: 1.0 !important; filter: blur(0px) brightness(100%) !important; -webkit-filter: blur(0px) brightness(100%) !important;) !ustvgo.live##object[id="ai-adb-dblclk"]:remove() !ustvgo.live##object[id="ai-adb-ga"]:remove() ustvgo.live##object[id^="ai-adb-"]:remove() ustvgo.live##script[id^="ai-adb-"]:remove() ustvgo.live##script[id^="google_gtagjs-js"]:remove() ustvgo.live##*[class*="ads-wrapper"]:remove() ustvgo.live##div[class="advertisement_above_footer"]:remove() !ustvgo.live##div[class^="ai-"][data-code]:remove() ! The element in the following rule also contains a script tag with an encoded anti-adblocking script. ustvgo.live##div[id="banner-advert-container"]:remove() ustvgo.live##div[class^="adace-"]:remove() ustvgo.live##div[class*="adace_adsense_"]:remove() ustvgo.live##div[class*="g1-advertisement"]:remove() ustvgo.live##div[class^="sticky-ads"]:remove() ustvgo.live##div[class*="ad_unit"]:remove() ustvgo.live##div[data-ad-slot]:remove() ustvgo.live##div[id="sticky-ads"]:remove() ustvgo.live##div[id="cdbc5ac9afd3"]:remove() ustvgo.live##div[id="NR-Ads"]:remove() ustvgo.live##img[id="nielsen-s2s-audit-ping"]:remove() ustvgo.live##ins[data-ad-client]:remove() ustvgo.live##iframe[id^="aswift_"]:remove() ! TODO: Is the element in the following rule always an ad container? ustvgo.live##li[class*="g1-injected-unit"]:remove() ustvgo.live##div:has-text(Please disable your ad blocker):remove() ustvgo.live##header:has-text(Please disable your ad blocker):remove() ustvgo.live##nav:has-text(Please disable your ad blocker):remove() ustvgo.live##section:has-text(Please disable your ad blocker):remove() ustvgo.live##^script:has-text(/ai_check/):remove() ustvgo.live##+js(remove-node-text, script, /ai_check/gm) ustvgo.live##+js(aopw, adsbygoogle) ustvgo.live##+js(aopr, adsbygoogle) ustvgo.live##+js(aopw, ai_adb) ustvgo.live##+js(aopr, ai_adb) ustvgo.live##+js(acs, ai_adb) ustvgo.live##+js(aopw, ai_check_block) ustvgo.live##+js(aopr, ai_check_block) ustvgo.live##+js(acs, ai_check_block) ustvgo.live##+js(acs, ai_check) ustvgo.live##+js(aopw, ai_check) ustvgo.live##+js(aopr, ai_check) ustvgo.live##+js(aopw, ai_adb_overlay) ustvgo.live##+js(aopr, ai_adb_overlay) ustvgo.live##+js(aopw, n3467530) ustvgo.live##+js(aopr, n3467530) ustvgo.live##+js(set-constant, ai_adb, false) ustvgo.live##+js(set-constant, ai_js_code, false) ustvgo.live##+js(set-constant, ai_run_scripts, noopFunc) ! TODO: Do the numbers on the end of the variable names in the following tworules change? ustvgo.live##+js(set-constant, ai_run_766321742052, noopFunc) ustvgo.live##+js(set-constant, adace_load_671769162f416, noopFunc) ustvgo.live##+js(set-constant, refreshIntervalId, noopFunc) ustvgo.live##+js(no-setInterval-if, refreshIntervalId) ustvgo.live##+js(no-setTimeout-if, ai_install_click_trackers) ustvgo.live##div[id="primary"]:style(left: 0px !important; right: 0px !important; padding: 0 !important; margin: 0 !important; border: none !important; border-width: 0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; user-select: all !important; pointer-events: all !important;) ! The following rule is used for embedded Twitch videos. ustvgo.live##div[class="twitch-embed-container"]:style(left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) ustvgo.live##+js(trusted-set-attr, div[class="twitch-embed-container"], crossorigin, anonymous) ustvgo.live##+js(trusted-set-attr, div[class="twitch-embed-container"], preload, metadata) !ustvgo.live##div[id="twitch-embed"]:style(left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) ustvgo.live##div[class="player-wrapper"]:style(left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) ustvgo.live##div[class="player-wrapper"][class*="vjs-controls-disabled"]:remove-class(vjs-controls-disabled) ustvgo.live##+js(remove-class, vjs-controls-disabled, div[class="player-wrapper"][class*="vjs-controls-disabled"]) ustvgo.live##+js(add-class, vjs-controls-enabled, div[class="player-wrapper"]) ustvgo.live##+js(trusted-set-attr, div[class="player-wrapper"], crossorigin, anonymous) ustvgo.live##+js(trusted-set-attr, div[class="player-wrapper"], preload, metadata) !ustvgo.live##div[id="player"]:style(left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) ustvgo.live##div[class^="code-block"]:has(title:has-text(/Premium Service Banner Ad/)) > div[class="banner"]:has(h2:has-text(/Access all channels with our premium service/)):upward(1):remove() ! The following rule removes a fake video player frame. ustvgo.live##div[class="g1-frame-inner"] > img[class*="wp-post-image"]:remove() ustvgo.live##div[id="demoplayer"]:style(position: relative !important; left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) ustvgo.live##iframe[src="https://player.twitch.tv?channel="]:style(left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100% !important; width: 100% !important; max-height: 100% !important; height: 100% !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) ustvgo.live##+js(trusted-set-attr, iframe[src="https://player.twitch.tv?channel="], marginheight, 0) ustvgo.live##+js(trusted-set-attr, iframe[src="https://player.twitch.tv?channel="], marginwidth, 0) ustvgo.live##+js(trusted-set-attr, iframe[src="https://player.twitch.tv?channel="], mozallowfullscreen, true) ustvgo.live##+js(trusted-set-attr, iframe[src="https://player.twitch.tv?channel="], webkitallowfullscreen, true) ustvgo.live##+js(trusted-set-attr, iframe[src="https://player.twitch.tv?channel="], autoplay, yes) ustvgo.live##+js(trusted-set-attr, iframe[src="https://player.twitch.tv?channel="], allow, picture-in-picture; autoplay; fullscreen; encrypted-media; clipboard-write; accelerometer; gyroscope; web-share;) ustvgo.live##+js(trusted-set-attr, iframe[src="https://player.twitch.tv?channel="], seamless, seamless) !ustvgo.live##+js(trusted-set-attr, iframe[src="https://player.twitch.tv?channel="], referrerpolicy, origin) ustvgo.live##+js(trusted-set-attr, iframe[src="https://player.twitch.tv?channel="], referrerpolicy, unsafe-url) ustvgo.live##+js(trusted-set-attr, iframe[src="https://player.twitch.tv?channel="], oallowfullscreen, true) ustvgo.live##+js(trusted-set-attr, iframe[src="https://player.twitch.tv?channel="], msallowfullscreen, true) !ustvgo.live##+js(trusted-set-attr, iframe[src="https://player.twitch.tv?channel="], loading, eager) ! TODO: Setting the sandbox attribute may break the video player. !ustvgo.live##+js(trusted-set-attr, iframe[src="https://player.twitch.tv?channel="], sandbox, allow-pointer-lock; allow-top-navigation; allowTransparency; allow-modals; allow-scripts; allow-same-origin; allow-popups; allow-popups-to-escape-sandbox; allow-storage-access-by-user-activation; allow-forms) ! The following attributes are already set by default on this website. ustvgo.live##+js(trusted-set-attr, iframe[src="https://player.twitch.tv?channel="], width, 100%) ustvgo.live##+js(trusted-set-attr, iframe[src="https://player.twitch.tv?channel="], height, 100%) ustvgo.live##+js(trusted-set-attr, iframe[src="https://player.twitch.tv?channel="], frameborder, 0) ustvgo.live##+js(trusted-set-attr, iframe[src="https://player.twitch.tv?channel="], allowfullscreen, true) ustvgo.live##+js(trusted-set-attr, iframe[src="https://player.twitch.tv?channel="], scrolling, no) ustvgo.live##+js(remove-class, seek-disabled, , stay) ustvgo.live##+js(aopr, window.advanced_ads_ready) ustvgo.live##+js(aopw, window.advanced_ads_ready) ! enable show all controls to see video controls when the following rule is used. !ustvgo.live##div[data-media-control]:remove() ||d2v02itv0y9u9t.cloudfront.net^* player.twitch.tv##button[data-a-target="follow-button"]:remove() player.twitch.tv##figure[aria-label="foxnewsgo"]:remove() player.twitch.tv##figure[aria-label="espnewsgo"]:remove() player.twitch.tv##img[id="nielsen-s2s-audit-ping"]:remove() !||jewisk.com/script/tailwind.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||jewisk.com^* iptvwire.com##div[class*="mysticky-welcomebar-"]:remove() iptvwire.com##a[href="https://iptvwire.com/vpn-sidebar"]:remove() iptvwire.com##div[class="su-box su-box-style-default"]:has(a[href="https://iptvwire.com/vpn-tracked"]):remove() iptvwire.com##div[class="su-button-center"]:has(a[href="https://iptvwire.com/vpn-riskfree"]):remove() iptvwire.com##+js(aopr, _stq) iptvwire.com##+js(aopw, _stq) ||www.revenuenetworkcpm.com^* www.9now.com.au##input[id="toggle_notification_notification-ad-blocker"]:remove() ||www.insurancehealth.info^* ||insurancehealth.info^* chowmain.software##div[role="presentation"][class^="MuiModal-root MuiDialog-root"]:remove() chowmain.software##body:style(overflow: scroll !important;) www.fanatical.com##div[class^="PrivacyChecker"]:remove() ||chlign.com/script/tailwind.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.betus.com.pa/miscellaneous/landing?offer$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||livecdn.pro/in.php?source=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.wedxuaksargvlf.com^* ||wedxuaksargvlf.com^* ||www.evzxlgstwcai.com^* ||evzxlgstwcai.com^* !||cdn.fedykr.com/app.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.fedykr.com^* ||www.tgo-tv.co/js/chat.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tgo-tv.co/tgochat.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.sqydhgubsy.com^* ||sqydhgubsy.com^* ||inoculateexplosionpostman.com^* ||ak.roudoduor.com^* !||for-j.com/tds3.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||for-j.com^* !||tags.tiqcdn.com/utag/tiqapp/utag.v.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tags.tiqcdn.com/utag/cbsi/cbsnewssite/prod/utag.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tags.tiqcdn.com/utag/cbsi/pluto-tv/prod/utag.sync.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tags.tiqcdn.com/utag/cbsi/pluto-tv/prod/utag.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tags.tiqcdn.com/utag/cbsi/pluto-tv/prod/utag.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The following rule blocks pluto.tv video streams !||tags.tiqcdn.com^* !||siloh.pluto.tv/679_53_ad/creative/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||siloh-aka.plutotv.net/318_79_ad/creative/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||siloh-aka.plutotv.net/*_ad/creative/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||siloh.pluto.tv/*_ad/creative/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css pluto.tv##button[id="pictureInPictureToggle"]:remove-attr(hidden) pluto.tv##+js(remove-attr, hidden, button[id="pictureInPictureToggle"]) pluto.tv##div[class^="adPodProgressIndicator-"]:remove() pluto.tv##div[class^="clickableAd"]:remove() pluto.tv##div[aria-labelledby="terms-of-use-heading"]:remove() pluto.tv##*[class*="vjs-controls-disabled"]:remove-class(vjs-controls-disabled) pluto.tv##+js(remove-class, vjs-controls-disabled, *[class*="vjs-controls-disabled"], stay) ! Don't remove vjs-user-inactive class as it changes to vjs-user-active when the cursor is over the video viewport. !pluto.tv##*[class*="vjs-user-inactive"]:remove-class(vjs-user-inactive) !pluto.tv##+js(remove-class, vjs-user-inactive, *[class*="vjs-user-inactive"], stay) pluto.tv##div[data-role="adContainer"]:remove() pluto.tv##div[data-role="adClickEl"]:remove() pluto.tv###omid_v1_present:remove() pluto.tv##iframe[id="omid_v1_present_web"]:remove() pluto.tv##input[aria-label="pause"]:remove-attr(disabled) pluto.tv##input[aria-label="pause"]:style(display: inline !important;) pluto.tv##input[aria-label="show more media controls"]:remove-attr(disabled) pubads.g.doubleclick.net^*$xhr,domain=pluto.tv pagead2.googlesyndication.com^*$xhr,domain=pluto.tv ||g.bidbrain.app^* ||pingpepa.xyz^* www.audioholics.com##div[id="sitemodal"]:remove() ! "ishtehar " division must exist or download post won't work. !filecr.com##div[class^="ishtehar"]:has(ins[data-ad-client]):remove() !filecr.com##div[class^="ishtehar"]:remove() filecr.com##div[class="ishtehar "]:style(min-height: 0px !important; min-width: 0px !important; max-height: 0px !important; max-width: 0px !important;) filecr.com##div[id="ishtehar-popup"]:remove() filecr.com##div[class="alert fixed"]:has(div[class="alert-wrap"]):remove() filecr.com##ins[data-ad-client]:remove() filecr.com##ins[data-adsbygoogle-status]:remove() filecr.com##div[class^="adblock_wrap"]:remove() filecr.com##div[class^="main-adblock-wrap"]:remove() filecr.com##div[id="premium-modal"]:remove() filecr.com##span[data-tooltip-content="Premium"]:remove-attr(data-tooltip-content) filecr.com##+js(remove-attr, data-tooltip-content, span[data-tooltip-content="Premium"]) filecr.com##span[data-tooltip-id="premium-upload"]:remove-attr(data-tooltip-id) filecr.com##+js(remove-attr, data-tooltip-id, span[data-tooltip-id="premium-upload"]) ! TODO: This cookie is not enough to get a "premium" page link from the website without using the web browser extension. ! The web browser extension converts tags to anchor tags and provides the href value for the anchor tag. ! But, the presence of the cookie will allow the web browser extension to be disabled when loading that premium page and getting downloads from it. ! This cookie gets deleted by https://filecr.com/_next/static/chunks/pages/_app-43d2c0d0ceaf94c9.js unless the script is modified by the rules below. ! The following rule reloads/refreshes the page after setting the cookie value. ! The fourth parameter in the following rule is the path of the cookie with / as the default. !filecr.com##+js(set-cookie, extensionIsInstalled, true, /, reload, 1) filecr.com##+js(set-cookie, extensionIsInstalled, true, /) ! TODO: Does the following script filename change? ||filecr.com/_next/static/chunks/pages/_app-43d2c0d0ceaf94c9.js$replace=/function E\(\)\s?{\s?\(0\,\s?w\.deleteCookie\)\s?\(y\.extensionCookie\)\}/function E(){(0,w.setCookie)(y.extensionCookie,"true",{expires:new Date(new Date().getTime()+31536e6)})}/gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css filecr.com##+js(trusted-replace-node-text, script, /function E\(\)\s?{\s?\(0\,\s?w\.deleteCookie\)\s?\(y\.extensionCookie\)\}/gm, function E(){(0,w.setCookie)(y.extensionCookie,"true",{expires:new Date(new Date().getTime()+31536e6)})}) ! https://www.reddit.com/r/uBlockOrigin/comments/minihc/filecrcom_detecting_ublockorigin/ !filecr.com##div.filec-widget:remove() filecr.com##div[class*="filec-widget"]:remove() filecr.com##div[class*="filec-sticky-ad"]:remove() ! Inline scripts must be blocked on filecr.com, but allowed on https://filecr.com/download/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css filecr.com^$inline-script filecr.com##+js(abort-on-property-write, advanced_ads_ga_UID) filecr.com##+js(abort-on-property-read, advanced_ads_ga_UID) filecr.com##+js(abort-on-property-write, advanced_ads_ga_anonymIP) filecr.com##+js(abort-on-property-read, advanced_ads_ga_anonymIP) filecr.com##+js(abort-on-property-write, window.advanced_ads_ready) filecr.com##+js(abort-on-property-read, window.advanced_ads_ready) filecr.com##+js(abort-on-property-write, window.advanced_ads_sticky_items) filecr.com##+js(abort-on-property-read, window.advanced_ads_sticky_items) filecr.com##+js(aopr, advadsCfpAd) filecr.com##+js(aopw, advadsCfpAd) filecr.com##+js(acs, advadsCfpAd) filecr.com##^script:has-text(advadsCfpAd) filecr.com##div[class*="ads-wrapper-footer"] filecr.com##+js(aopr, adsbygoogle) filecr.com##+js(aopw, adsbygoogle) filecr.com##+js(aopr, advadsCfpInfo) filecr.com##+js(aopw, advadsCfpInfo) !filecr.com##div[id="mdp-deblocker-js-disabled"]:remove() !filecr.com##div[id="mdp-deblocker-ads"]:remove() filecr.com##div[id^="mdp-deblocker-"]:remove() filecr.com##div[class*="ads-wrapper"]:remove() filecr.com##div[class="top-header-ad"]:remove() filecr.com##+js(set-constant, ShPublic.disable_server_downloads, 0, stay) filecr.com##^script:has-text(/decodeURIComponent\(escape\(r\)\)/i):remove() ! TODO: ^script doesn't work with attributes since checked before DOM created? filecr.com##script[id^="advanced-ads-"]:remove() filecr.com##script[id="next-plausible-init"]:remove() filecr.com##+js(remove-node-text, script, /window\.plausible\s?=/gm) filecr.com##div[class$="-blackout active"]:remove() filecr.com##div[class^="wp-"][class$="-content"]:has(div[class^="main-adblock-wrap"]):remove() !filecr.com##div[class^="wp-"][class$="-wrapper"]:remove() filecr.com##div[class$="-wrapper"]:remove() filecr.com##+js(set-constant, adsBlocked, falseFunc) filecr.com##+js(set-constant, window.mdpDeBlockerDestroyer, false) filecr.com##+js(set-constant, disableTextSelection, noopFunc) filecr.com##+js(set-constant, disableContextMenu, noopFunc) filecr.com##+js(set-constant, disableHotKeys, noopFunc) filecr.com##+js(set-constant, disableDeveloperTools, noopFunc) !||filecr.com/wp-content/plugins/advanced-ads-pro/assets/advanced-ads-pro.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||filecr.com/wp-content/plugins/advanced-ads-pro/assets/js/advanced-ads-pro.min.js?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||filecr.com/wp-content/plugins/advanced-ads-pro/modules/cache-busting/inc/base.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||filecr.com/wp-content/plugins/advanced-ads-pro/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||filecr.com/wp-content/plugins/advanced-ads-responsive/public/assets/js/script.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||filecr.com/wp-content/plugins/advanced-ads-responsive/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||filecr.com/wp-content/plugins/advanced-ads-sticky-ads/public/assets/js/sticky.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||filecr.com/wp-content/plugins/advanced-ads-sticky-ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||filecr.com/wp-content/plugins/advanced-ads/public/assets/js/advanced.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||filecr.com/wp-content/plugins/advanced-ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||filecr.com/wp-content/plugins/deblocker/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||filecr.com/wp-content/plugins/deblocker/js/deblocker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||filecr.com/wp-content/plugins/deblocker/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||filecr.com/wp-content/uploads/2019/12/ADBLOACK-WARNING.jpg$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||filecr.com/push-sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||anygame.net/push-sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pagead2.googlesyndication.com^*$script,domain=filecr.com ||wfimhtwg.xyz^* ||whoostoo.xyz^* ||agouajbi.xyz^* ||ffxpfkbro.xyz^* parkingpage.namecheap.com##div[class="trackingcontainer"] parkingpage.namecheap.com##+js(aopr, policywnd) parkingpage.namecheap.com##+js(aopw, policywnd) parkingpage.namecheap.com##+js(aopr, replacementLink) parkingpage.namecheap.com##+js(aopw, replacementLink) parkingpage.namecheap.com##div[id="ads"]:remove() ! TODO: ^script doesn't work with attributes since checked before DOM created? parkingpage.namecheap.com##script[src*="://parkingcrew.net/jsparkcaf.php"]:remove() ||parkingcrew.net/jsparkcaf.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css securitytrails.com##+js(remove-class, text-preview, td, stay) !||79423.analytics.edgekey.net/ma_library/javascript/javascript_malibrary.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||79423.analytics.edgekey.net/ma_library/javascript/$script ||pro-swapper.com^* ||downloadnature.space^* ||downloadnature.com^* ||fast-redirect.host^* ||bragi-studio.com^* ||plplme.site^* ||fenzor.com^* ||universe-photo.com^* ||rainway-gaming.com^* ||awaken1337.xyz^* ||pixelka.fun^* ||vortex-cloudgaming.com^* ||vontex.tech^* ||user52406.majorcore.space^* ||voneditor.tech^* ||spaceditor.space^* ||roudar.com^* ||peoplep.site^* ||anypon.online^* ||zeneditor.tech^* ||yourworld.site^* ||playerupbo.xyz^* ||dizzify.me^* ||appfree.club^* ||dolala.xyz^* ||micbig.top^* ||mictobig.xyz^* ||napala.top^* ||neuka.top^* ||neukoo.top^* ||shopproxy.live^* ||papazz.xyz^* ||poloke.top^* ||programe.top^* ||progriu.top^* ||puname.top^* ||ubutun.xyz^* ||pdlickwvqucbg.xyz^* ||eymprvikdld.xyz^* /^https?:\/\/userupload\.(net|in)\/assets\/js\/advertisement\.js/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css /^https?:\/\/userupload.net\/ds2\/js\/fuckadblock\.js/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css /^https?:\/\/userupload.net\/(ds2|assets)\/js\/1\.min\.js/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !userupload.net,userupload.in##div[class="ad-unit hidden-xs"]:remove() !userupload.net,userupload.in##div[class="ad-unit visible-xs"]:remove() userupload.net,userupload.in##div[class^="ad-unit"]:remove() userupload.net,userupload.in##div[class^="adb-"]:remove() userupload.net,userupload.in##div[id="AdbModel"]:remove() userupload.net,userupload.in##div[class="adsbox"]:remove() userupload.net,userupload.in##div[id="adblockinfo"]:remove() userupload.net,userupload.in##div[id="mobGo"]:remove() userupload.net,userupload.in##input[id="adblock_detected"]:remove() userupload.net,userupload.in##ins[class="adsbygoogle"]:remove() !userupload.net,userupload.in##div[class="ads mb-4"]:remove() userupload.net,userupload.in##div[class^="ads mb-"]:remove() userupload.net,userupload.in##.btn-danger.btn:remove() userupload.net,userupload.in##a[href*="//betzapdoson.com/"]:remove() userupload.net,userupload.in##iframe[id^="google_ads_frame"]:remove() userupload.net,userupload.in##amp-auto-ads:remove() userupload.net,userupload.in##input[id="addon"]:remove() userupload.net,userupload.in##div[id="gdpr-cookie-notice"]:remove() userupload.net,userupload.in##ins[data-ad-client]:remove() userupload.net,userupload.in##*[class^="adblock_"]:remove() userupload.net,userupload.in##*[id="vc4c"]:remove() userupload.net,userupload.in##*[id="ad-banner-1"]:remove() userupload.net,userupload.in##*[id="ad-slot-2"]:remove() userupload.net,userupload.in##*[id="ad-sponsors"]:remove() userupload.net,userupload.in##*[id="ad728x90_1"]:remove() userupload.net,userupload.in##*[id="ad_mpu2"]:remove() userupload.net,userupload.in##*[id="featuread"]:remove() userupload.net,userupload.in##*[id="rightAd1"]:remove() userupload.net,userupload.in##*[id="ad"]:remove() userupload.net,userupload.in##*[id="ads"]:remove() userupload.net,userupload.in##*[id="adsense"]:remove() userupload.net,userupload.in##script[custom-element="amp-auto-ads"]:remove() ! need to specify third-party for the no-xhr-if; not of !/userupload.in/i, !/userupload.net/i userupload.net,userupload.in##+js(no-xhr-if, !/userupload\.(in|net)/i method:HEAD) userupload.net,userupload.in##+js(no-fetch-if, !/userupload\.(in|net)/i method:HEAD) !userupload.net,userupload.in##+js(aeld, /^(?:blur|click|error)$/) userupload.net,userupload.in##+js(aeld, blur) userupload.net,userupload.in##+js(aeld, click) userupload.net,userupload.in##+js(aeld, error) userupload.net,userupload.in##+js(abort-on-property-read, adblockinfo) userupload.net,userupload.in##+js(abort-current-script, adblockinfo) userupload.net,userupload.in##+js(abort-on-property-read, bannerad) userupload.net,userupload.in##+js(abort-current-script, bannerad) userupload.net,userupload.in##+js(abort-on-property-read, adblock_detected) userupload.net,userupload.in##+js(abort-current-script, adblock_detected) userupload.net,userupload.in##+js(abort-on-property-read, adsbox) userupload.net,userupload.in##+js(abort-current-script, adsbox) userupload.net,userupload.in##+js(abort-on-property-read, adsbygoogle) userupload.net,userupload.in##+js(abort-current-script, adsbygoogle) userupload.net,userupload.in##+js(abort-current-script, vc4c) userupload.net,userupload.in##+js(set-constant, atOptions, {}) userupload.net,userupload.in##+js(abort-on-property-read, atOptions) userupload.net,userupload.in##+js(abort-on-property-write, atOptions) userupload.net,userupload.in##+js(set-constant, _gaq, []) userupload.net,userupload.in##+js(abort-on-property-read, _gaq) userupload.net,userupload.in##+js(abort-on-property-write, _gaq) userupload.net,userupload.in##+js(aopr, x.withCredentials) userupload.net,userupload.in##+js(aopw, x.withCredentials) userupload.net,userupload.in##+js(trusted-set-attr, #downloadbtn, type, submit) userupload.net,userupload.in##+js(set-constant, AdblockRegixFinder, {}) userupload.net,userupload.in##+js(aopr, AdblockRegixFinder) userupload.net,userupload.in##+js(aopw, AdblockRegixFinder) userupload.net,userupload.in##+js(set-constant, Adblock_HTMLTemplate, {}) userupload.net,userupload.in##+js(set-constant, AdBlock_Helper, {}) userupload.net,userupload.in##+js(aopr, Adblock_HTMLTemplate) userupload.net,userupload.in##+js(aopw, Adblock_HTMLTemplate) userupload.net,userupload.in##+js(aopr, AdBlock_Helper) userupload.net,userupload.in##+js(aopw, AdBlock_Helper) userupload.net,userupload.in##+js(set-constant, CHPAdblock, noopFunc) userupload.net,userupload.in##+js(acs, /CHPAdblock\(\)/) userupload.net,userupload.in##+js(set-constant, fairAdblock, noopFunc) userupload.net,userupload.in##+js(aopr, fairAdblock) userupload.net,userupload.in##+js(aopw, fairAdblock) userupload.net,userupload.in##+js(remove-node-text, script, /AdblockRegixFinder/gm) userupload.net,userupload.in##+js(remove-node-text, script, /_gaq\.push\(\[/gm) ! This makes the countdown very quick from 10 seconds userupload.net,userupload.in##+js(nano-stb, tick()) ! The following xpaths may change. !userupload.net,userupload.in##:xpath(/html/body/div/div/form/div[2]/div[2]/div[2]/div[2]/script[2]):remove() !userupload.net,userupload.in##:xpath(/html/body/div/div/form/div[2]/div[2]/div[2]/script[1]):remove() ||mutjrvxlldyrbyg.xyz^* ||beggarlyfilmingabreast.com^* ||xijgedjgg5f55.com^* ||law-schools-online2.top^* ||www.mjtwoqupix.com^* ||mjtwoqupix.com^* ||2734478852^* ||insurancesize.com^* ||besluor.com^* ||ww38.qfind.net^* ||qfind.net^* ||www.csrmohcym.com^* ||csrmohcym.com^* ||www.lycnxmfecctutt.com^* ||lycnxmfecctutt.com^* ||cdn.discordapp.com/attachments/1089155711889584169/1089155794794188830/AppFile.exe$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xstats.net/js/plausible.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||yourtehzeeb.com/fsembed.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.betteradsystem.com/responsive-nav.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||time4tv.stream/top.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||time4tv.xyz/top.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !time4tv.stream,time4tv.xyz##iframe[src^="https://www.sports-stream.click/s2w/spsch.php"] time4tv.stream,time4tv.xyz##+js(acs, document.oncontextmenu) time4tv.stream,time4tv.xyz##+js(aopr, document.oncontextmenu) time4tv.stream,time4tv.xyz##+js(aopw, document.oncontextmenu) time4tv.stream,time4tv.xyz##+js(remove-attr, oncontextmenu, body) time4tv.stream,time4tv.xyz##body:remove-attr(oncontextmenu) time4tv.stream,time4tv.xyz##+js(acs, decodeURIComponent, window) time4tv.stream,time4tv.xyz##^script:has-text(www.google.com):remove() time4tv.stream,time4tv.xyz##+js(remove-node-text, script, /www\.google\.com/gm) time4tv.stream,time4tv.xyz##^script:has-text(top.location):remove() time4tv.stream,time4tv.xyz##+js(remove-node-text, script, /top\.location/gm) time4tv.stream,time4tv.xyz##:xpath(//script[contains(text(), 'top.location')]):remove() time4tv.stream,time4tv.xyz##+js(acs, top.location) time4tv.stream,time4tv.xyz##+js(aopr, top.location) time4tv.stream,time4tv.xyz##+js(aopw, top.location) time4tv.stream,time4tv.xyz##iframe[src^="https://st.chatango.com/"]:remove() time4tv.stream,time4tv.xyz##a[href^="https://xijgedjgg5f55.com/"] time4tv.stream,time4tv.xyz##div[id="floatLayer1"] ! the debugger detector is in a generated function so use noeval instead. time4tv.stream,time4tv.xyz##+js(noeval) time4tv.stream,time4tv.xyz##+js(remove-node-text, script, /debugger;/gm) time4tv.stream,time4tv.xyz##^script:has-text(/debugger;/):remove() time4tv.stream,time4tv.xyz##:xpath(//script[contains(text(), 'debugger;')]):remove() ! TODO: Really abort on debugger as that is what the debugger statement already does? time4tv.stream,time4tv.xyz##+js(acs, /debugger;/) time4tv.stream,time4tv.xyz##^script:has-text(/detectDevTool/):remove() time4tv.stream,time4tv.xyz##+js(remove-node-text, script, /detectDevTool/gm) time4tv.stream,time4tv.xyz##:xpath(//script[contains(text(), 'detectDevTool')]):remove() time4tv.stream,time4tv.xyz##+js(acs, detectDevTool) time4tv.stream,time4tv.xyz##+js(remove-attr, style, .seek-time, stay) time4tv.stream,time4tv.xyz##+js(remove-class, seek-disabled, div, stay) time4tv.stream,time4tv.xyz##+js(remove-class, volume-bar-hide, div, stay) time4tv.stream,time4tv.xyz##div[class="chatBox"]:remove() time4tv.stream,time4tv.xyz##iframe[id="rufous-sandbox"]:remove() time4tv.stream,time4tv.xyz##+js(set-constant, atOptions, {}) time4tv.stream,time4tv.xyz##+js(aopr, atOptions) time4tv.stream,time4tv.xyz##+js(aopw, atOptions) time4tv.stream,time4tv.xyz##+js(remove-node-text, script, /p\$00a/gm) time4tv.stream,time4tv.xyz##^script:has-text(p$00a):remove() time4tv.stream,time4tv.xyz##:xpath(//script[contains(text(), 'p$00a')]):remove() time4tv.stream,time4tv.xyz##+js(set-constant, p$00a, "") time4tv.stream,time4tv.xyz##+js(set-constant, _0x5d4b, []) time4tv.stream,time4tv.xyz##+js(acs, p$00a, _0x5d4b) time4tv.stream,time4tv.xyz##+js(aopr, p$00a, _0x5d4b) time4tv.stream,time4tv.xyz##+js(aopw, p$00a, _0x5d4b) time4tv.stream,time4tv.xyz##+js(set-constant, f1V2u, {}) time4tv.stream,time4tv.xyz##+js(acs, f1V2u, zfgaabversion, zfgloadedpopup) time4tv.stream,time4tv.xyz##^script:has-text(zfgaabversion):remove() time4tv.stream,time4tv.xyz##+js(remove-node-text, script, /zfgaabversion/gm) time4tv.stream,time4tv.xyz##^script:has-text(zfgloadedpopup):remove() time4tv.stream,time4tv.xyz##+js(remove-node-text, script, /zfgloadedpopup/gm) time4tv.stream,time4tv.xyz##^script:has-text(f1V2u):remove() time4tv.stream,time4tv.xyz##+js(remove-node-text, script, /f1V2u/gm) time4tv.stream,time4tv.xyz##+js(set-constant, _jnwlwxy, noopFunc) time4tv.stream,time4tv.xyz##+js(set-constant, _aisdow, noopFunc) ! TODO: ^script doesn't work with attributes since checked before DOM created? time4tv.stream,time4tv.xyz##script[src*="/go.oclasrv.com/apu.php"]:remove-attr(onerror) time4tv.stream,time4tv.xyz##script[src*="/go.oclasrv.com/apu.php"]:remove-attr(onload) time4tv.stream,time4tv.xyz##script[src*="/go.oclasrv.com/apu.php"]:remove() ! None of the following appears to work to stop redirection for extrafreetv.com/embed/em.php URL's ! TODO: extrafreetv.com is defunct. extrafreetv.com##+js(remove-node-text, script, /top\.location/gm) extrafreetv.com##:xpath(//script[contains(text(), 'top.location')]):remove() extrafreetv.com##+js(acs, /top\.location/) extrafreetv.come##+js(aopr, top.location) extrafreetv.come##+js(aopw, top.location) extrafreetv.com##^script:has-text(google.com):remove() extrafreetv.com##+js(remove-node-text, script, /google\.com/gm) extrafreetv.com##+js(acs, google.com) extrafreetv.com##+js(acs, channel) extrafreetv.come##+js(aopr, channel) extrafreetv.come##+js(aopw, channel) extrafreetv.com##+js(remove-node-text, script, /window\.b364e002848ea53878a528b3cbf77ffd/gm) extrafreetv.com##:xpath(//script[contains(text(), 'window.b364e002848ea53878a528b3cbf77ffd')]):remove() extrafreetv.com##+js(set-constant, window.b364e002848ea53878a528b3cbf77ffd, "") extrafreetv.com##+js(acs, window.b364e002848ea53878a528b3cbf77ffd) extrafreetv.com##+js(aopw, window.b364e002848ea53878a528b3cbf77ffd) extrafreetv.com##div[id="floatLayer1"]:remove() extrafreetv.com##iframe[src^="https://extrafreetv.com/camp1.php"]:remove() !||extrafreetv.com/camp1.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||extrafreetv.com/images/x1.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !extrafreetv.com##+js(remove-attr, OnContextMenu, body, stay) extrafreetv.com##+js(remove-attr, OnContextMenu, body) extrafreetv.com##body:remove-attr(OnContextMenu) ||empied.com/script/clock.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.premiumvertising.com/twilio.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dm7ii62qkhy9z.cloudfront.net^* ||d333p98mzatwjz.cloudfront.net^* ||tpeoplesho.info^* ! embedstreams.me and embedstream.me are the same website/host, but neither domain name redirects to the another. !*$3p,script,denyallow=sts.kenitv.me|sts.niaomea.me|cdn.niaomea.me|www.niaomea.me|cuervotv.me|sts.cuervotv.me|cdn.cuervotv.me|embedstreams.me|embedstream.me,domain=embedstreams.me|embedstream.me /^https?:\/\/(?!-)[A-Za-z0-9-]+([\-\.]{1}[A-Za-z0-9]+)*\.[A-Za-z]{2,6}\/?\S*/$3p,script,denyallow=sts.kenitv.me|sts.niaomea.me|cdn.niaomea.me|www.niaomea.me|cuervotv.me|sts.cuervotv.me|cdn.cuervotv.me|embedstreams.me|embedstream.me,domain=embedstreams.me|embedstream.me ||embedstream.me/cash.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||embedstreams.me/cash.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||embedstreams.me/partytown/partytown*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||embedstreams.me/partytown/partytown-sandbox-sw.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||embedstreams.me/partytown/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||embedstream.me/partytown/partytown.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||embedstream.me/partytown/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css embedstreams.me,embedstream.me##+js(set-constant, partytown, {}) embedstreams.me,embedstream.me##body:remove-attr(onerror) embedstreams.me,embedstream.me##+js(remove-attr, onerror, body[onerror]) embedstreams.me,embedstream.me##div[class="leaderAdvert"]:remove() embedstreams.me,embedstream.me##div[class="leaderAdvert"]:remove() embedstreams.me,embedstream.me##div[class="insertad"]:remove() embedstreams.me,embedstream.me##div[class="homeAd2"]:remove() embedstreams.me,embedstream.me##div[class="header-ad-wrapper"]:remove() embedstreams.me,embedstream.me##div[class="contentad"]:remove() embedstreams.me,embedstream.me##div[class^="googleAd"]:remove() embedstreams.me,embedstream.me##div[class^="afs_ads"]:remove() embedstreams.me,embedstream.me##div[class*="ad-placement"]:remove() ! The src of the following iframes changes so the rule with style selection is more encompassing. embedstreams.me,embedstream.me##iframe[src*="//easysemblyjusti.info/"]:remove() embedstreams.me,embedstream.me##iframe[src*="//goneawaytogy.info/"]:remove() embedstreams.me,embedstream.me##iframe[style="display: none;"]:remove() !embedstreams.me,embedstream.me##object[data="data:application/pdf;base64,aG1t"]:remove-attr(onerror) embedstreams.me,embedstream.me##object[data="data:application/pdf;base64,aG1t"]:remove() ! The id's blocked by the following rule are dynamic/random. embedstreams.me,embedstream.me##img[width="1"][height="1"][class="d-none"]:remove() embedstreams.me,embedstream.me##+js(trusted-replace-node-text, script, /if\s?\(\s?window\.top\s?===\s?window\.self\s?\)/gm, if(null)) ! TODO: The following two rules remove the same script which prevents the iframe with the video player from being created. !embedstreams.me,embedstream.me##+js(remove-node-text, script, /const siteConfig\s?=\s?\{/gm) !embedstreams.me,embedstream.me##+js(remove-node-text, script, /const emprefs\s?=\s?setInterval/gm) !embedstreams.me,embedstream.me##+js(aopr, siteConfig) !embedstreams.me,embedstream.me##+js(aopw, siteConfig) embedstreams.me,embedstream.me##+js(aopr, emprefs) embedstreams.me,embedstream.me##+js(aopw, emprefs) embedstreams.me,embedstream.me##+js(set-constant, emprefs, noopFunc) embedstreams.me,embedstream.me##+js(set-constant, empTrack, "") embedstreams.me,embedstream.me##+js(set-constant, empTrackUrl, "") embedstreams.me,embedstream.me##+js(set-constant, siteConfig.tracker, "", complete) embedstreams.me,embedstream.me##+js(set-constant, siteConfig.trackerUrl, "", complete) ! Uncaught SyntaxError: redeclaration of non-configurable global property sandDetect !embedstreams.me,embedstream.me##+js(set-constant, sandDetect, falseFunc) !embedstreams.me,embedstream.me##+js(acs, sandDetect) embedstreams.me,embedstream.me##+js(set-constant, refObj, true) embedstreams.me,embedstream.me##+js(set-constant, window.b8ade3936780eab00ffad9d29f8907ff, "") embedstreams.me,embedstream.me##+js(aopr, window.b8ade3936780eab00ffad9d29f8907ff) embedstreams.me,embedstream.me##+js(aopw, window.b8ade3936780eab00ffad9d29f8907ff) embedstreams.me,embedstream.me##+js(aopr, x.withCredentials) embedstreams.me,embedstream.me##+js(aopw, x.withCredentials) embedstreams.me,embedstream.me##+js(aopr, window.dataLayer) embedstreams.me,embedstream.me##+js(aopw, window.dataLayer) embedstreams.me,embedstream.me##+js(set-constant, detectDevTool, noopFunc) embedstreams.me,embedstream.me##+js(set-constant, forceKillplayer, noopFunc) embedstreams.me,embedstream.me##+js(set-constant, debounce, noopFunc) !embedstreams.me,embedstream.me##+js(no-setTimeout-if, function) !embedstreams.me,embedstream.me##+js(no-setTimeout-if, /^function\(\)/) !embedstreams.me,embedstream.me##+js(no-setInterval-if, function) !embedstreams.me,embedstream.me##+js(no-setInterval-if, /^function\(\)/) embedstreams.me,embedstream.me##+js(no-setInterval-if, /^function\(\)/, emprefs) embedstreams.me,embedstream.me##+js(no-setTimeout-if, forceKillplayer) ! TODO: allow clearTimeout() sometimes? This rule should not be necessary if the timeout was prevented by another rule. !embedstreams.me,embedstream.me#@#+js(no-setTimeout-if, !/clearTimeout\(/) embedstreams.me,embedstream.me##+js(abort-current-script, popundersPerIP) embedstreams.me,embedstream.me##^script:has-text(/popundersPerIP/):remove() embedstreams.me,embedstream.me##+js(remove-node-text, script, /popundersPerIP/gm) embedstreams.me,embedstream.me##:xpath(//script[contains(text(), 'popundersPerIP')]):remove() embedstreams.me,embedstream.me##+js(remove-node-text, script, /\{var FingerprintJS=function\(\w\)\{"use strict";/gm) embedstreams.me,embedstream.me##iframe[title="embed player"]:style(left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; overflow:auto !important; user-select: all !important; pointer-events: all !important;) ! TODO: selection of iframe by title attribute, e.g. iframe[title="embed player"] , does not work and the attribute name in this case is dynamically/randomly generated. ! iframe[loading="lazy"] and just plain iframe doesn't work either. ! This may not work because the iframe is generated by javascript. embedstreams.me,embedstream.me##+js(trusted-set-attr, iframe[title="embed player"], width, 100%) embedstreams.me,embedstream.me##+js(trusted-set-attr, iframe[title="embed player"], height, 100%) embedstreams.me,embedstream.me##+js(trusted-set-attr, iframe[title="embed player"], webkitallowfullscreen, true) embedstreams.me,embedstream.me##+js(trusted-set-attr, iframe[title="embed player"], mozallowfullscreen, true) embedstreams.me,embedstream.me##+js(trusted-set-attr, iframe[title="embed player"], allowfullscreen, true) embedstreams.me,embedstream.me##+js(trusted-set-attr, iframe[title="embed player"], allowtransparency, true) embedstreams.me,embedstream.me##+js(trusted-set-attr, iframe[title="embed player"], frameborder, 0) embedstreams.me,embedstream.me##+js(trusted-set-attr, iframe[title="embed player"], scrolling, no) embedstreams.me,embedstream.me##+js(trusted-set-attr, iframe[title="embed player"], allow, picture-in-picture; autoplay; fullscreen; encrypted-media; clipboard-write; accelerometer; gyroscope; web-share;) embedstreams.me,embedstream.me##+js(trusted-set-attr, iframe[title="embed player"], marginwidth, 0) embedstreams.me,embedstream.me##+js(trusted-set-attr, iframe[title="embed player"], marginheight, 0) embedstreams.me,embedstream.me##+js(trusted-set-attr, iframe[title="embed player"], autoplay, yes) embedstreams.me,embedstream.me##+js(trusted-set-attr, iframe[title="embed player"], allow, picture-in-picture; autoplay; fullscreen; encrypted-media; clipboard-write; accelerometer; gyroscope; web-share;) embedstreams.me,embedstream.me##+js(trusted-set-attr, iframe[title="embed player"], seamless, seamless) !embedstreams.me,embedstream.me##+js(trusted-set-attr, iframe[title="embed player"], referrerpolicy, origin) embedstreams.me,embedstream.me##+js(trusted-set-attr, iframe[title="embed player"], referrerpolicy, unsafe-url) embedstreams.me,embedstream.me##+js(trusted-set-attr, iframe[title="embed player"], oallowfullscreen, true) embedstreams.me,embedstream.me##+js(trusted-set-attr, iframe[title="embed player"], msallowfullscreen, true) !embedstreams.me,embedstream.me##+js(trusted-set-attr, iframe[title="embed player"], loading, eager) ! TODO: Setting the sandbox attribute may break the video player. !embedstreams.me,embedstream.me##+js(trusted-set-attr, iframe[title="embed player"], sandbox, allow-pointer-lock; allow-top-navigation; allowTransparency; allow-modals; allow-scripts; allow-same-origin; allow-popups; allow-popups-to-escape-sandbox; allow-storage-access-by-user-activation; allow-forms) www.nolive.me##+js(set-constant, _0xc55e, []) !www.nolive.me##+js(aopr, _0xc55e) !www.nolive.me##+js(aopw, _0xc55e) !www.nolive.me##+js(set-constant, _0xc88e, []) !www.nolive.me##+js(aopr, _0xc88e) !www.nolive.me##+js(aopw, _0xc88e) www.nolive.me##+js(set-constant, trkurl, "") www.nolive.me##+js(set-constant, pixImg, "") www.nolive.me##+js(aopr, trkurl) www.nolive.me##+js(aopw, trkurl) www.nolive.me##+js(aopr, pixImg) www.nolive.me##+js(aopw, pixImg) www.nolive.me##+js(no-setTimeout-if, trks) www.nolive.me##+js(acs, decodeURIComponent, escape, RegExp) ! removing eval prevents the video from playing !www.nolive.me##+js(noeval) www.nolive.me##+js(set-constant, FingerprintJS, noopFunc) www.nolive.me##+js(aopr, FingerprintJS) www.nolive.me##+js(aopw, FingerprintJS) www.nolive.me##+js(set-constant, detectDevTool, noopFunc) www.nolive.me##+js(set-constant, forceKillplayer, noopFunc) www.nolive.me##+js(set-constant, debounce, noopFunc) !www.nolive.me##+js(no-setTimeout-if, function) www.nolive.me##+js(no-setTimeout-if, /^function\(\)/) !www.nolive.me##+js(no-setInterval-if, function) www.nolive.me##+js(no-setInterval-if, /^function\(\)/) www.nolive.me##+js(no-setTimeout-if, forceKillplayer) www.nolive.me##div[class="Ad-Container"]:remove() www.nolive.me##+js(aopr, startTime) www.nolive.me##+js(aopw, startTime) www.nolive.me##+js(aopr, stopTime) www.nolive.me##+js(aopw, stopTime) ||aarghwoning.digital^* ||nheappyrincenev.com^* ||augailou.com^* ||www.dffhncwicaqm.com^* ||dffhncwicaqm.com^* !||grosfy.com/ts.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||grosfy.com^* !||www.greatdexchange.com/a/display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||greatdexchange.com/a/display.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||greatdexchange.com/script/i.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.youradexchange.com/rtb/worker.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.youradexchange.com/ts.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||youradexchange.com/script/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||youradexchange.com/ad/visit.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||youradexchange.com^* *##a[href^="https://youradexchange.com/ad/visit.php"]:remove() ||nsomedidm.xyz^* ||neewhoum.net^* ||aivdoyvicfn.com^* ||waufooke.com^* ||coonandeg.xyz^* ! The following three lines would leave the play button up forever !puffer.stanford.edu##div[id="tv-play-button"]:style(display: inline !important;) !puffer.stanford.edu##+js(remove-attr, style, #tv-play-button, stay) !puffer.stanford.edu##div[id="tv-play-button"]:watch-attr(style):remove-attr(style) !puffer.stanford.edu##+js(remove-attr, style, #tv-container, stay) !puffer.stanford.edu##div[id="tv-container"]:watch-attr(style):remove-attr(style) puffer.stanford.edu##div[id="tv-container"]:style(left: 0px !important; right: 0px !important; padding: 0 !important; margin: 0 !important; border: none !important; border-width: 0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) puffer.stanford.edu##div[id="tv-container"]:remove-class(vjs-controls-disabled) puffer.stanford.edu##+js(remove-class, vjs-controls-disabled, div[id="tv-container"]) puffer.stanford.edu##+js(add-class, vjs-controls-enabled, div[id="tv-container"]) puffer.stanford.edu##+js(trusted-set-attr, div[id="tv-container"], crossorigin, anonymous) puffer.stanford.edu##+js(trusted-set-attr, div[id="tv-container"], preload, metadata) ! a javascript continually sets div[pseudo="-webkit-media-controls"] to style="display: none;" and ublock Origin does not overcome this. puffer.stanford.edu##div[pseudo="-webkit-media-controls"]:style(display: inline !important; appearance: -internal-media-control !important; cursor: pointer; user-select: all !important;) !puffer.stanford.edu##div[pseudo="-webkit-media-controls-panel"]:watch-attr(style):remove-attr(style) !puffer.stanford.edu##div[pseudo="-webkit-media-controls-panel"][class="transparent"]:watch-attr(style,class):remove-attr(style,class) puffer.stanford.edu##div[pseudo="-webkit-media-controls-panel"]:style(display:inline !important; appearance: -internal-media-control !important; cursor: pointer; user-select: all !important;) ! removing muted doesn't restore the audio ! Don't stay on removing muted attribute so it can be manually reapplied. !puffer.stanford.edu##video[id="tv-video"]:remove-attr(muted) !puffer.stanford.edu##+js(remove-attr, muted, #tv-video) puffer.stanford.edu##video[id="tv-video"]:remove-attr(disableremoteplayback) puffer.stanford.edu##+js(remove-attr, disableremoteplayback, video[id="tv-video"]) puffer.stanford.edu##video[id="tv-video"]:remove-attr(disablepictureinpicture) puffer.stanford.edu##+js(remove-attr, disablepictureinpicture, video[id="tv-video"]) puffer.stanford.edu##+js(trusted-set-attr, video[id="tv-video"], data-autoplay-mute-lock, false) puffer.stanford.edu##+js(trusted-set-attr, video[id="tv-video"], controls, true) puffer.stanford.edu##+js(trusted-set-attr, video[id="tv-video"], x-webkit-airplay, allow) puffer.stanford.edu##+js(trusted-set-attr, video[id="tv-video"], width, 100%) puffer.stanford.edu##+js(trusted-set-attr, video[id="tv-video"], height, 100%) puffer.stanford.edu##+js(trusted-set-attr, video[id="tv-video"], crossorigin, anonymous) puffer.stanford.edu##+js(trusted-set-attr, video[id="tv-video"], preload, metadata) puffer.stanford.edu##+js(trusted-set-attr, video[id="tv-video"], playsinline, true) puffer.stanford.edu##+js(trusted-set-attr, video[id="tv-video"], webkit-playsinline, true) ! TODO: Setting the following two items for some reason prevents the audio from ever being enabled. !puffer.stanford.edu##+js(set-constant, video.muted, false, complete) !puffer.stanford.edu##+js(set-constant, video.volume, 1, complete) puffer.stanford.edu##+js(aopr, window.dataLayer) puffer.stanford.edu##+js(aopw, window.dataLayer) puffer.stanford.edu##+js(aopr, w.rdt) puffer.stanford.edu##+js(aopw, w.rdt) ! blocks alert if too many (500) users !puffer.stanford.edu##div[class*="alert"][role="alert"] ||puffer.stanford.edu/error_reporting/$xhr puffer.stanford.edu##button[type="button"]:remove-attr(disabled) !||cdn.jsdelivr.net/npm/console-ban@4.1.0/dist/console-ban.min.js$script ||cdn.jsdelivr.net/npm/console-ban@$script ||cdn.jsdelivr.net/gh/fz6m/console-ban$script *##+js(remove-node-text, script, /ConsoleBan\.init\(/gm) *##+js(trusted-replace-node-text, script, /ConsoleBan.init();/gm, null;) ||isprocessingnow.com^* !||rdrsec.com/hp$script ||rdrsec.com^* !||grunoaph.net/?rb=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||grunoaph.net^* ||onvictinitor.com^* ||offergate-apps-pubrel.com^* ||www.ujhhfgbbhs.com^* ||ijdprmdriueyq.com^* ||ohdrgrpfyvughty.xyz^* ||cbyjpnjua.xyz^* ||123-4567.to^* ||xyz123.online^* ||mebfylxqbhjbx.xyz^* ||hyvmflsclweae.xyz^* ||js.taplytics.com^* ! TODO: The following rule may prevent videos @ foxnews.com from playing !||js.appboycdn.com/web-sdk/5.2/service-worker.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! TODO: The following rule may prevent videos @ foxnews.com from playing !||v3.taplytics.com^* ||foxnews.demdex.net^* ||metrics.foxnews.com^* ||smetrics.foxnews.com^* ||foxnews.hb.omtrdc.net^* !||foxnews.hb.omtrdc.net/settings/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||foxnews-d.openx.net^* ! TODO: can't uses matches path for the application of scriptlets www.foxnews.com##:matches-path(/\/politics[\/\-]cartoons\-slideshow/) div[class="thumbnail-container"]:style(scrollbar-width: thin !important;) ! must use data-src, NOT [data-src] in the following rule to get the value from data-src attribute for some reason ! TODO: use [src=""] or [!src] or img:not([src])&img[data-src] to only select image tags which don't have a source attribute already? www.foxnews.com##+js(set-attr, img:not([src])&img[data-src], src, [data-src]) !www.foxnews.com##+js(set-attr, img[data-src], src, [data-src]) ! Don't need to remove current src attribute to rename other attribute to it !www.foxnews.com##+js(rna, img[data-src], data-src, src) www.foxnews.com##:matches-path(/\/politics[\/\-]cartoons\-slideshow/) li[class^="intro-thumbnail"]:style(opacity: 100% !important;) !www.foxnews.com##:matches-path(/\/politics[\/\-]cartoons\-slideshow/) li[class^="thumbnail-"]:style(opacity: 100% !important;) www.foxnews.com##:matches-path(/\/politics[\/\-]cartoons\-slideshow/) li:matches-attr(class=/^thumbnail\-\d+/):style(opacity: 100% !important;) www.foxnews.com##:matches-path(/\/entertainment\/hollywood\-stars\-who\-died\-/) li[class^="intro-thumbnail"]:style(opacity: 100% !important;) www.foxnews.com##:matches-path(/\/entertainment\/hollywood\-stars\-who\-died\-/) li:matches-attr(class=/^thumbnail-\d+/):style(opacity: 100% !important;) www.foxnews.com##div[class="ad-group"]:remove() www.foxnews.com##div[class="ad-upper"]:remove() www.foxnews.com##div[class="ad-inner"]:remove() www.foxnews.com##div[class="sticky-pre-header"]:has(div[class*="ad-h-"][class*="ad-w-"]):remove() www.foxnews.com##div[class="sticky-pre-header"]:has(div[class*="mobile-mw-ad-adh-dom"]):remove() www.foxnews.com##header[class="article-header"]:style(padding-top: 0px !important; margin-bottom: 0px !important;) www.foxnews.com##div[class="site-header"]:style(min-height: 150px !important; margin-bottom: 0px !important;) www.foxnews.com##div[class="article-meta article-meta-upper"]:style(padding-top: 0px !important;) www.foxnews.com##div[class*="ad-h-"][class*="ad-w-"]:remove() www.foxnews.com##div[class*="adhesion-ad"]:remove() www.foxnews.com##div[class*="mobile-mw-ad-adh-dom"]:remove() www.foxnews.com##div[class*="sticky-ads"]:remove() www.foxnews.com##div[data-iu]:remove() !www.foxnews.com##div[class="ad gam-inst"]:remove() www.foxnews.com##div[class*="ad gam"]:remove() www.foxnews.com##div[class^="vendor-unit"]:remove() www.foxnews.com##.block.ad-unit:nth-of-type(6):remove() www.foxnews.com###paid-advertising-top-tech-deals:remove() www.foxnews.com##div[class*="ad-enabled-container"]:remove() www.foxnews.com##div[class*="pf-modal-cdp-gated-cartoon"]:remove() www.foxnews.com##div[class="ad gpt"]:remove() www.foxnews.com##div[class="advert-inner"]:remove() www.foxnews.com##div[class="popup-modal airshipPushNotify show"]:remove() www.foxnews.com##div[class="slide-ad-overlay"]:remove() www.foxnews.com##div[class^="advert-overlay"]:remove() www.foxnews.com##div[class="fscom-scorestrip"]:style(visibility: none !important; display: none !important;) www.foxnews.com##div[id="welcome-ovr"]:remove() www.foxnews.com##div[id^="desk-interstitial-"]:remove() www.foxnews.com##div[class^="vendor-unit openweb"]:has(div[data-openweb-ad]):remove() www.foxnews.com##div[data-openweb-ad]:remove() insider.foxnews.com##div[class="sidebar-ad"]:remove() insider.foxnews.com##div[id="ad-content"]:remove() foxnews.com##div[id="desk-interstitial-1x1"]:remove() foxnews.com##div[id="desktop_desk-peak-interstitial-1x1"]:remove() !www.foxnews.com##div[data-banner-type="ccpa"]:remove() !video.foxnews.com##div[data-banner-type="ccpa"]:remove() foxnews.com##div[data-banner-type="ccpa"]:remove() foxnews.com##div[class*="gated-overlay"]:remove-attr(class) www.foxnews.com##+js(set-constant, window._cbq, []) www.foxnews.com##+js(aopr, window._cbq) www.foxnews.com##+js(aopw, window._cbq) ! Do NOT remove div tags with the "ad-container" class or videos will not play. !www.foxnews.com##div[class="pre-content"]:has(div[class*="ad-container"]):remove() !www.foxnews.com##div[class="pre-content"]:has(div[class^="ad-contain"]):remove() !www.foxnews.com##div[class*="ad-container"]:remove() !www.foxnews.com##div[class^="ad-contain"]:remove() !www.foxnews.com##div[class="sticky-pre-header"]:has(div[class*="ad-container"]):remove() !www.foxnews.com##div[class="sticky-pre-header"]:has(div[class^="ad-contain"]):remove() ! The following rule will shrink the element to no height if it is empty. www.foxnews.com##div[class="pre-content"]:style(min-height: min-content !important;) www.foxnews.com##div[class="pre-content"]:has(div[class^="ad-contain"]):style(display: none !important; visibility: none !important; min-height: 0px !important; height: 0px !important; min-width: 0px !important; width: 0px !important;) www.foxnews.com##div[class="pre-content"]:has(div[class*="ad-container"]):style(display: none !important; visibility: none !important; min-height: 0px !important; height: 0px !important; min-width: 0px !important; width: 0px !important;) www.foxnews.com##div[class^="ad-contain"]:style(display: none !important; visibility: none !important; min-height: 0px !important; height: 0px !important; min-width: 0px !important; width: 0px !important;) www.foxnews.com##div[class*="ad-container"]:style(display: none !important; visibility: none !important; min-height: 0px !important; height: 0px !important; min-width: 0px !important; width: 0px !important;) www.foxnews.com##div[class*="ad-h-"]:style(display: none !important; visibility: none !important; min-height: 0px !important; height: 0px !important; min-width: 0px !important; width: 0px !important;) ! blocking div[class*="amp-ad"] prevents videos from being played !foxnews.com##div[class*="amp-ad"]:remove() !www.foxnews.com##+js(remove-node-text, script, /Strike\.insertAd\(/gm) www.foxnews.com##+js(trusted-replace-node-text, script, /Strike\.insertAd\(/gm, console.log() !www.foxnews.com##+js(set-constant, Strike.insertAd, noopFunc, end) www.foxnews.com##+js(set-constant, Strike.insertAd, noopFunc, complete) www.foxnews.com##+js(acs, Strike.insertAd) ! TODO: The following rule may be blocking functions which should be run including those that run [native code]. www.foxnews.com##+js(no-setInterval-if, /^function\(\)/) www.foxnews.com##+js(remove-class, scroll-lock, ,) www.foxnews.com##+js(trusted-set-attr, a.close, href, window.history.back()) ! TODO: Why abort on video-embed? foxnews.com##+js(aopr, window.location.href.indexOf('video-embed')) foxnews.com##+js(aopw, window.location.href.indexOf('video-embed')) foxnews.com##+js(set-constant, authenticated, true) ! TODO: authenticated should not be a string? !foxnews.com##+js(trusted-set-constant, data, {"value": {"authenticated": true}}) foxnews.com##+js(trusted-set-constant, data, {"value": {authenticated: true}}) radio.foxnews.com,www.foxnews.com##+js(remove-node-text, script, /adsbygoogle\s?=/gm) !||foxnewsplayer-a.akamaihd.net/player/*/akamai/amp//omniture/Omniture.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||foxnewsplayer-a.akamaihd.net/player/*/akamai/amp//omniture/$script !||foxnewsplayer-a.akamaihd.net/player/*/akamai/amp/amazonbidder/Amazonbidder.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||foxnewsplayer-a.akamaihd.net/player/*/akamai/amp/amazonbidder/Amazonbidder.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||foxnewsplayer-a.akamaihd.net/player/*/akamai/amp/amazonbidder/$script !||foxnewsplayer-a.akamaihd.net/player/*/akamai/amp/chartbeatanalytics/Chartbeatanalytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||foxnewsplayer-a.akamaihd.net/player/*/akamai/amp/chartbeatanalytics/$script !||foxnewsplayer-a.akamaihd.net/player/*/akamai/amp/mediaanalytics/Mediaanalytics.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||foxnewsplayer-a.akamaihd.net/player/*/akamai/amp/mediaanalytics/$script !||foxnewsplayer-a.akamaihd.net/player/*/akamai/amp/nielsenlegacy/Nielsenlegacy.min.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||foxnewsplayer-a.akamaihd.net/player/*/akamai/amp/nielsenlegacy/$script !||a948.g.akamai.net/player/9.0.12/akamai/amp/chartbeatanalytics/Chartbeatanalytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a948.g.akamai.net/player/9.0.12/akamai/amp/chartbeatanalytics/$script ! Do NOT use the following rules blocking prebid.js as they prevent videos from playing. !||foxnewsplayer-a.akamaihd.net/player/*/akamai/amp/prebid/libs/prebid.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||foxnewsplayer-a.akamaihd.net/player/*/akamai/amp/prebid/$script !||a948.g.akamai.net/player/9.0.12/akamai/amp/prebid/libs/prebid.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||a948.g.akamai.net/player/9.0.12/akamai/amp/prebid/$script !||profiles.tagger.opecloud.com/api/v1/adalliance/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||profiles.tagger.opecloud.com^* !||fox.tagger.opecloud.com^* !||foxus.tagger.opecloud.com/foxus/v2/uid$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||foxus.tagger.opecloud.com^* !||foxus.dcapi.tagger.opecloud.com !||tagger.opecloud.com/adalliance/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||tagger.opecloud.com/adalliance/v2/metrics/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tagger.opecloud.com^* !||dta23xhexutk5.cloudfront.net/ope-foxus.js$3p,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||dta23xhexutk5.cloudfront.net/ope-dmplite.js$3p,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dta23xhexutk5.cloudfront.net/ope-*.js$3p,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.opecloud.com/ope-foxus.js$3p,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.opecloud.com/ope-fox.js$3p,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.opecloud.com/ope-tegna.js$3p,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.opecloud.com/ope-dmplite.js$3p,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.opecloud.com/ope-*.js$3p,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sync.admanmedia.com/pbs.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||prod.pyxis.atp.fox/pyxis/submit$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ad-tech-pyxis-2124195674.us-west-2.elb.amazonaws.com/pyxis/submit$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ad-tech-pyxis-2124195674.us-west-2.elb.amazonaws.com^* ||www.foxnews.com/feeds/p/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.foxnews.com/static/strike/scripts/libs/google.funding.choices.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.foxnews.com/static/strike/scripts/libs/prebid.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.foxnews.com/static/isa/app/lib/VisitorAPI.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.foxnews.com/static/isa/app/lib/bing.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.foxnews.com/static/isa/app/lib/ccpa.opt.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.foxnews.com/static/isa/app/lib/omtr_code.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||j.sni.global.fastly.net/static/leap/sites/fbc/metrics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.foxnews.com/static/leap/sites/fnc/metrics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||j.sni.global.fastly.net/static/leap/sites/fbn/metrics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.foxnews.com/static/leap/sites/fbn/metrics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||j.sni.global.fastly.net/static/leap/sites/fwx/metrics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.foxnews.com/static/leap/sites/fwx/metrics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||static.foxnews.com/static/v/all/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The following rule is required for the video player to work. ||static.foxnews.com/static/orion/scripts/core/video/ag.app.js$replace=/&&opts\.app\.taplytics\.runningExperiments\["Strike Mediator"\]&&/&&/gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! Blocking the following script may prevent the political cartoon slideshow from working @ foxnews ||static.foxnews.com/static/orion/scripts/core/base/app/modules/ad-strike.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! Do NOT use the following rules blocking amp-ads as they prevent videos from playing. !static.foxnews.com##div[class*="amp-ad-"]:remove() !static.foxnews.com##div[class="amp-ads"]:remove() static.foxnews.com##+js(trusted-replace-node-text, script, /window\.location\.href\.indexOf\('video-embed'\)/gm, 1) ||awstats.cloud/js/plausible.js$script ||justificationevidentpensive.com^* ||cusecwhitten.com^* ||keidweneth.com^* ||enerativearea.org^* em.tgo-tv.co##div:has(iframe[id="chat"]):remove() em.tgo-tv.co##iframe[id="chat"]:remove() em.tgo-tv.co##iframe[src^="https://st.chatango.com/"]:remove() em.tgo-tv.co##a[href^="https://tgo-tv.co/vpn/vpn.php"]:remove() em.tgo-tv.co##div[style="background:white; max-width: 800px;"]:has(a[href^="https://tgo-tv.co/vpn/vpn.php"]):remove() em.tgo-tv.co##+js(aopr, document.oncontextmenu) em.tgo-tv.co##+js(aopw, document.oncontextmenu) !em.tgo-tv.co##div:has(iframe[src^="https://extrafreetv.com/embed/em.php"]):style(width: 99vw !important; height: 99vh !important;) !em.tgo-tv.co##div:has(iframe[src^="https://extrafreetv.com/embed/em.php"]):style(width: 1280px !important; height: 720px !important;) !em.tgo-tv.co##iframe[src^="https://extrafreetv.com/embed/em.php"]:remove-attr(width) !em.tgo-tv.co##iframe[src^="https://extrafreetv.com/embed/em.php"]:remove-attr(height) ||cdn.norymo.com/app.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.hlsplayer.net##script[data-ad-client]:remove() ||xkcgjkwjbmki.xyz^* ||pl18296191.highcpmrevenuenetwork.com^* ||pl16407580.highcpmrevenuenetwork.com^* reddit-tv1-streams.blogspot.com##+js(aopw, block) reddit-tv1-streams.blogspot.com##+js(aopr, block) reddit-tv1-streams.blogspot.com##+js(aopr, window.location) reddit-tv1-streams.blogspot.com##+js(aopw, window.location) !reddit-tv1-streams.blogspot.com##+js(noeval) ! Need to set height and width attributes of iframe NOT the style properties. !reddit-tv1-streams.blogspot.com##iframe[src^="http://r-strm.blogspot.com/p/"]:style(height: 99vh !important; width: 99vw !important;) !reddit-tv1-streams.blogspot.com##div[id="main"]:style(height: 99vh !important; width: 99vw !important;) ! Don't remove height unless can set it too. !reddit-tv1-streams.blogspot.com##iframe[src^="http://r-strm.blogspot.com/p/"]:remove-attr(height) !r-strm.blogspot.com##iframe[src^="https://worldstreams.click/embed/stream-"]:remove-attr(height) !r-strm.blogspot.com##iframe[src^="https://thedaddy.to/embed/stream-"]:remove-attr(height) worldstreams.click##iframe[id="thatframe"]:style(left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; overflow:auto !important; user-select: all !important; pointer-events: all !important;) worldstreams.click##+js(trusted-set-attr, iframe[id="thatframe"], width, 100%) worldstreams.click##+js(trusted-set-attr, iframe[id="thatframe"], height, 100%) worldstreams.click##+js(trusted-set-attr, iframe[id="thatframe"], webkitallowfullscreen, true) worldstreams.click##+js(trusted-set-attr, iframe[id="thatframe"], mozallowfullscreen, true) worldstreams.click##+js(trusted-set-attr, iframe[id="thatframe"], allowfullscreen, true) worldstreams.click##+js(trusted-set-attr, iframe[id="thatframe"], allowtransparency, true) worldstreams.click##+js(trusted-set-attr, iframe[id="thatframe"], frameborder, 0) worldstreams.click##+js(trusted-set-attr, iframe[id="thatframe"], scrolling, no) worldstreams.click##+js(trusted-set-attr, iframe[id="thatframe"], allow, picture-in-picture; autoplay; fullscreen; encrypted-media; clipboard-write; accelerometer; gyroscope; web-share;) worldstreams.click##+js(trusted-set-attr, iframe[id="thatframe"], marginwidth, 0) worldstreams.click##+js(trusted-set-attr, iframe[id="thatframe"], marginheight, 0) worldstreams.click##+js(trusted-set-attr, iframe[id="thatframe"], autoplay, yes) worldstreams.click##+js(trusted-set-attr, iframe[id="thatframe"], allow, picture-in-picture; autoplay; fullscreen; encrypted-media; clipboard-write; accelerometer; gyroscope; web-share;) worldstreams.click##+js(trusted-set-attr, iframe[id="thatframe"], seamless, seamless) !worldstreams.click##+js(trusted-set-attr, iframe[id="thatframe"], referrerpolicy, origin) worldstreams.click##+js(trusted-set-attr, iframe[id="thatframe"], referrerpolicy, unsafe-url) worldstreams.click##+js(trusted-set-attr, iframe[id="thatframe"], oallowfullscreen, true) worldstreams.click##+js(trusted-set-attr, iframe[id="thatframe"], msallowfullscreen, true) !worldstreams.click##+js(trusted-set-attr, iframe[id="thatframe"], loading, eager) ! TODO: Setting the sandbox attribute may break the video player. !worldstreams.click##+js(trusted-set-attr, iframe[id="thatframe"], sandbox, allow-pointer-lock; allow-top-navigation; allowTransparency; allow-modals; allow-scripts; allow-same-origin; allow-popups; allow-popups-to-escape-sandbox; allow-storage-access-by-user-activation; allow-forms) ||felied.com^* ||nanouwho.com^* ||obstry.com^* ||potsaglu.net^* ||unemploymentmaddenmiddleaged.com^* ||witchcraftbarterexploded.com^* ||nbidqsoy.xyz^* ||pughoomo.xyz^* !||vmuid.com/uid/send$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||vmuid.com/script.js$script ||vmuid.com^* ||nannyamplify.com^* ||tournamentsevenhung.com^* !||www.intellipopup.com/processing.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.intellipopup.com^$script,domain=time4tv.stream|time4tv.xyz ||pl15806485.highcpmrevenuenetwork.com^* ||qyfkarotggyk.xyz^* ||umjsxysoehop.xyz^* ||pauzooty.xyz^* financerites.*##p:has-text(\[ad_) ||nhsmmxtfut.xyz^* ||www.ldbboacmenwy.com^* ||ldbboacmenwy.com^* ||d29mxewlidfjg1.cloudfront.net^* ||gorkt.com/script/clock.js$script,domain=sharecast.ws|tv247.us|tv247us.com ||10865.ru^* ||gforanythingam.com^* ||lywasnothycant.info^* !||xml-v4.frdjs-2.co/click?i=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||xml-v4.frdjs-2.co^* ||horsiergalchic.com^* ||tolterunrout.com^* ||p.jwpcdn.com/6/8/googima.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ssl.p.jwpcdn.com/player/v/8.34.3/googima.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ssl.p.jwpcdn.com/player/v/*/googima.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.watchingthat.net/us.wtat.plugin-jw_ima.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdnfalse.comcast.com/cmp/css/cookie-consent.css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||metrics.newegg.com/g/collect$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||metrics.newegg.com^* ||blfxavygs.xyz^* digistatement.com##div[id^="jnews_module_element_ads-"]:remove() digistatement.com##div[class^="digis-taboola-ads"]:remove() digistatement.com##div[class="ads-wrapper"]:remove() digistatement.com##div[data-ad-slot]:remove() digistatement.com##iframe[id^="google_ads_"]:remove() digistatement.com##iframe[id="rufous-sandbox"]:remove() digistatement.com##div[id^="cookie-law-info-"]:remove() digistatement.com##+js(aopr, window.advanced_ads_ready_queue) digistatement.com##+js(aopw, window.advanced_ads_ready_queue) !||cdn-prod.securiti.ai/consent/auto_blocking/4b9bbe2a-9c5d-4512-bb76-768a8ea32bc0/af80147c-00a7-40b1-ab3e-ed5c485fb569.js$script !||cdn-prod.securiti.ai/consent/cookie-consent-sdk.js$script ||cdn-prod.securiti.ai/consent/$script ||gloamucm.xyz^* ||vydwjwbul.xyz^* www.theiet.org##+js(aopr, jsCookieConfig) www.theiet.org##+js(aopw, jsCookieConfig) www.theiet.org##+js(aopr, _gaq) www.theiet.org##+js(aopw, _gaq) ||mediacpm.pl/serve/ads.js$script ||ss.mndsrv.com^* ||d1b9b1cxai2c03.cloudfront.net^* ||belittlepads.com^* ||tr-monday.xyz^* ||pop.admpire.com^* ||cueistratting.com^* ||hazanuttriazo.life^* ||bocoyoutage.com^* ||www.origunix.com^* ||origunix.com^* ||ywmvoacqwb.xyz^* ||tyjqvdbdsfguc.xyz^* !www.fox.com##div[class="previewPass__1tXiW"] www.fox.com##div[class^="previewPass_"] ! removing previewPass causes an error !www.fox.com##div[class^="previewPass_"]:remove() www.fox.com##+js(set-constant, PreviewPassEnabled, true) www.fox.com##+js(set-constant, excludePreviewPass, false) www.fox.com##+js(set-constant, previewPassExpired, false) www.fox.com##div[id="video-player-container"]:remove-class(disableMiniPlayer__30kTr) !www.fox.com##+js(aopr, analytics) !www.fox.com##+js(aopw, analytics) www.fox.com##+js(aopr, ccpaCookie) www.fox.com##+js(aopw, ccpaCookie) www.fox.com##+js(aopr, window.dataLayer) www.fox.com##+js(aopw, window.dataLayer) www.fox.com##+js(aopr, window.NREUM) www.fox.com##+js(aopw, window.NREUM) www.fox.com##+js(aopr, window.pintrk) www.fox.com##+js(aopw, window.pintrk) !||analytics.nova.fox.com/analytics.js/v1/ZPcMFFdOZ2C5VbfBbO24WBHm6ywOeElz/analytics.min.js$script ||analytics.nova.fox.com^* ||foxentertainment.hb.omtrdc.net^* ||multiup.org/img/sonyoutube_long.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||multiup.eu/img/sonyoutube_long.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||multiup.io/img/sonyoutube_long.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.multiup.org/js/blockadblock.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.multiup.org/welcome-message$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.multiup.eu/js/blockadblock.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.multiup.eu/welcome-message$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.multiup.io/js/blockadblock.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.multiup.io/welcome-message$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||multiup.io/api/link-check/welcome-message$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||multiup.eu/api/link-check/welcome-message$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||stats.multiup.org/piwik.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||stats.multiup.eu/piwik.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||stats.multiup.org^* ||stats.multiup.eu^* ||stats.multiup.io^* ||gorin.multiup.org/pop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gorin.multiup.eu/pop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gorin.multiup.io/pop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css multiup.org,multiup.eu,multiup.io##div[class="mfp-wrap mfp-auto-cursor"]:has(div[class="mfp-container mfp-ajax-holder mfp-s-error"]):remove() multiup.org,multiup.eu,multiup.io##div[class="mfp-preloader"]:remove() multiup.org,multiup.eu,multiup.io##div[class="loading-overlay"]:remove() multiup.org,multiup.eu,multiup.io##div[id="custom-content"]:remove() multiup.org,multiup.eu,multiup.io##div[class="mfp-bg mfp-ready"]:remove() multiup.org,multiup.eu,multiup.io##div[class="mfp-container mfp-ajax-holder mfp-s-ready"]:remove() multiup.org,multiup.eu,multiup.io##div[class="mfp-wrap mfp-auto-cursor mfp-ready"]:remove() !www.multiup.org,www.multiup.eu##div[id="cookie-bar"]:remove() !multiup.org,multiup.eu,multiup.io##div[id="cookie-bar"]:remove() !multiup.org,multiup.eu,multiup.io##div[id="cookie-plugin-modal"]:remove() multiup.org,multiup.eu,multiup.io##div[id^="cookie-"]:remove() multiup.org,multiup.eu,multiup.io##a[namehost="UseNext"]:remove() ! remove action attribute and also change the link attribute on submit button to formaction to override action. multiup.org,multiup.eu,multiup.io##form[action*="://multinews.me/"]:remove-attr(action) ! Removing the method attribute from the form tag still allows the formaction attribute to work. ! Don't remove this because it affect all forms not just the ones on the download page. !multiup.org,multiup.eu,multiup.io##form[method="POST"]:remove-attr(method) ! Don't set this because it affect all forms not just the ones on the download page. ! The method attribute will not be set below if it was removed above. !multiup.org,multiup.eu,multiup.io##+js(trusted-set-attr, form[method="POST"], method, GET) ! The following is necessary because the previous line will prevent the upload forms from working. !multiup.org,multiup.eu,multiup.io##+js(trusted-set-attr, form[id="fileupload"], method, POST) ! Set each download button to perform a GET method instead of the POST as the parent form specifies. multiup.org,multiup.eu,multiup.io##+js(trusted-set-attr, button[namehost][link], formmethod, get) !multiup.org,multiup.eu,multiup.io##+js(trusted-set-attr, button[namehost][link], formnovalidate, '') multiup.org,multiup.eu,multiup.io##+js(set-attr, button[namehost][link], formnovalidate, '') multiup.org,multiup.eu,multiup.io##+js(trusted-set-attr, button[namehost][link], formtarget, _blank) multiup.org,multiup.eu,multiup.io##+js(trusted-set-attr, input[type="hidden"], type, text) multiup.org,multiup.eu,multiup.io##input[name="link"]:remove-class(hidden) ! This removes the type attribute which had been set to "text" by the rule above. multiup.org,multiup.eu,multiup.io##input[name="link"]:remove-attr(type) ! remove name attribute under input tags so they won't be appended to the url on form GET submission multiup.org,multiup.eu,multiup.io##input[name="link"]:remove-attr(name) multiup.org,multiup.eu,multiup.io##input[name="filename"]:remove-attr(name) ! rename-attr.js ! #175151786 is button for gofile !multiup.org,multiup.eu,multiup.io##+js(rename-attr, #175151786, link, formaction) ! The following works but requires an external scriptlet; use set-attr instead. !multiup.org,multiup.eu,multiup.io##+js(rename-attr, button[namehost][link], link, formaction) multiup.org,multiup.eu,multiup.io##+js(set-attr, button[namehost][link], formaction, [link]) ! The following lines (minus the commented ones) are necessary because 1fichier ! doesn't work with the GET form submission (because it has an ? in its URL?). ! button tags won't act as anchor tag even with href attribute set. !multiup.org,multiup.eu,multiup.io##+js(trusted-set-attr, button[namehost="1fichier.com"], type, button) ! Do not remove "type" attribute as the button will still behave as type "submit". !multiup.org,multiup.eu,multiup.io##button[namehost="1fichier.com"]:remove-attr(type) ! Setting href for the button tag doesn't work even when button type is "button". ! Would need to set as "onlick" attribute instead. ! Use set-attr here instead of rename-attr because it doesn't require an external scriptlet. !multiup.org,multiup.eu,multiup.io##+js(rename-attr, button[namehost="1fichier.com"], link, href) !multiup.org,multiup.eu,multiup.io##+js(set-attr, button[namehost="1fichier.com"], href, [link]) ! rename "link" not "formaction" IF type is already removed because above rename wouldn't apply. ! Have to reuse an anchor tag instead of creating one since can't address the created a tag later to modify it. !multiup.org,multiup.eu,multiup.io##+js(append-elem, button[namehost="1fichier.com"], a, id, 1fichier.com) !multiup.org,multiup.eu,multiup.io##+js(move-attr-prop, a[id="1fichier.com"], button[namehost="1fichier.com"], href, link) !multiup.org,multiup.eu,multiup.io##+js(move-attr-prop, a[id="1fichier.com"], button[namehost="1fichier.com"], class, class) ! The following places a[id="welcome-message"] above button[namehost="1fichier.com"] to replace it. ! a[href^="/fr/mirror/"][alt="French flag"] alternative anchor tag to reuse. ! insert-child-before needs https://raw.githubusercontent.com/uBlock-user/uBO-Scriptlets/master/scriptlets.js ! is button[namehost="1fichier.com"] always button[id="175878546"]? !multiup.org,multiup.eu,multiup.io##+js(insert-child-before, button[id="175878546"], a[id="welcome-message"]) multiup.org,multiup.eu,multiup.io##+js(insert-child-before, button[namehost="1fichier.com"], a[id="welcome-message"]) multiup.org,multiup.eu,multiup.io##+js(move-attr-prop, a[id="welcome-message"], button[namehost="1fichier.com"], href, link) multiup.org,multiup.eu,multiup.io##+js(move-attr-prop, a[id="welcome-message"], button[namehost="1fichier.com"], class, class) ! removing hidden is not necessary since move-attr-prop scriptlet above already replaced all original classes multiup.org,multiup.eu,multiup.io##a[id="welcome-message"]:remove-class(hidden) ! remove hvr-bounce-to-right since it prevents the download icon from "fa fa-download" classes from being shown. multiup.org,multiup.eu,multiup.io##a[id="welcome-message"]:remove-class(hvr-bounce-to-right) multiup.org,multiup.eu,multiup.io##+js(trusted-set-attr, a[id="welcome-message"], target, _blank) ! | is used to add multiple classes at once. multiup.org,multiup.eu,multiup.io##+js(add-class, fa|fa-download|host|btn|btn-md|btn-default|btn-block|btn-3d, #welcome-message) !multiup.org,multiup.eu,multiup.io##+js(add-class, fa|fa-download|host|btn|btn-md|btn-default|btn-block|btn-3d, #welcome-message > i) !multiup.org,multiup.eu,multiup.io###welcome-message > i:remove-class(fa-star) ! replace-node-text.js will replace the textContent of any element such as an anchor tag in the following rule. multiup.org,multiup.eu,multiup.io##+js(trusted-replace-node-text, #text, Welcome, Download) ! hide and disable the original download button for 1fichier.com using those button ! attributes, so it won't be clicked. ! hidden attribute set to true is not enough to hide the button. multiup.org,multiup.eu,multiup.io##+js(set-attr, button[namehost="1fichier.com"], hidden, true) multiup.org,multiup.eu,multiup.io##button[namehost="1fichier.com"]:style(display:none !important;) multiup.org,multiup.eu,multiup.io##+js(set-attr, button[namehost="1fichier.com"], disabled, true) multiup.org,multiup.eu,multiup.io##form[action^="/en/mirror/"]:remove-attr(onsubmit) ! Also need to get rid of onsubmit() function and/or "submit" event listener to prevent new window/tab from being opened on pressing download button. ! TODO: The following three lines to do that don't work for some reason. multiup.org,multiup.eu,multiup.io##+js(set-constant, onsubmit, noopFunc) !multiup.org,multiup.eu,multiup.io##+js(aeld, { "type": "/submit/", "pattern": "/onsubmit/", "log": 2 }) multiup.org,multiup.eu,multiup.io##+js(aeld, { "type": "/submit/", "pattern": "/^/", "log": 2 }) ! simply removing target attribute makes the target "_self" instead of having to manually set it to "_self". !multiup.org,multiup.eu,multiup.io##+js(trusted-set-attr, form[action^="/en/mirror/"], target, _self) multiup.org,multiup.eu,multiup.io##form[action^="/en/mirror/"]:remove-attr(target) ! remove() doesn't work with :: styles !multiup.org,multiup.eu,multiup.io##a#welcome-message::before !`window.open('${document.querySelector('button[namehost="1fichier.com"]').attributes.link.value}')` !document.querySelector('button[namehost="1fichier.com"]').attributes.link.value is the download link. ! change button's "link" attribute to "formaction" attribute. ! also remove the type="submit" for this to work? no since overrides the "action" attribute on the form. ! blocks Kroger website? ! It initially fails, but then works on Firefox after a countdown timer popup and then a retry to login. ! Brave browser fails regardless of disabling the following or not. !||c.go-mpulse.net/boomerang/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||c.go-mpulse.net/api/config.json?key=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||c.go-mpulse.net^* ||sstats.kroger.com^* ||kroger.demdex.net^* ||kroger.softcoin.com/programs/kroger/common/js/s_code_digitalcouponsprod.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.kroger.com/web-workers/ww-analytics-sender.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.kroger.com/sa/analyticsSender.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.kroger.com/cdn/analyticsSender.worker.03d274ebd55d1bb4eef6.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.kroger.com/cdn/analyticsSender.worker.2ae728f59d53d7bcb0bc.js ||www.kroger.com/cdn/analyticsSender.worker.$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.kroger.com/cdn/qualtrics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.kroger.com/ruxitagentjs_ICA27NVfghjqrtux_10257221222094147.js ||www.kroger.com/ruxitagentjs$script ||www.kroger.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ct.pinterest.com^$all,domain=kroger.com|www.fox.com ||ct.pinterest.com^*$domain=kroger.com|www.fox.com katv.com##div[class^="NewAd-module_"]:remove() katv.com##div[class^="index-module_adBeforeContent"]:remove() katv.com##div[class^="index-module_openwebAd"]:remove() katv.com##div[class^="HomePageContainer-module_empty"]:remove() katv.com##+js(trusted-replace-node-text, script, /return isBlocked;/gm, return false;) katv.com##+js(set-constant, isBlocked, false) katv.com##+js(set-constant, toggleAdBlockerFlag, falseFunc) katv.com##+js(trusted-replace-node-text, script, /adsBlocked\s?=\s?toggleAdBlockerFlag\(\);/gm, adsBlocked = false;) katv.com##+js(set-constant, adsBlocked, false) katv.com##+js(set-constant, adsBlocked, false) !katv.com##+js(set-constant, registrationStatus, true) katv.com##+js(trusted-set-constant, registrationStatus, "true") !katv.com##+js(set-constant, subscribedStatus, true) katv.com##+js(trusted-set-constant, subscribedStatus, "true") katv.com##+js(remove-node-text, script, /function setCustomDimensions\(\)/gm) katv.com##+js(trusted-replace-node-text, script, /setCustomDimensions\(\);/gm, null;) katv.com##+js(remove-node-text, script, /googletag\.pubads\(\)\.addEventListener\(/gm) katv.com##+js(remove-node-text, script, /googletag\.cmd\.push\(/gm) katv.com##+js(trusted-replace-node-text, script, /googletag\.pubads\(\)\.getSlots\(\);/gm, null;) katv.com##+js(trusted-replace-node-text, script, /googletag\.pubads\(\)\.refresh\(\w\)/gm, null) katv.com##+js(aopr, googletag.pubads().prebid) katv.com##+js(aopw, googletag.pubads().prebid) ! Uncaught TypeError: cannot declare global binding 'gtag': property must be configurable or both writable and enumerable katv.com##+js(trusted-replace-node-text, script, /function gtag\(\)\{dataLayer\.push\(arguments\);\}/gm, function gtag(){}) ! The following rules will trigger a "500 Something didn’t go as planned! Please try refreshing the page or coming back later." error page. !katv.com##+js(remove-node-text, script, /\.push\(\{['"]gtm\.start['"]/gm) !katv.com##+js(remove-node-text, script, /window\.dataLayer\.push\(\{/gm) ! The following three rules are necessary to prevent a "500 Something didn’t go as planned! Please try refreshing the page or coming back later." error page. katv.com#@#+js(remove-node-text, script, /function gtag\(\)/gm) katv.com#@#+js(set-constant, googletag, {}) katv.com#@#+js(set-constant, window.googletag, {}) katv.com##+js(set-constant, sinclairDigitalAnalytics, {}) katv.com##+js(aopr, window.sinclairDigitalGtmData) katv.com##+js(aopw, window.sinclairDigitalGtmData) katv.com##+js(remove-node-text, script, /function dataZoomConfig\(\)/gm) ! TODO: Uncaught TypeError: cannot declare global binding 'dataZoomConfig': property must be configurable or both writable and enumerable !katv.com##+js(set-constant, dataZoomConfig, noopFunc) katv.com##+js(aopr, _comscore) katv.com##+js(aopw, _comscore) katv.com##+js(trusted-replace-node-text, script, /['"]ffDisableAdLightning['"]:\s?false/gm, "ffDisableAdLightning": true) katv.com##+js(trusted-replace-node-text, script, /usPrivacyEnabled\s?=\s?false;/gm, usPrivacyEnabled = true;) katv.com##+js(trusted-replace-node-text, script, /return usPrivacyEnabled;/gm, return true;) katv.com##+js(trusted-replace-node-text, script, /['"]usPrivacyEnabled['"]:\s?false/gm, "usPrivacyEnabled": true) katv.com##+js(set-constant, usPrivacyEnabled, true) katv.com##+js(set-constant, getPrivacyKVP, trueFunc) ! Do NOT use the following two rules to suppress usPrivacyEnabled; instead set it to a value of false. !katv.com##+js(aopr, usPrivacyEnabled) !katv.com##+js(aopw, usPrivacyEnabled) katv.com##+js(trusted-replace-node-text, script, /['"]datazoomEnabled['"]:\s?true/gm, "datazoomEnabled": false) katv.com##+js(trusted-replace-node-text, script, /['"]bidder['"]:\s?['"]\w+['"]/gm, "bidder": "") katv.com##+js(trusted-replace-node-text, script, /if\s?\(uuid\)/gm, if (null)) katv.com##+js(trusted-replace-node-text, script, /['"]paywallEntitlementTags['"]:\s?(true|1)/gm, "paywallEntitlementTags":false) ! The following rule causes a error of "Uncaught ReferenceError: ga is not defined" because window.ga does not get defined. !katv.com##+js(remove-node-text, script, /sinclairDigitalAnalytics\s?=/gm) ! The following rule does not work to eliminate the "ga is not defined" error. !katv.com##+js(set-constant, ga, noopFunc) ||katv.com/resources/video/players/prod/dist/*/analytics.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||katv.com/api/rest/analytics/page/rendered$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! TODO: The following rule is a temporary solution to "Something didn't go as planned!" error. !||katv.com/_next/static/chunks/705-a21e364d767d9f9c.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||platform.datazoom.io/beacon/v1/config?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||platform.datazoom.io/beacon/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||amp.akamaized.net/amp.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||internetgoals.com^* !||js.alpixtrack.com/alphpixel.js$script ||js.alpixtrack.com^* ||initiatedevelopedextremelyinfo-product.info^* ||divedfaraway.com^* ||tnaowooruaxkqtr.xyz^* ||improviseprofane.com^* ||refrigeratemaimbrunette.com^* !||www.arminius.io/bn/12/jump.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.arminius.io^* !||rapidrar.cr/js/rapidrar3.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||rapidrar.com/js/rapidrar3.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rapidrar.com/wpr.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rapidrar.cr/wpr.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rapidrar.cr/js/fuckadblock.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rapidrar.com/js/fuckadblock.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css rapidrar.com,rapidrar.cr###btn_download:remove-attr(disabled) rapidrar.com,rapidrar.cr##+js(remove-attr, disabled, #btn_download, stay) rapidrar.com,rapidrar.cr##div[id="adb-alert"]:remove() rapidrar.com,rapidrar.cr##input[id="btn_download"]:style(display: inline !important;) |razzedwhimsic.website^* ||mokibill.com^* ||gluondockize.digital^* ||abjurecurfs.website^* ||andriasmaximus.com^* ||improvedbrowser.online^* ||givill.com^* ||cheorg.com^* ||www.qtzedmrehcvpe.com^* ||qtzedmrehcvpe.com^* ||prankdishevelledhurdle.com^* ||www.vmypbrnfijassw.com^* ||vmypbrnfijassw.com^* ||statistic-data.com^* ||sacrip.com^* ||depigs.com^* ||t.u1pmt.com^* www.neowin.net##+js(acs, freestar.config.enabled_slots.push) www.neowin.net##article[class="classes cPost ipsBox ipsComment ipsComment_parent ipsClearfix ipsClear ipsColumns ipsColumns_noSpacing ipsColumns_collapsePhone"]:has(span:has-text(Advertising)):remove() ||trygalaxy.com/assets/ga/tracking.js$script ||zworker11.me^* ||zcode11.me^* ||away.trackersline.com^* alvarotrigo.com##div[id="ezmobfooter"]:remove() alvarotrigo.com##+js(aopr, __inScopeForCCPA) alvarotrigo.com##+js(aopw, __inScopeForCCPA) alvarotrigo.com##span[class*="ezoic-ad"]:remove() alvarotrigo.com##span[class*="adtester-container"]:remove() peakd.com##div[data-v-764c5ebf]:remove() ||abeaddc65282d465.com^* ||e2706c6e2b426f74.com^* ||infoamanewonliag.online^* ||rounca.com^* ||uttack.com^* ||walknotice.com^* ||rtxkeeda.com/adsby.js$script rtxkeeda.com##+js(aopr, dmAZuTknHuCIIWY) rtxkeeda.com##+js(aopw, dmAZuTknHuCIIWY) rtxkeeda.com##+js(aopr, adsbygoogle) rtxkeeda.com##+js(aopw, adsbygoogle) rtxkeeda.com##+js(aopr, inputElement) rtxkeeda.com##+js(aopw, inputElement) rtxkeeda.com##iframe[data-aa]:remove() rtxkeeda.com##ins[data-ad-client]:remove() rtxkeeda.com##^script:has-text(parseInt):remove() rtxkeeda.com##^script:has-text(inputElement):remove() rtxkeeda.com##div[id="alert"]:has(div[id="alertmsg"]):remove() rtxkeeda.com##div[id="alertmsg"]:remove() ||mobileoffers-dq-download.com^* ||rd.mobileoffers-5-w-download.com^* ||mobileoffers-7-j-download.com^* ||mobileoffers-db-download.com^* rtxkeeda.com##div[id="overlaypop"]:remove() rtxkeeda.com##div[id="modalpop"]:remove() rtxkeeda.com##div[id="modalpop-content"]:has(span:has-text(Adblock Detected!)):remove() ||kroegerama.com^* theipfire.com##ins[data-ad-client]:remove() theipfire.com##div[class^="adace-"]:remove() theipfire.com##+js(aopr, _stq) theipfire.com##+js(aopw, _stq) ||theipfire.com/wp-content/plugins/ad-ace/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css theipfire.com##script[id^="google_gtagjs"]:remove() theipfire.com##p[class="comment-form-cookies-consent"]:remove() troypoint.com##a[href="https://troypoint.com/vpn-sidebar"]:remove() troypoint.com##a[href="https://troypoint.com/vpn-riskfree"]:remove() troypoint.com##a[href="https://troypoint.com/vpn-exposed"]:remove() www.firesticktricks.com##div[class="warning"]:remove() www.firesticktricks.com##div[class^="mysticky-welcomebar-"]:remove() www.redbox.com##input[type="button"][pseudo^="-webkit-media-controls-"]:remove-attr(disabled) www.redbox.com##div[id="rb-ad-leaderboard-container-id"]:remove() www.redbox.com##div[id^="header-ad_"]:remove() www.redbox.com##div[class="adserver-widget"]:remove() www.redbox.com##img[id="blocker-check"]:remove() !||www.redbox.com/images/ads/pixel.png$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.redbox.com/images/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.redbox.com##+js(aopr, YAHOO.ywa.I13N.fireBeacon) www.redbox.com##+js(aopw, YAHOO.ywa.I13N.fireBeacon) www.redbox.com##+js(aopr, axel) www.redbox.com##+js(aopw, axel) ||tracking.vidgo.com^* www.iptvplayers.com##ins[data-ad-client]:remove() www.iptvplayers.com##+js(aopr, adsbygoogle) www.iptvplayers.com##+js(aopw, adsbygoogle) www.iptvplayers.com##+js(aopr, _stq) www.iptvplayers.com##+js(aopw, _stq) webextension.org##div[id="cookie"]:remove() webextension.org##table[id="adb"]:remove() webextension.org##+js(aopw, adsbygoogle) webextension.org##+js(aopr, adsbygoogle) watch.freeiptv.life##a[href^="https://www.kqzyfj.com/click-"]:remove() watch.freeiptv.life##a[href^="https://www.anrdoezrs.net/click-"]:remove() watch.freeiptv.life##ins[data-ad-client]:remove() app.m3u.in##img[src^="/img/stop-war-in-ukraine"]:remove() ||d3.c3.b1.a1.top.mail.ru/counter?id$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css /^cdn\.livetv\d+\.me/##iframe[src^="//ads.livetv817.me/"]:remove() /^cdn\.livetv\d+\.me/##+js(remove-node-text, script, /RndNum4NoCash\s?=/gm) /^cdn\.livetv\d+\.me/##+js(set-constant, RndNum4NoCash, 0) /^cdn\.livetv\d+\.me/##+js(aopr, RndNum4NoCash) /^cdn\.livetv\d+\.me/##+js(aopw, RndNum4NoCash) /^cdn\.livetv\d+\.me/##div[id="localpp"]:remove() /^cdn\.livetv\d+\.me/##table[id="playerblock"][onmouseover]:remove-attr(onmouseover) /^cdn\.livetv\d+\.me/##+js(remove-attr, onmouseover, table[id="playerblock"][onmouseover]) /^cdn\.livetv\d+\.me/##table[id="playerblock"][onmouseout]:remove-attr(onmouseout) /^cdn\.livetv\d+\.me/##+js(remove-attr, onmouseout, table[id="playerblock"][onmouseout]) /^cdn\.livetv\d+\.me/##+js(remove-node-text, script, /function show_me_adext\(date_server\)/gm) /^cdn\.livetv\d+\.me/##+js(no-setTimeout-if, do_Action) /^cdn\.livetv\d+\.me/##+js(set-constant, show_me_adext, noopFunc) /^cdn\.livetv\d+\.me/##+js(remove-node-text, script, /function show_me_adext\(date_server\)/gm) /^cdn\.livetv\d+\.me/##+js(remove-node-text, script, /href\s?=\s?['"]//www\.liveinternet\.ru\/click['"]/gm) /^cdn\.livetv\d+\.me/##a[href="//www.liveinternet.ru/click"]:remove() /^cdn\.livetv\d+\.me/##+js(remove-node-text, script, /_gaq\.push\(\[/gm) /^cdn\.livetv\d+\.me/##+js(aopr, _gaq) /^cdn\.livetv\d+\.me/##+js(aopw, _gaq) /^cdn\.livetv\d+\.me/##+js(remove-node-text, script, /x_ajax_onlinewebplayer\(\)/gm) /^cdn\.livetv\d+\.me/##+js(set-constant, x_ajax_onlinewebplayer, noopFunc) /^cdn\.livetv\d+\.me/##+js(remove-node-text, script, /if\s?\(\(BrowserDetect\.browser\s?!=\s?['"]Explorer['"]\)\)/gm) ! The table in the following rule contains the iframe for the video player and constrains the size of that iframe. ! 101vw is needed in this instance for the width of the video player in the table and iframe to extend to the right edge of the browser window/tab. /^cdn\.livetv\d+\.me/##table[id="playerblock"]:style(position: relative !important; left: -1vw !important; right: 0px !important; padding: 0 !important; margin: 0 !important; border: none !important; border-width: 0 !important; max-width: 101vw !important; width: 101vw !important; max-height: 101vh !important; height: 101vh !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) /^cdn\.livetv\d+\.me/##iframe[src^="https://wikisport.best/"]:style(padding: 0 !important; margin: 0 !important; border: none !important; border-width: 0 !important; max-width: 100% !important; width: 100% !important; max-height: 100% !important; height: 100% !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="https://wikisport.best/"], marginheight, 0) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="https://wikisport.best/"], marginwidth, 0) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="https://wikisport.best/"], mozallowfullscreen, true) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="https://wikisport.best/"], webkitallowfullscreen, true) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="https://wikisport.best/"], autoplay, yes) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="https://wikisport.best/"], width, 100%) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="https://wikisport.best/"], height, 100%) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="https://wikisport.best/"], allowtransparency, true) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="https://wikisport.best/"], allow, picture-in-picture; autoplay; fullscreen; encrypted-media; clipboard-write; accelerometer; gyroscope; web-share;) ! TODO: Setting the sandbox attribute may break the video player. !/^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="https://wikisport.best/"], sandbox, allow-pointer-lock; allow-top-navigation; allowTransparency; allow-modals; allow-scripts; allow-same-origin; allow-popups; allow-popups-to-escape-sandbox; allow-storage-access-by-user-activation; allow-forms) ! The following attributes are already set by default on this website. /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="https://wikisport.best/"], frameborder, 0) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="https://wikisport.best/"], allowfullscreen, true) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="https://wikisport.best/"], scrolling, no) /^cdn\.livetv\d+\.me/##iframe[src^="https://ilovetoplay.xyz/wiki.php?"]:style(padding: 0 !important; margin: 0 !important; border: none !important; border-width: 0 !important; max-width: 100% !important; width: 100% !important; max-height: 100% !important; height: 100% !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="https://ilovetoplay.xyz/wiki.php?"], marginheight, 0) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="https://ilovetoplay.xyz/wiki.php?"], marginwidth, 0) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="https://ilovetoplay.xyz/wiki.php?"], mozallowfullscreen, true) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="https://ilovetoplay.xyz/wiki.php?"], webkitallowfullscreen, true) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="https://ilovetoplay.xyz/wiki.php?"], autoplay, yes) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="https://ilovetoplay.xyz/wiki.php?"], width, 100%) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="https://ilovetoplay.xyz/wiki.php?"], height, 100%) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="https://ilovetoplay.xyz/wiki.php?"], allowtransparency, true) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="https://ilovetoplay.xyz/wiki.php?"], allow, picture-in-picture; autoplay; fullscreen; encrypted-media; clipboard-write; accelerometer; gyroscope; web-share;) ! TODO: Setting the sandbox attribute may break the video player. !/^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="https://ilovetoplay.xyz/wiki.php?"], sandbox, allow-pointer-lock; allow-top-navigation; allowTransparency; allow-modals; allow-scripts; allow-same-origin; allow-popups; allow-popups-to-escape-sandbox; allow-storage-access-by-user-activation; allow-forms) ! The following attributes are already set by default on this website. /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="https://ilovetoplay.xyz/wiki.php?"], frameborder, 0) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="https://ilovetoplay.xyz/wiki.php?"], allowfullscreen, true) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="https://ilovetoplay.xyz/wiki.php?"], scrolling, no) /^cdn\.livetv\d+\.me/##iframe[src^="https://antenasport.online/channel/"]:style(padding: 0 !important; margin: 0 !important; border: none !important; border-width: 0 !important; max-width: 100% !important; width: 100% !important; max-height: 100% !important; height: 100% !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="https://antenasport.online/channel/"], marginheight, 0) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="https://antenasport.online/channel/"], marginwidth, 0) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="https://antenasport.online/channel/"], mozallowfullscreen, true) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="https://antenasport.online/channel/"], webkitallowfullscreen, true) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="https://antenasport.online/channel/"], autoplay, yes) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="https://antenasport.online/channel/"], width, 100%) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="https://antenasport.online/channel/"], height, 100%) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="https://antenasport.online/channel/"], allowtransparency, true) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="https://antenasport.online/channel/"], allow, picture-in-picture; autoplay; fullscreen; encrypted-media; clipboard-write; accelerometer; gyroscope; web-share;) ! TODO: Setting the sandbox attribute may break the video player. !/^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="https://antenasport.online/channel/"], sandbox, allow-pointer-lock; allow-top-navigation; allowTransparency; allow-modals; allow-scripts; allow-same-origin; allow-popups; allow-popups-to-escape-sandbox; allow-storage-access-by-user-activation; allow-forms) ! The following attributes are already set by default on this website. /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="https://antenasport.online/channel/"], frameborder, 0) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="https://antenasport.online/channel/"], allowfullscreen, true) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="https://antenasport.online/channel/"], scrolling, no) /^cdn\.livetv\d+\.me/##iframe[src^="//emb.apl374.me/"]:style(padding: 0 !important; margin: 0 !important; border: none !important; border-width: 0 !important; max-width: 100% !important; width: 100% !important; max-height: 100% !important; height: 100% !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="//emb.apl374.me/"], marginheight, 0) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="//emb.apl374.me/"], marginwidth, 0) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="//emb.apl374.me/"], mozallowfullscreen, true) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="//emb.apl374.me/"], webkitallowfullscreen, true) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="//emb.apl374.me/"], autoplay, yes) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="//emb.apl374.me/"], width, 100%) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="//emb.apl374.me/"], height, 100%) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="//emb.apl374.me/"], allowtransparency, true) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="//emb.apl374.me/"], allow, picture-in-picture; autoplay; fullscreen; encrypted-media; clipboard-write; accelerometer; gyroscope; web-share;) ! TODO: Setting the sandbox attribute may break the video player. !/^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="//emb.apl374.me/"], sandbox, allow-pointer-lock; allow-top-navigation; allowTransparency; allow-modals; allow-scripts; allow-same-origin; allow-popups; allow-popups-to-escape-sandbox; allow-storage-access-by-user-activation; allow-forms) ! The following attributes are already set by default on this website. /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="//emb.apl374.me/"], frameborder, 0) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="//emb.apl374.me/"], allowfullscreen, true) /^cdn\.livetv\d+\.me/##+js(trusted-set-attr, iframe[src^="//emb.apl374.me/"], scrolling, no) !*$3p,script,denyallow=ajax.googleapis.com,domain=/^cdn\.livetv\d+\.me/ /^https?:\/\/(?!-)[A-Za-z0-9-]+([\-\.]{1}[A-Za-z0-9]+)*\.[A-Za-z]{2,6}\/?\S*/$3p,script,denyallow=ajax.googleapis.com,domain=/^cdn\.livetv\d+\.me/ cdn.livetv.sx##table[id="playerblock"]:remove-attr(onmouseover) cdn.livetv.sx##table[id="playerblock"]:remove-attr(onmouseout) livetv.sx##body[onblur]:remove-attr(onblur) livetv.sx##+js(remove-attr, onblur, body[onblur]) livetv.sx##body[onfocus]:remove-attr(onfocus) livetv.sx##+js(remove-attr, onfocus, body[onfocus]) livetv.sx##+js(remove-node-text, script, /setTimeout\(initd(long)?/gm) livetv.sx##+js(no-setTimeout-if, /initd(long)?/) livetv.sx##div[id="bugoverlay"]:remove() livetv.sx##iframe[src^="//ads.livetv817.me/"]:remove() livetv.sx##+js(remove-node-text, script, /RndNum4NoCash\s?=/gm) livetv.sx##+js(set-constant, RndNum4NoCash, 0) livetv.sx##+js(aopr, RndNum4NoCash) livetv.sx##+js(aopw, RndNum4NoCash) livetv.sx##+js(remove-node-text, script, /window\.KTracking\s?=/gm) livetv.sx##+js(aopr, window.KTracking) livetv.sx##+js(aopw, window.KTracking) livetv.sx##+js(remove-node-text, script, /function\(h\,o\,t\,j\,a\,r\)\s?\{/gm) livetv.sx##+js(set-constant, dactiv, 0) livetv.sx##table[class="lnktbj"][onmouseover]:style(opacity: 1.0 !important;) livetv.sx##table[class="lnktbj"][onmouseout]:remove-attr(onmouseout) livetv.sx##+js(remove-attr, onmouseout, table[class="lnktbj"]) livetv.sx##+js(trusted-replace-node-text, script, /\$\(this\)\.css\(['"]opacity['"]\,\s?['"]0.2['"]\);/gm, $(this).css('opacity'\, '0.7');) ||live-tv.top/js/k.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ads.livetv686.me^* ||ads.livetv646.me^* ||ads.livetv647.me^* ||ads.livetv754.me^* ||ads.livetv817.me^* ||ads.cpxinteractive.com^* !||cdn.livetv549.me/img/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css /^https?:\/\/cdn\.livetv\d+\.me\/img\/ads\//$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.thestreameast.to,thestreameast.io##div[id="GelismisReklams"]:remove() www.thestreameast.to,thestreameast.io##div[id="GelecekMaclarListeleme"]:remove() www.thestreameast.to,thestreameast.io##div[id="Splash"]:remove() www.thestreameast.to,thestreameast.io##div[id="BildirimlerSplash"]:remove() www.thestreameast.to,thestreameast.io##div[id="alertBanner"]:remove() !www.thestreameast.to,thestreameast.io##div[data-player]:style(height: 720px !important; width: 1280px !important;) www.thestreameast.to,thestreameast.io##div[data-player]:style(height: 99vh !important; width: 99vw !important;) www.thestreameast.to,thestreameast.io##iframe[src^="https://s.amazon-adsystem.com/"]:remove() www.thestreameast.to,thestreameast.io##iframe[id="live-chat-iframe"]:remove() www.thestreameast.to,thestreameast.io##+js(set-constant, alertDiv, null) ! The following rule is to block the 4 hour streaming time restriction. ! TODO: It also prevents other timed functions with the same generic name. ! This prevents getting past the Cloudflare protection. !www.thestreameast.to,thestreameast.io##+js(no-setTimeout-if, /function\(\)/) ! The following rule removes the popup alert when the streaming time has expired. www.thestreameast.to,thestreameast.io##div[id="alertBox"]:remove() ! player.disableKeyboardShortcuts www.thestreameast.to,thestreameast.io##+js(trusted-replace-node-text, script, /disableKeyboardShortcuts: true/gm, disableKeyboardShortcuts: false) ||cdn.streambeast.io/aclib.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||apk.rapidstreamz.com^* ||milkywaynewspaper.com^* ||pizzasaffixt.website^* ||gulsachpyrexia.uno^* ||bethelskneeler.website^* ||atripplotx.com^* ||thaidsir.xyz^* ||www.avhxnasqeo.com^* ||avhxnasqeo.com^* ||skorlive.com/styles/adsbygoogle-footer.css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! TODO: ^script doesn't work with attributes since checked before DOM created? www.sportsbaytv.com##script[id="_wauaex"]:remove() www.sportsbaytv.com##+js(set-constant, popurl, '') www.sportsbaytv.com##+js(set-constant, popurl2, '') www.sportsbaytv.com##+js(set-constant, popurl3, '') www.sportsbaytv.com##+js(set-constant, hostname, '') !www.sportsbaytv.com##+js(no-setInterval-if, vwu) www.sportsbaytv.com##+js(no-setInterval-if, /^vwu\(\)/) ! TODO: sawlive.tv is defunct. !||sawlive.tv/avurcfq3.js$script !||sawlive.tv/avurcfq3.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||sawlive.tv/avurcfww3.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||sawlive.tv/avurcfww2.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sawlive.tv/avurcf*.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.sawlive.tv##body:remove-attr(onclick) www.sawlive.tv##+js(set-constant, closeMyAd, noopFunc) www.sawlive.tv##+js(set-constant, closeMyAd2, noopFunc) www.sawlive.tv##+js(set-constant, display, noopFunc) www.sawlive.tv##+js(set-constant, seconds, 0) www.sawlive.tv##b[id="closingtext"]:remove() www.sawlive.tv##span[id="closingtimer"]:remove() www.sawlive.tv###j4qa1s:remove() www.sawlive.tv##div[id="hsbv3s"]:remove() www.sawlive.tv##div[id="s1aqja"]:remove() www.sawlive.tv##span[id="display300"]:remove() !www.sawlive.tv##+js(no-setTimeout-if, /^/) www.sawlive.tv##+js(no-setTimeout-if, /^closeMyAd\(\)/) !www.sawlive.tv##+js(no-setTimeout-if, closeMyAd2) www.sawlive.tv##+js(no-setTimeout-if, /^closeMyAd2\(\)/) !www.sawlive.tv##+js(no-setTimeout-if, display) www.sawlive.tv##+js(no-setTimeout-if, /^display\(\)/) www.sawlive.tv###swd646:remove() www.sawlive.tv###adba:remove() www.sawlive.tv###imgclose:remove() www.sawlive.tv###closingtimer:remove() www.sawlive.tv###closingtext:remove() ||www.mmmutajbpalv.com^* ||mmmutajbpalv.com^* ||yxjqoiitt.xyz^* ||erumen.com^* strayindicate.net##div[id="btn-unmute"]:remove() strayindicate.net##+js(set-constant, isConsoleOpen, false) strayindicate.net##+js(set-constant, isOpen, false) strayindicate.net##+js(set-constant, ConsoleBan.init, noopFunc) ||strayindicate.net/deb.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||biancasunlit.com^* !||www.hugecouponcodes.net^* ||www.hugecouponcodes.net/pop_lp.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.zdjljvsi.com^* ||woafoame.net^* ||xml-v4.kunvertads.com^* ||avdpmeated.uno^* www.vipleague.st##+js(set-constant, detectDevTool, noopFunc) www.vipleague.st##+js(set-constant, forceKillplayer, noopFunc) www.vipleague.st##+js(set-constant, debounce, noopFunc) !www.vipleague.st##+js(set-constant, startTime, 0) !www.vipleague.st##+js(set-constant, stopTime, 0) www.vipleague.st##div[class="Ad-Container"]:remove() www.vipleague.st##+js(set-constant, _0xc84e, []) www.vipleague.st##+js(aopr, _0xc84e) www.vipleague.st##+js(aopw, _0xc84e) www.vipleague.st##+js(aopr, adcashMacros) www.vipleague.st##+js(aopw, adcashMacros) !www.vipleague.st##+js(no-setTimeout-if, function) www.vipleague.st##+js(no-setTimeout-if, /^function\(\)/) !www.vipleague.st##+js(no-setInterval-if, function) www.vipleague.st##+js(no-setInterval-if, /^function\(\)/) www.vipleague.st##+js(no-setTimeout-if, forceKillplayer) ||www.vipleague.la/partytown/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.vipleague.la##button[class*="btn-danger"][data-openuri]:remove() ! The following two rules are actually redundant. www.vipleague.la##div[class^="h-100 position-absolute w-100 bg-light bg-opacity-25"][class$="text-success top-0"]:matches-attr(id=/[0-9a-z]{10}/):remove() www.vipleague.la##div:matches-attr(id=/[0-9a-z]{10}/):has-text(seconds to hide banner):has(span:matches-attr(id=/[0-9a-z]{10}/)):remove() www.vipleague.la##div[data-item="chat"]:remove() www.vipleague.la##img[width="1"][height="1"][class="d-none"]:remove() www.vipleague.la##iframe[src^="https://st.chatango.com/"]:remove() www.vipleague.la##iframe[loading="lazy"][title="embed player"]:style(left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) www.vipleague.la##+js(trusted-set-attr, iframe[loading="lazy"][title="embed player"], seamless, seamless) www.vipleague.la##+js(trusted-set-attr, iframe[loading="lazy"][title="embed player"], webkitallowfullscreen, true) www.vipleague.la##+js(trusted-set-attr, iframe[loading="lazy"][title="embed player"], mozallowfullscreen, true) www.vipleague.la##+js(trusted-set-attr, iframe[loading="lazy"][title="embed player"], scrolling, no) www.vipleague.la##+js(trusted-set-attr, iframe[loading="lazy"][title="embed player"], width, 100%) www.vipleague.la##+js(trusted-set-attr, iframe[loading="lazy"][title="embed player"], height, 100%) www.vipleague.la##+js(trusted-set-attr, iframe[loading="lazy"][title="embed player"], frameborder, 0) www.vipleague.la##+js(trusted-set-attr, iframe[loading="lazy"][title="embed player"], allowfullscreen, true) www.vipleague.la##+js(trusted-set-attr, iframe[loading="lazy"][title="embed player"], marginwidth, 0) www.vipleague.la##+js(trusted-set-attr, iframe[loading="lazy"][title="embed player"], marginheight, 0) www.vipleague.la##+js(trusted-set-attr, iframe[loading="lazy"][title="embed player"], allowtransparency, true) www.vipleague.la##+js(trusted-set-attr, iframe[loading="lazy"][title="embed player"], allow, picture-in-picture; autoplay; fullscreen; encrypted-media; clipboard-write; accelerometer; gyroscope; web-share;) www.vipleague.la##+js(trusted-set-attr, iframe[loading="lazy"][title="embed player"], autoplay, yes) !www.vipleague.la##+js(trusted-set-attr, iframe[loading="lazy"][title="embed player"], referrerpolicy, origin) www.vipleague.la##+js(trusted-set-attr, iframe[loading="lazy"][title="embed player"], referrerpolicy, unsafe-url) www.vipleague.la##+js(trusted-set-attr, iframe[loading="lazy"][title="embed player"], oallowfullscreen, true) www.vipleague.la##+js(trusted-set-attr, iframe[loading="lazy"][title="embed player"], msallowfullscreen, true) !www.vipleague.la##+js(trusted-set-attr, iframe[loading="lazy"][title="embed player"], loading, eager) ! TODO: Setting the sandbox attribute may break the video player. !www.vipleague.la##+js(trusted-set-attr, iframe[loading="lazy"][title="embed player"], sandbox, allow-pointer-lock; allow-top-navigation; allowTransparency; allow-modals; allow-scripts; allow-same-origin; allow-popups; allow-popups-to-escape-sandbox; allow-storage-access-by-user-activation; allow-forms) ||cdn.espn.com/onetrust/otCCPAiab.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dcf.espn.com/privacy/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||dcf.espn.com/error/e.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css abc.com##script[ccpa-opt-out-ids]:remove() abc.com##div[id^="vjs_video_"][class*="evp-new-ad-display"]:remove-class(evp-new-ad-display) abc.com##div[id^="vjs_video_"][class*="hide-play-button"]:remove-class(hide-play-button) abc.com##div[id^="vjs_video_"][class*="vjs-controls-disabled"]:remove-class(vjs-controls-disabled) abc.com##+js(remove-class, vjs-controls-disabled, div[id^="vjs_video_"][class*="vjs-controls-disabled"]) abc.com##+js(add-class, vjs-controls-enabled, div[id^="vjs_video_"]) abc.com##+js(trusted-set-attr, div[id^="vjs_video_"], crossorigin, anonymous) abc.com##+js(trusted-set-attr, div[id^="vjs_video_"], preload, metadata) !||prod.gatekeeper.us-abc.symphony.edgedatg.com/api/ws/telemetry/v1/events$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||prod.gatekeeper.us-abc.symphony.edgedatg.com/api/ws/telemetry/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css www.guru99.com##div[id^="div-gpt-ad-"]:remove() www.guru99.com##^script:has-text(/googletag/i):remove() www.guru99.com##+js(remove-node-text, script, /googletag\[/gm) www.guru99.com##+js(aopr, pubwise) www.guru99.com##+js(aopw, pubwise) www.guru99.com##+js(set-constant, pubwise.enabled, false, complete) ||assets-cdn.watchdisneyfe.com/delta/assets/abc/nielsen.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||assets-cdn.watchdisneyfe.com/delta/assets/abc/nielsen.js$script bosscast.eu##iframe[id="rufous-sandbox"]:remove() ||bettingoffer.xyz/js/popup.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||bettingoffer.xyz/js/popup.js$script ||bettingoffer.xyz/ads.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.playermyplayer.me/ad_xxx.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||blokstvs.xyz/js/ar.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||blokstvs.xyz/js/ar.js$script !||myopyrum.digital/rf/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||myopyrum.digital^* bettingoffer.xyz##div[id="advertisement"]:remove() bettingoffer.xyz##+js(aopr, redlink_url) bettingoffer.xyz##+js(aopw, redlink_url) lgbtrans.xyz##div[id="advertisement"]:remove() lgbtrans.xyz##+js(aopr, redlink_url) lgbtrans.xyz##+js(aopw, redlink_url) ||finishnecklace.com^* ||www.bkvuiwxqrr.com^* ||www.lujvwjsiqhne.com^* ||www.sxcbnqubygqekx.com^* ||sxcbnqubygqekx.com^* ||ruthrequire.com^* ||web.automatedcomputers.com^* www.visiblesafe.com##div[id="obrazek"]:remove() www.visiblesafe.com##a[id="remove-over"]:remove() bosscast.eu##iframe[src^="https://www.playermyplayer.me/ad_xxx.php"]:remove() bosscast.eu##div[id="floatLayer1"]:remove() playermyplayer.me##+js(aopr, document.oncontextmenu) playermyplayer.me##+js(aopw, document.oncontextmenu) playermyplayer.me##div:has(span[onmouseup="document.getElementById('floatLayer1').style.display='none'"]):remove() ||video-ads-module.ad-tech.nbcuni.com^* ||shutesaroph.com^* www.cbs.com##div[class="video__player-wrapper"]:remove-attr(data-use-freewheel-ads) www.cbs.com##button[type="button"]:remove-class(disabled) www.cbs.com##div[class^="ad-info-manager"]:remove() www.cbs.com##div[class^="controls-manager"]:remove-class(disable-selection) www.cbs.com##div[class^="controls-manager"]:remove-class(remove) www.cbs.com##div[class^="controls-manager"]:remove-attr(aria-hidden) www.cbs.com##div[class^="controls-backplane"]:remove-attr(aria-hidden) www.cbs.com##div[class^="controls-backplane"]:remove-class(disable-selection) www.cbs.com##div[class^="controls-backplane"]:remove-class(remove) ! displays the play button but not active !www.cbs.com##button[class*="btn-play-pause"][aria-label="Play"]:style(display:inline !important;) www.cbs.com##div[pseudo="-webkit-media-controls-panel"]:style(display:inline !important; appearance: -internal-media-control !important; cursor: pointer; user-select: all !important;) www.cbs.com##input[type="button"][aria-label="pause"]:remove-class(disabled) ! removing div[data-role="adContainer"] prevents the video from playing !www.cbs.com##div[data-role="adContainer"]:remove() www.cbs.com##div[data-role="adClickEl"]:remove() ||pubads.g.doubleclick.net/ssai/event/Sid4xiTQTkCT1SLu6rjUSQ/streams$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !@@||pubads.g.doubleclick.net/ssai/event/Sid4xiTQTkCT1SLu6rjUSQ/streams$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css,domain=www.cbs.com ||www.jokerplayer7.online/snack/css/snackbar.css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !www.jokerplayer7.online##div[class^="snackbar"]:upward(1):remove() !www.jokerplayer7.online##div[class^="snackbar"]:remove() www.jokerplayer7.online##snackbar:remove() ||jokerplayer7.online/ad1.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css jokerplayer7.online##div[id="close"]:remove() www.jokerplayer7.online##+js(set-constant, setOverlayAds, noopFunc) www.jokerplayer7.online##+js(no-setInterval-if, /^function/) live.harleyquinnwidget.live##div[id="ad_overlay"]:remove() live.harleyquinnwidget.live##div[id="ads"]:remove() live.harleyquinnwidget.live##+js(no-setInterval-if, /^vwu\(\)/) live.harleyquinnwidget.live##+js(aopr, mamafooty) live.harleyquinnwidget.live##+js(aopw, mamafooty) live.harleyquinnwidget.live##+js(remove-node-text, script, /top\.location/gm) live.harleyquinnwidget.live##:xpath(//script[contains(text(), 'top.location')]):remove() live.harleyquinnwidget.live##+js(acs, /top\.location/) ||firkedpace.life^* ||dimedoncywydd.com^* ||rkjnazpgfihz.com^* ||www.slqyrvijxviet.com^* ||www.ikcdhvbyg.com^* ||www.gwcpdvojom.com^* ||sunflowerinformed.com^* ||www.betteradsystem.com/barba.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||gluvoob.com^* ||tdsdo.com^* ||thebestprizes.life^* ||0.checkrobotpage.online^* ||checkrobotpage.online^* ! blocking or removing the terms prevents the top menu bar buttons from functioning. !www.samsungtvplus.com##div[id="terms"]:remove() www.samsungtvplus.com##div[id="oobe-video"][class*="vjs-controls-disabled"]:remove-class(vjs-controls-disabled) www.samsungtvplus.com##+js(remove-class, vjs-controls-disabled, div[id="oobe-video"][class*="vjs-controls-disabled"]) www.samsungtvplus.com##+js(add-class, jw-flag-cast-available, div[id="oobe-video"]) www.samsungtvplus.com##+js(add-class, vjs-controls-enabled, div[id="oobe-video"]) www.samsungtvplus.com##+js(add-class, vjs-has-mouse, div[id="oobe-video"]) www.samsungtvplus.com##+js(add-class, vjs-workinghover, div[id="oobe-video"]) www.samsungtvplus.com##+js(trusted-set-attr, div[id="oobe-video"], crossorigin, anonymous) www.samsungtvplus.com##+js(trusted-set-attr, div[id="oobe-video"], playsinline, true) !www.samsungtvplus.com##+js(trusted-set-attr, div[id="oobe-video"], playsinline, playsinline) www.samsungtvplus.com##+js(trusted-set-attr, div[id="oobe-video"], preload, metadata) !www.samsungtvplus.com##+js(trusted-set-attr, div[id="oobe-video"], preload, none) !www.samsungtvplus.com##+js(trusted-set-attr, div[id="oobe-video"], preload, auto) ! Don't remove vjs-user-inactive class as it changes to vjs-user-active when the cursor is over the video viewport. !www.samsungtvplus.com##div[id="oobe-video"][class*="vjs-user-inactive"]:remove-class(vjs-user-inactive) www.samsungtvplus.com##div[id="oobe-video"]:style(--aspect-ratio: 16/9 !important; left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) www.samsungtvplus.com##div[class*="vjs-audio-button"]:remove-class(vjs-hidden) www.samsungtvplus.com##div[class*="vjs-menu-button"]:remove-class(vjs-hidden) www.samsungtvplus.com##input[aria-label="show more media controls"]:remove-attr(disabled) www.samsungtvplus.com##input[type="button"][pseudo="-webkit-media-controls-play-button"]:remove-attr(disabled) www.samsungtvplus.com##div[pseudo="-webkit-media-controls-panel"]:style(display:inline !important; appearance: -internal-media-control !important; cursor: pointer; user-select: all !important;) www.samsungtvplus.com##button[class="sc-iqseJM jXVPDX"]:remove-attr(disabled) www.samsungtvplus.com##div[class="sc-ikJyIC jwMyfy"]:remove() www.samsungtvplus.com##+js(set-constant, document.oncontextmenu, undefined) !www.samsungtvplus.com##+js(acs, document.oncontextmenu) !www.samsungtvplus.com##+js(aopr, document.oncontextmenu) !www.samsungtvplus.com##+js(aopw, document.oncontextmenu) ||sync.publica-ctv.com/ssai-sync.js$script,domain=www.samsungtvplus.com ||qoe.samsungcloudsolution.com/ma/collect/logs?v=$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||taboutricewu.xyz^* cdn.sportcast.life##+js(aopw, emulateStorage) cdn.sportcast.life##+js(aopr, emulateStorage) cdn.sportcast.life##iframe[id="stats"]:remove() www.digitbin.com##ins[data-ad-client]:remove() www.digitbin.com##+js(aopw, adsbygoogle) www.digitbin.com##+js(aopr, adsbygoogle) www.digitbin.com##div[class^="ai-viewport-"]:remove() www.digitbin.com##div[class^="code-block code-block-"]:has(div:has-text(Advertisement)):remove() ||entrerscab.com^* ||www.ujlrvzfws.com^* ||ufojwpgypela.xyz^* ||www.xyjaewocysv.com^* ||wasgildedall.com^* ||sotchoum.com^* www.playstream.site###iframe:remove() www.playstream.site##iframe[src*="//www.youtube.com/embed/"]:remove() ||cdn.sportcast.life/scripts/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||www.tzugumojfm.com/pbt.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.tzugumojfm.com^* ||tzugumojfm.com^* ||sworddubiousagitated.com^* ||spannercopyright.com^* ||d1hogxc58mhzo9.cloudfront.net^* ||fdorxsat.com/XqdBH.htm$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.fdorxsat.com/c.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.fdorxsat.com/yer.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tableau123-dev.abla.io/api/collect$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||tableau123-dev.abla.io/abla.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||api.vkplay.live/v1/stat/ClientInfo/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||srv14486.cloudfilt.com/analyzC.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||srv14486.cloudfilt.com/analyz.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! prevents rotating the player iframe with a different source every 5 seconds ||klubsports.online/player/refresh.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||jinxrussian.com^* ||pl14979773.highrevenuegate.com^* klubsports.online##+js(acs, x.withCredentials) klubsports.online##+js(aopr, x.withCredentials) klubsports.online##+js(aopw, x.withCredentials) klubsports.online##+js(acs, window.ab29bd6589aba27f5797659888c4cc69) klubsports.online##+js(aopr, window.ab29bd6589aba27f5797659888c4cc69) klubsports.online##+js(aopw, window.ab29bd6589aba27f5797659888c4cc69) klubsports.online##+js(acs, s.onerror) klubsports.online##+js(aopr, s.onerror) klubsports.online##+js(aopw, s.onerror) klubsports.online##+js(acs, decodeURIComponent) klubsports.online##iframe[src="about:blank"]:remove() klubsports.online##+js(aeld, /contextmenu|keydown/) ||oprxmqfxhulfl.com^* ! cdn.stream-24.net##div[class="cdn-advsmedia-player"] doesn't get removed because cdn.stream-24.net left out the = after class in the tag. cdn.stream-24.net##div[class="cdn-advsmedia-player"]:remove() cdn.stream-24.net##:xpath("/html/body/div/div[6]"):has(iframe[src^="https://cdn.spo-play.live/sports/vplayer/sf1/?t="]):remove() ! ##iframe removal doesn't work !cdn.stream-24.net##iframe[src^="https://cdn.spo-play.live/sports/vplayer/sf1/?t="]:remove() cdn.stream-24.net##div[id="chat"]:remove() cdn.stream-24.net##div[class="cont_channels"]:remove() cdn.stream-24.net##+js(set-constant, pu, noopFunc) cdn.stream-24.net##+js(set-constant, stagedTmpFunc, noopFunc) cdn.stream-24.net##+js(set-constant, stagedPopUnder, noopFunc) cdn.stream-24.net##+js(set-constant, stagedPopFrequency, "") cdn.stream-24.net##+js(set-constant, $links, []) cdn.stream-24.net##+js(set-constant, $astron_banner, false) cdn.stream-24.net##+js(acs, web3) cdn.stream-24.net##+js(aopr, web3) cdn.stream-24.net##+js(aopw, web3) cdn.stream-24.net##+js(acs, pu) cdn.stream-24.net##+js(aopr, pu) cdn.stream-24.net##+js(aopw, pu) ||webtech-web-grn-assets.pluto.tv/assets/scripts/omid-session-client-v1-0408776cb37411dedf265f8de876b0bf.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||webtech-web-grn-assets.pluto.tv/assets/scripts/omweb-v1-9a4193fea0612ada0611a8268129d6e5.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||webtech-web-grn-assets.pluto.tv/assets/scripts/$script ! blocking window.googletag breaks the website !webapp.airy.tv##+js(aopr, window.googletag) !webapp.airy.tv##+js(aopw, window.googletag) webapp.airy.tv##input[type="button"][pseudo="-webkit-media-controls-play-button"]:style(display:inline !important; appearance: -internal-media-control !important; cursor: pointer;) webapp.airy.tv##+js(aeld, , onAdsManagerLoaded) webapp.airy.tv##+js(aeld, , onAdError) webapp.airy.tv##+js(aeld, , onAdEvent) webapp.airy.tv##+js(aeld, , videoClick) webapp.airy.tv##+js(aeld, , onAdIsLoaded) webapp.airy.tv##+js(aeld, , onAdStarted) webapp.airy.tv##+js(aeld, advertisement_event) webapp.airy.tv##+js(set-constant, adsRequest, noopFunc) webapp.airy.tv##+js(set-constant, playAds, noopFunc) webapp.airy.tv##+js(set-constant, adsRequest, false) webapp.airy.tv##+js(set-constant, adContainer, null) webapp.airy.tv###adContainer thoptvs.com##script[id="wpcp_disable_selection"]:remove() thoptvs.com##script[id="wpcp_disable_Right_Click"]:remove() thoptvs.com##script[id="wpcp_css_disable_selection"]:remove() thoptvs.com##script[id="generate-a11y"]:remove() thoptvs.com##+js(set-constant, disableEnterKey, noopFunc) thoptvs.com##+js(set-constant, disable_copy, noopFunc) thoptvs.com##+js(set-constant, disableSelection, noopFunc) thoptvs.com##+js(set-constant, disable_copy_ie, noopFunc) thoptvs.com##+js(aopr, document.oncontextmenu) thoptvs.com##+js(aopw, document.oncontextmenu) thoptvs.com##ins[data-ad-client]:remove() ||thoptvs.com/wp-content/plugins/wp-content-copy-protector/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css thoptvs.com##+js(aopr, adsbygoogle) thoptvs.com##+js(aopw, adsbygoogle) fileproinfo.com##div[id="dvtopad"]:remove() fileproinfo.com##ins[data-ad-client]:remove() fileproinfo.com##+js(aopr, adsbygoogle) fileproinfo.com##+js(aopw, adsbygoogle) fileproinfo.com##span:has-text(Advertisement):upward(1):remove() fileproinfo.com##span:has-text(Advertisement):remove() fileproinfo.com##script[data-ad-client]:remove() fileproinfo.com###footerAd:remove() fileproinfo.com###cookieAlert:remove() lsto.me##div[id="tie-popup-adblock"]:remove() hdstreamzapp.com##script[id="wpcp_disable_selection"]:remove() hdstreamzapp.com##+js(set-constant, disableEnterKey, noopFunc) hdstreamzapp.com##+js(set-constant, disable_copy, noopFunc) hdstreamzapp.com##+js(set-constant, disable_copy_ie, noopFunc) hdstreamzapp.com##+js(set-constant, disableSelection, noopFunc) hdstreamzapp.com##script[id="wpcp_disable_Right_Click"]:remove() hdstreamzapp.com##script[id="wpcp_css_disable_selection"]:remove() hdstreamzapp.com##+js(aopr, document.oncontextmenu) hdstreamzapp.com##+js(aopw, document.oncontextmenu) hdstreamzapp.com##ins[data-ad-client]:remove() hdstreamzapp.com##+js(aopr, adsbygoogle) hdstreamzapp.com##+js(aopw, adsbygoogle) hdstreamzapp.com##script[id="generate-a11y"]:remove() ||hdstreamzapp.com/wp-content/plugins/wp-content-copy-protector/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||rxtbuacedjc.com^* !||www.fdorxsat.com/twj.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.fdorxsat.com^* ||fdorxsat.com^* ||gvcgmvblssh.com^* ||cdn.livetrafficfeed.com/static/v4/live.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css rojatvdirecta.com##+js(aopr, t.Tn) rojatvdirecta.com##+js(aopw, t.Tn) rojatvdirecta.com##^script:has-text(/delete window\[/):remove() rojatvdirecta.com##script:has-text(/delete window\[/):remove() rojatvdirecta.com##script[id="_wauhhc"]:remove() rojatvdirecta.com##+js(aopr, _wau) rojatvdirecta.com##+js(aopw, _wau) directatvhd.me##script[id="_waue9r"]:remove() directatvhd.me##+js(aopr, _wau) directatvhd.me##+js(aopw, _wau) ||xvojggwu.com^* ||www.vttyjakvvdce.com^* ||rwwwnevtg.xyz^* kepa.pw##div[id="adcode"]:remove() kepa.pw##div[id="unmute"]:remove() kepa.pw##.video_ads_overdiv:remove() kepa.pw##+js(aopr, window.ca00d5bb33dad2d2351a4ab364ca0ebb) kepa.pw##+js(aopw, window.ca00d5bb33dad2d2351a4ab364ca0ebb) kepa.pw##+js(aopr, p$00a) kepa.pw##+js(aopw, p$00a) kepa.pw##+js(set-constant, p$00a, "") kepa.pw##+js(acs, zc_865364) kepa.pw##div[id="zc_865364"]:remove() ||fnuvsfyylouxwu.com^* www.dacast.com##div[class^="styles__MainCookieConsentContainer"]:remove() en.myshows.me##div[id^="adfox_"]:remove() en.myshows.me##div[class^="adblock"]:remove() en.myshows.me##div[class="DefaultLayout-footer-ads"]:remove() livenewschat.eu##div[id="secondary"]:remove() livenewschat.eu##div[id="primary"]:style(width: 100vw !important;) livenewschat.eu##main[id="main"]:style(width: 100vw !important; height: 100vh !important;) livenewschat.eu##div[class="videoplayer"]:style(left: -3vw !important; position: relative !important;) ! TODO: The following will prevent the footer from overlapping the video player viewport, but the footer also disappears from the page. livenewschat.eu##footer[id="colophon"]:style(position: fixed !important;) livenewschat.eu##div[class*="ast-container"]:style(max-width: 99vw !important;) livenewschat.eu##div[data-freestar-ad]:remove() livenewschat.eu##div[class="AD1"]:remove() livenewschat.eu##div[class="AD2"]:remove() livenewschat.eu##div[class="container rbc-is-hidden-on-mobile"]:remove() livenewschat.eu##div[class="container container-choice-footer-msg"]:remove() livenewschat.eu##+js(aopr, _paq) livenewschat.eu##+js(aopw, _paq) livenewschat.eu##iframe[name="__tcfapiLocator"]:remove() !livenewschat.eu##+js(no-setTimeout-if, /^/) livenewschat.eu##+js(no-setTimeout-if, /location\.href/) !livenewschat.eu##video[id="hlsPlayer"][disableremoteplayback]:watch-attr(disableremoteplayback):remove-attr(disableremoteplayback) !livenewschat.eu##video[id="hlsPlayer"][disablepictureinpicture]:watch-attr(disablepictureinpicture):remove-attr(disablepictureinpicture) !livenewschat.eu##+js(remove-attr, disableremoteplayback, video[id="hlsPlayer"][disableremoteplayback], stay) !livenewschat.eu##+js(remove-attr, disablepictureinpicture, video[id="hlsPlayer"][disablepictureinpicture], stay) livenewschat.eu##video[id="hlsPlayer"][disableremoteplayback]:remove-attr(disableremoteplayback) livenewschat.eu##+js(remove-attr, disableremoteplayback, video[id="hlsPlayer"][disableremoteplayback]) livenewschat.eu##video[id="hlsPlayer"][disablepictureinpicture]:remove-attr(disablepictureinpicture) livenewschat.eu##+js(remove-attr, disablepictureinpicture, video[id="hlsPlayer"][disablepictureinpicture]) livenewschat.eu##+js(trusted-set-attr, video[id="hlsPlayer"], width, 100%) livenewschat.eu##+js(trusted-set-attr, video[id="hlsPlayer"], height, 100%) livenewschat.eu##+js(trusted-set-attr, video[id="hlsPlayer"], x-webkit-airplay, allow) livenewschat.eu##+js(set-attr, video[id="hlsPlayer"], data-autoplay-mute-lock, false) !livenewschat.eu##+js(trusted-set-attr, video[id="hlsPlayer"], data-autoplay-mute-lock, false) livenewschat.eu##+js(set-attr, video[id="hlsPlayer"], controls, true) !livenewschat.eu##+js(trusted-set-attr, video[id="hlsPlayer"], controls, true) livenewschat.eu##+js(set-attr, video[id="hlsPlayer"], playsinline, true) !livenewschat.eu##+js(trusted-set-attr, video[id="hlsPlayer"], playsinline, true) !livenewschat.eu##+js(trusted-set-attr, video[id="hlsPlayer"], playsinline, playsinline) livenewschat.eu##+js(set-attr, video[id="hlsPlayer"], webkit-playsinline, true) !livenewschat.eu##+js(trusted-set-attr, video[id="hlsPlayer"], webkit-playsinline, true) livenewschat.eu##+js(trusted-set-attr, video[id="hlsPlayer"], preload, metadata) !livenewschat.eu##+js(trusted-set-attr, video[id="hlsPlayer"], preload, none) !livenewschat.eu##+js(trusted-set-attr, video[id="hlsPlayer"], preload, auto) ! TODO: Setting the muted attribute to false or removing the muted attribute does NOT unmute the volume if the video player is set to mute the audio. !livenewschat.eu##+js(set-attr, video[id="hlsPlayer"][muted], muted, false) !livenewschat.eu##+js(trusted-set-attr, video[id="hlsPlayer"][muted], muted, false) !livenewschat.eu##video[id="hlsPlayer"][muted]:remove-attr(muted) !livenewschat.eu##+js(remove-attr, muted, video[id="hlsPlayer"][muted]) ||stats1.wpmudev.com^* ||dissolveretinue.com^* ||dangerouslygluttony.com^* vikistream.com##div[id="player"]:style(--aspect-ratio: 16/9 !important; left: 0px !important; right: 0px !important; top: 0px !important; bottom: 0px !important; opacity:1 !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) vikistream.com##div[id="player"][class*="vjs-controls-disabled"]:remove-class(vjs-controls-disabled) vikistream.com##+js(remove-class, vjs-controls-disabled, div[id="player"][class*="vjs-controls-disabled"]) vikistream.com##+js(add-class, vjs-controls-enabled, div[id="player"]) vikistream.com##+js(add-class, jw-flag-cast-available, div[id="player"]) vikistream.com##+js(add-class, vjs-has-mouse, div[id="player"]) vikistream.com##+js(add-class, vjs-workinghover, div[id="player"]) vikistream.com##+js(trusted-set-attr, div[id="player"], crossorigin, anonymous) vikistream.com##+js(trusted-set-attr, div[id="player"], preload, metadata) !vikistream.com##+js(trusted-set-attr, div[id="player"], preload, none) !vikistream.com##+js(trusted-set-attr, div[id="player"], preload, auto) vikistream.com##+js(trusted-set-attr, div[id="player"], playsinline, true) !vikistream.com##+js(trusted-set-attr, div[id="player"], playsinline, playsinline) vikistream.com##div[id="player"][class*="jw-no-focus"]:remove-class(jw-no-focus) ! The following rule is implemented in a broader rule elsewhere in this list. !/^https?:\/\/((?!-)[A-Za-z0-9-]+([\-\.]{1}))?vikistream.com\/z\-\d{7,}$/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css vikistream.com##+js(set-constant, window.ab3aa346af6eed01ae8b3084faed5174, "") vikistream.com##+js(acs, decodeURIComponent, atob) vikistream.com##+js(acs, window.ab3aa346af6eed01ae8b3084faed5174) vikistream.com##+js(aopr, window.ab3aa346af6eed01ae8b3084faed5174) vikistream.com##+js(aopw, window.ab3aa346af6eed01ae8b3084faed5174) ! filiatefinbone.uno hosts script which checks for web browser developer tools ||filiatefinbone.uno^* www.primewire.tf##+js(set-constant, sc, noopFunc) www.primewire.tf##+js(set-constant, console.clear, noopFunc) www.primewire.tf##+js(set-constant, ondevtoolopen, noopFunc) www.primewire.tf##+js(set-constant, disableMenu, noopFunc) www.primewire.tf##+js(acs, disableMenu) ! TODO: The following rule does not work because ondevtoolopen is an event? www.primewire.tf##+js(acs, ondevtoolopen) www.primewire.tf##+js(aeld, ondevtoolopen) www.primewire.tf##+js(trusted-replace-node-text, script, /console\.clear\(\);/gm, null;) www.primewire.tf##+js(acs, /console\.clear\(\);/) www.primewire.tf##+js(acs, break;case $.) www.primewire.tf##^script:has-text(break;case $.):remove() www.primewire.tf##+js(remove-node-text, script, /break;\s?case\s?\$\./gm) www.primewire.tf##+js(acs, /^You ar not allow to use DEVTOOL!/) www.primewire.tf##a[t^="/links/sponsored/"][onclick]:remove-attr(onclick) www.primewire.tf##a[t^="/links/sponsored/"]:remove() www.primewire.tf##div[id="bg_6301167358"]:remove() www.primewire.tf##div[id="bg_630126816"]:remove() www.primewire.tf##div[id="bg_630126816_pre"]:remove() ! The script in the following rule contains devtools !||www.primewire.tf/js/app-3c3ee1153f9b26f8b011c8cbca755c53.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! TODO: The following rule prevents the drop down list of episodes from appearing since the click event is suppressed. !www.primewire.tf##+js(aeld, /^(?:mouse|pointer|contextmenu|drag|drop)|click/) www.primewire.tf##+js(aeld, /^(?:mouse|pointer|contextmenu|drag|drop)/) ||platform.bidgear.com/async.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||uploady.io/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css /^https?:\/\/uploady\.io/nt\d?\.js/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The countdown timer is now server-side checked, and this script is no longer used. ||uploady.io/ds2/js/countdown.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css uploady.io,uploady.download##script[id="aclib"]:remove() uploady.io,uploady.download##+js(set-constant, _gaq, []) uploady.io,uploady.download##+js(set-constant, Tawk_API, {}) uploady.io,uploady.download##+js(set-constant, remaining, 0) uploady.io,uploady.download##+js(aopr, _gaq) uploady.io,uploady.download##+js(aopw, _gaq) uploady.io,uploady.download##+js(aopr, Tawk_API) uploady.io,uploady.download##+js(aopw, Tawk_API) uploady.io,uploady.download##+js(set-constant, window.protag, {}) uploady.io,uploady.download##+js(set-constant, window.protag.display, noopFunc, complete) uploady.io,uploady.download##+js(acs, /window\.protag\.cmd\.push\(/) uploady.io,uploady.download##+js(remove-node-text, script, /window\.protag\.cmd\.push\(/gm) uploady.io,uploady.download##+js(acs, /aclib\.runPop\(/) uploady.io,uploady.download##+js(remove-node-text, script, /aclib\.runPop/gm) uploady.io,uploady.download##+js(remove-node-text, script, /window\.googletag\.pubads\(\)/gm) uploady.io,uploady.download##+js(remove-node-text, script, /var DName1?\s?=/gm) uploady.io,uploady.download##+js(remove-node-text, script, /var FileName1?\s?=/gm) uploady.io,uploady.download##+js(remove-node-text, script, /powerAPITag\.(display|initStickyBanner)\(/gm) uploady.io,uploady.download##+js(aopr, powerTag.Init) uploady.io,uploady.download##+js(aopw, powerTag.Init) uploady.io,uploady.download##pubtag[data-ad-slot]:remove() uploady.io,uploady.download##a[id="dlnk"]:remove() uploady.io,uploady.download##.downloadbtn[disabled]:remove-attr(disabled) uploady.io,uploady.download##input[id="adblock_detected"]:remove() uploady.io,uploady.download##div[id="div-mobile"]:remove() uploady.io,uploady.download##div[id="div-desktop"]:remove() uploady.io,uploady.download##div[id^="protag-"]:remove() uploady.io,uploady.download##iframe[id="iframe_id"]:remove() uploady.io,uploady.download##span[class="ad-label"]:remove() ! input[name="rand"].val / value attribute but be the "rand": "5cevax6et3spiaw23be7qzh2r4d2fhnvyfuikh6a4u" value returned from the JSON by request appended with ?start_countdown=1, e.g. https://uploady.io/8gpk30hzsoci?start_countdown=1 ! start_countdown isn't retrieved until the element is clicked by default. !uploady.io,uploady.download##+js(trusted-set-attr, input[name="rand"], value, $ret.rand$) !uploady.io,uploady.download##+js(trusted-set-attr, input[name="rand"], value, 5cevax6et3spiaw23be7qzh2r4d2fhnvyfuikh6a4u) ! Do NOT prevent the countdown function. !uploady.io,uploady.download##+js(set-constant, countdown, noopFunc) !uploady.io,uploady.download##+js(no-setTimeout-if, /countdown/) !uploady.io,uploady.download##+js(no-setTimeout-if, tick) ! Do not use the following rule because the countdown is server-side checked. !uploady.io,uploady.download##+js(set-constant, timeleft, 0) ! The countdown timer still appears to be server-side so 59 seconds is the lowest that would work without the error. uploady.io,uploady.download##+js(trusted-replace-node-text, script, /var timeleft\s?=\s?\d+;/gm, var timeleft = 59;) ! The following two rules cause start_backend_countdown() to run after the page is loaded so that the countdown can be avoided. ! Must remove the existing start_backend_countdown() call so that it is not called twice. !uploady.io,uploady.download##+js(trusted-replace-node-text, script, /start_backend_countdown\(\);/gm, "") uploady.io,uploady.download##+js(trusted-replace-node-text, script, /start_backend_countdown\(\);\n?\s*countdown\(\);/gm, countdown();) ! TODO: The function in the following rule is sometimes not run when the page is reloaded after an error. uploady.io,uploady.download##+js(trusted-replace-node-text, script, /function es\(\)\s?\{/gm, start_backend_countdown(); function es() {) !uploady.io,uploady.download##button[id="free_dwn"][disabled]:remove-attr(disabled) uploady.io,uploady.download##button[id="free_dwn"][disabled]:watch-attr(disabled):remove-attr(disabled) uploady.io,uploady.download##+js(remove-attr, disabled, button[id="free_dwn"][disabled], stay) uploady.io,uploady.download##+js(trusted-set-attr, button[id="free_dwn"], onclick, es()) !uploady.io,uploady.download##button[id="mfree_dwn"][disabled]:remove-attr(disabled) uploady.io,uploady.download##button[id="mfree_dwn"][disabled]:watch-attr(disabled):remove-attr(disabled) uploady.io,uploady.download##+js(remove-attr, disabled, button[id="mfree_dwn"][disabled], stay) uploady.io,uploady.download##+js(trusted-set-attr, button[id="mfree_dwn"], onclick, mesl()) uploady.io,uploady.download##button[id="mesl"][class*="d-none"]:remove-class(d-none) uploady.io,uploady.download##+js(remove-class, d-none, button[id="mesl"][class*="d-none"]) ! Do not use wither of the following two rules to unhide the form since pressing the button before the server-side countdown timer (default is 60 seconds) is pointless. !uploady.io,uploady.download##msb_frm[class*="d-none"]:remove-class(d-none) !uploady.io,uploady.download##+js(remove-class, d-none, #msb_frm[class*="d-none"]) uploady.io,uploady.download##txt[class*="d-none"]:remove-class(d-none) uploady.io,uploady.download##+js(remove-class, d-none, #txt[class*="d-none"]) uploady.io,uploady.download##mtxt[class*="d-none"]:remove-class(d-none) uploady.io,uploady.download##+js(remove-class, d-none, #mtxt[class*="d-none"]) ! Do not use the following rule to unhide the form since pressing the button before the server-side countdown timer (default is 60 seconds) is pointless. !uploady.io,uploady.download##input[id="sb_frm"]:style(display: block !important;) ! The following rule will start the countdown after the page is loaded even if the time limit between downloads has not passed. uploady.io,uploady.download##+js(trusted-click-element, button[id="free_dwn"]) ! TODO: Do not click on the element to submit the form before the input[name="rand"] value is retrieved and set. !uploady.io,uploady.download##+js(trusted-click-element, #sb_frm) ! TODO: Wait 59 seconds before clicking on the element so that input[name="rand"] value is retrieved and set? ! That does not avoid the countdown error without modifying the countdown script. !uploady.io,uploady.download##+js(trusted-click-element, #sb_frm, , 59000) ! The following four rules are for mobile clients. ! Do not use the following rule to unhide the form since pressing the button before the server-side countdown timer (default is 60 seconds) is pointless. !uploady.io,uploady.download##input[id="msb_frm"]:style(display: block !important;) ! The following rule will start the countdown after the page is loaded even if the time limit between downloads has not passed. uploady.io,uploady.download##+js(trusted-click-element, button[id="mfree_dwn"]) ! TODO: Do not click on the element to submit the form before the input[name="rand"] value is retrieved and set. !uploady.io,uploady.download##+js(trusted-click-element, #msb_frm) ! TODO: Wait 59 seconds before clicking on the element so that input[name="rand"] value is retrieved and set? ! That does not avoid the countdown error without modifying the countdown script. !uploady.io,uploady.download##+js(trusted-click-element, #msb_frm, , 59000) !uploady.io,uploady.download##div[id="downloadbtn"][onclick]:remove-attr(onclick) uploady.io,uploady.download##div[id="downloadbtn"]:remove() ! Do not remove the onclick as it launches the es() or mesl() function which is required to download as it retrieves the "rand" value. !uploady.io,uploady.download##a[type="button"][class="btn btn-primary rounded"][onclick]:remove-attr(onlick) !uploady.io,uploady.download##a[class="btn btn-primary rounded"][onclick]:remove-attr(onlick) ||protagcdn.com/s/uploady.io/site.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##body[class="hidden"]:remove-class(hidden) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(remove-class, hidden, body[class="hidden"]) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##body[onmouseover]:remove-attr(onmouseover) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(remove-attr, onmouseover, body[onmouseover], stay) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##body:style(visibility: visible !important; display: block !important;) ! The default value of input[name="fadb"] is 1; fadb means fuck adblock. jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(set-attr, input[name="fadb"], value, 0) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##div[id="google_ads_iframe"]:remove() jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##div[id^="div-gpt-ad-"]:remove() ! remove disabled attribute from #downloadbtn but don't make it visible because the #downloadbtnf button needs to be pressed first. jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(trusted-replace-node-text, script, /\$\(downloadbtn\)\.attr\(['"]disabled['"]\,\s?true\)/gm, $(downloadbtn).attr('disabled'\, false)) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##button[id="downloadbtn"][disabled]:remove-attr(disabled) !jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com###downloadbtn[disabled]:remove-attr(disabled) !jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##button[id="downloadbtn"][style]:remove-attr(style) !jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##button[id="downloadbtn"]:style(display: block !important;) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##button[id="downloadbtnc"]:remove() jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##button[id="downloadbtnf"]:style(display: block !important;) ! downloadbtnf needs to issue strtd() function (onclick) !jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##button[id="downloadbtnf"]:remove() jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##button[onclick="window.location.href='https://devuploads.com/premium';"]:remove() jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##div[id="downloadNow"][style]:remove-attr(style) !jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com###downloadNow[style]:remove-attr(style) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##div[id="downloadNow"]:style(display: block !important;) !jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com###downloadNow:style(display: block !important;) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(trusted-replace-node-text, script, /if\s?\(remaining\s?\<=\s?\d\)/gm, if (true)) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(set-constant, remaining, 0) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(append-elem, div[id="downloadNow"], a, id, slowdlbtn) ! Use | not periods between class names in the following rule as the periods will be put into the classname as a single class. jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(add-class, btn|btn-secondary|btn-block|mb-4, a[id="slowdlbtn"]) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(trusted-set-attr, a[id="slowdlbtn"], type, button) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(set-inner-html, a[id="slowdlbtn"], "Download Now #2") ! TODO: Do the values in the following two rules change? Is the inline-script necessary for downloads to function? No. jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(trusted-replace-node-text, script, /eval\(atob\(_0x257c69\(0x[0-9a-fA-F]+\)\)\)\);/gm, null;) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(trusted-replace-node-text, script, /eval\(atob\(decrypt\(_0x2b31f5\(0x[0-9a-fA-F]+\)\,\s?_0x2b31f5\(0x[0-9a-fA-F]+\)\)\)\);/gm, null;) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com###tryAgain1:remove() jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com###tryAgain2:remove() jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##a[href^="https://random-affiliate.atimaze.com/trck/"]:remove() jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##img[src^="https://random-affiliate.atimaze.com/trck/"]:remove() ! The following are initial values for the download form. ! The values for tsty and dnumber remain 0. ! ! ! ! ! ! ! successful values: ! TODO: Why did the rand value change? ! ! ! ! ! ! adblock_detected needs to be 1(?) and xd to have a proper value (token) not the default of 1 for the download post submission to work. jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(set-attr, input[id="adblock_detected"], value, 1) ! ransite needs to be 1(?) for the download post submission to work. jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(set-attr, input[id="ransite"], value, 1) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(remove-node-text, script, /history\.go\(\d\);/gm) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(remove-node-text, script, /googletag\.cmd\.push\(/gm) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(remove-node-text, script, /googletag\.pubads\(\)\./gm) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(trusted-replace-node-text, script, /googletag\.display\(/gm, console.log() jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(trusted-replace-node-text, script, /googletag\.pubads\(\)\.set\(/gm, console.log() jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(trusted-replace-node-text, script, /googletag\.pubads\(\)\.enableSingleRequest\(\);/gm, null;) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(trusted-replace-node-text, script, /(window\.)?googletag\.enableServices\(\);/gm, null;) !jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(aopr, window.googletag) !jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(aopw, window.googletag) !jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(set-constant, googletag.cmd.push, noopFunc, complete) !jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(aopr, googletag.cmd.push) !jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(aopw, googletag.cmd.push) !jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(set-constant, googletag.enableServices, noopFunc, complete) !jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(aopr, googletag.enableServices) !jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(aopw, googletag.enableServices) !jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(aopw, adsbygoogle) !jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(aopr, adsbygoogle) ! an inline script needs to execute to retrieve the download token so don't abort on "unescape". !jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(acs, unescape) !jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(acs, _0x49fcx2) !jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(aopw, _0x57e0) !jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(aopr, _0x57e0) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(set-constant, isAdmin, true) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(acs, iframenone, iframev) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(set-constant, antiAdBlockerHandler, noopFunc) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(acs, antiAdBlockerHandler) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(trusted-set-constant, ai_front, {"value": {"":""}}) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(aopw, ai_front) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(aopr, ai_front) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(set-constant, b2a, noopFunc) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(set-constant, ai_js_code, false) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(aopw, ai_js_code) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(aopr, ai_js_code) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(set-constant, ai_adb_process_blocks, noopFunc) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(aopw, ai_adb_process_blocks) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(aopr, ai_adb_process_blocks) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(set-constant, TIME_LIMIT, 0) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(set-constant, timeLeft, 0) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com###formpost[disabled]:remove-attr(disabled) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(remove-class, disabled, #formpost[disabled], stay) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##iframe[data-aa]:remove() jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##ins[data-ad-client]:remove() jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##div[id="div-MWebStickyAds"]:remove() jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##div[id="div-DStickyAds"]:remove() jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##div[id="adBlocked"]:remove() jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##div[id^="336x280_"]:remove() jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##div[id^="300x250_"]:remove() jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##div[id="plzwait"]:remove() jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##div[id="Blocked"]:remove() jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##div[class^="stickyads_"]:remove() jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##html.i-amphtml-inabox:remove() ! removing img[id="featuredimage"] prevents the xd value from being set so the final download will not work. !jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##img[id="featuredimage"]:remove() jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##img[id="featuredimage"] ! TODO: ^script doesn't work with attributes since checked before DOM created? jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##script[disable-devtool-auto]:remove() jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##script[id="generate-a11y"]:remove() ! Both isblocked and isadblock need to be 0 for the event listener on the final download button to work. ! The following two rules will prevent the real download link from being attached to the download anchor tag as an event. ! Uncaught SyntaxError: redeclaration of non-configurable global property isblocked !jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(set-constant, isblocked, 0, stay) ! Uncaught SyntaxError: redeclaration of non-configurable global property isadblock !jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(set-constant, isadblock, 0, stay) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(trusted-replace-node-text, script, /if\s?\(isblocked\s?==\s?1\)/gm, if (null)) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(trusted-replace-node-text, script, /if\s?\(isadblock\s?==\s?1\)/gm, if (null)) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(trusted-replace-node-text, script, /isblocked\s?=\s?\d;/gm, isblocked = 0;) jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(trusted-replace-node-text, script, /isadblock\s?=\s?\d;/gm, isadblock = 0;) ! remove-cookie, /^/ removes all cookies since downloads fail after first download jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(remove-cookie, /^/) !jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(no-setTimeout-if, tick) ! Do NOT remove ipp! it is the IP address returned from https://du2.devuploads.com/dlhash.php. !jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##input[id="ipp"]:remove() ! defusing intervals breaks the script which creates the token for the download !jytechs.in,devfiles.pages.dev,devuploads.com,dev.miuiflash.com,djxmaza.in,thecubexguide.com##+js(no-setInterval-if, /^function\(\)/) *$frame,redirect-rule=noopframe,domain=jytechs.in|devfiles.pages.dev|devuploads.com|dev.miuiflash.com|djxmaza.in|thecubexguide.com ! even though blocking the countdown script, still have to wait for the 10 second countdown for the download link to be generated. ||dev.miuiflash.com/devfiles/js/countdown.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||devfiles.pages.dev/devfiles/js/countdown.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||devfiles.pages.dev/js/countdown.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||devuploads.com/devfiles/js/countdown.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||djxmaza.in/devfiles/js/countdown.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||thecubexguide.com/devfiles/js/countdown.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.jsdelivr.net/gh/devuploads/devfiles@main/fonts/wp-content/plugins/best-ads-block-detector/main.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.jsdelivr.net/gh/devuploads/devfiles@main/fonts/wp-content/plugins/best-ads-block-detector/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||nimrute.com^* !||cdn.heycdn25.xyz/404$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.heycdn25.xyz^* !||cdn.heycdn58.xyz/404$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.heycdn58.xyz^* ||sex.rip^* ||jookouky.net^* !||playhydrax.com/* ! "HX" video player ! https://abysscdn.com/?v=0nBdh2D73 / https://playhydrax.com/?v=I_HscHxsNv are example videos. TODO: The video player is removed when not in an iframe; it must be using the referrer request header to determine this. abysscdn.com,abyss.to,player-cdn.com,playhydrax.com#img[src^="https://hello.idocdn.com:3016/1x1.jpg"]:remove() ! The following three rules are GIF trackers for abysscdn.com/abyss.to videos. The port must be specified in the rule. ||hello.idocdn.com:3016/1x1.jpg?$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||connect.idocdn.com:3016/1x1.jpg?$3p,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||connect.idocdn.com:3016/1x2.jpg?$3p,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##iframe[class="notify"] abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(remove-node-text, script, /\w\.GoogleAnalyticsObject\s?=/gm) ! TODO: Use quotation marks for the value to avoid confusion with regular expression? ! However, using the document.referrer variable to set this such as with the following rule does not work to successfully load the URL if the host requires it. ! document.referrer is actually a read-only value and can't be set (for all web browsers?) abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(trusted-set-constant, document.referrer, "https://kimcartoon.li/") ! TODO: Setting _0x2b36 variable to [] causes the video player to not be initialized or to be removed. !abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(set-constant, _0x2b36, []) !abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(aopr, _0x2b36) !abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(aopw, _0x2b36) ! TODO: The _0xaed1 variable in the following three rules is actually commented out. !abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(set-constant, _0xaed1, []) !abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(aopr, _0xaed1) !abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(aopw, _0xaed1) abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(set-constant, url, "") abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(set-constant, url2, "") abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(aopr, url) abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(aopw, url) abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(aopr, url2) abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(aopw, url2) abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(set-constant, urlBan, "") abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(aopr, urlBan) abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(aopw, urlBan) abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(set-constant, isNoAds, 1) abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(trusted-replace-node-text, script, /var\sisNoAds\s?=\s?!?(0|1)/gm, var isNoAds = 1) abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(trusted-replace-node-text, script, /return\sisNoAds\s?=\s?!?(0|1)/gm, return isNoAds=1) abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(set-constant, config_ads, {}) abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(trusted-replace-node-text, script, /var config_ads\s?=\s?\{/gm, var config_ads={}; var config_junk={) abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(trusted-replace-node-text, script, /if\s?\(window\.jwplayer\)\s?\{/gm, if (null) {) abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(trusted-replace-node-text, script, /if\s?\(track\.window\s?>=\s?2\)\s?\{/gm, if (null) {) ! Aborting the script will break the video player since it is part of the same inline script. !abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(aopr, config_ads) !abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(aopw, config_ads) abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(set-constant, urls, []) ! TODO: The following rule will prevent the videos from playing. !abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(set-constant, viewPlaying, noopFunc) abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(remove-node-text, script, /const viewPlaying\s?=/gm) abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(no-setInterval-if, /viewPlaying/) abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##div[id="playback-fake"]:remove() ! The id in the following rule changes with each load/refresh of the page, so use the class="playover" rule instead. !abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##div[id="jPCMTM"]:remove() abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##div[class^="playover"]:remove() ! Do not remove the loader as it is the animated spinning circle while the video is loading. !abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##div[id="loader"]:remove() abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(set-constant, generateRandomPHPUrl, noopFunc) abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(set-constant, aab, noopFunc) abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##div[id="player"]:style(left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##div[id="player"][class*="vjs-controls-disabled"]:remove-class(vjs-controls-disabled) abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(remove-class, vjs-controls-disabled, div[id="player"][class*="vjs-controls-disabled"]) abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(add-class, vjs-controls-enabled, div[id="player"]) abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(add-class, jw-flag-cast-available, div[id="player"]) abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(add-class, vjs-has-mouse, div[id="player"]) abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(add-class, vjs-workinghover, div[id="player"]) abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(trusted-set-attr, div[id="player"], crossorigin, anonymous) abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(trusted-set-attr, div[id="player"], preload, metadata) !abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(trusted-set-attr, div[id="player"], preload, none) !abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(trusted-set-attr, div[id="player"], preload, auto) abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##div[id="player"][class*="jw-no-focus"]:remove-class(jw-no-focus) ! Do not use the following rule to remove the jw-flag-user-inactive class as this is done automatically when the user interacts with the video player. !abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##div[id="player"][class*="jw-flag-user-inactive"]:remove-class(jw-flag-user-inactive) abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##iframe[src="about:blank"]:remove() ! Cannot block these detectAdBlock functions, or the video will not play. !abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(set-constant, detectAdBlockAll, noopFunc) !abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(set-constant, detectAdBlock, noopFunc) !abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(acs, detectAdBlockAll, detectAdBlock) !abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(acs, detectAdBlock1, detectAdBlock2) !abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(set-constant, timeout, noopFunc) ! TODO: The timeout interval may be useful. !abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(no-setInterval-if, /timeout/) !abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(set-constant, js, "") !abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(acs, js) !abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(aopr, js) !abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(aopw, js) ! abysscdn.com/cdn-cgi/trace redirects to cloudflare.com/cdn-cgi/trace if blocked. ||abysscdn.com/cdn-cgi/trace$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! TODO: The following rule blocks https://iamcdn.net/player/sw.bundle.js which is also blocked. ||abysscdn.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||playhydrax.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||iamcdn.net/player/sw.bundle.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! TODO: The following rule blocks an ad script, BUT it also prevent the video player from working. !||iamcdn.net/player/core.lite.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The following rule is needed to prevent an anti-adblocking message. abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(trusted-replace-node-text, script, /if\s?\(\!reload\s?\|\|\s?!window\.SoTrym\)/gm, if (null)) ||playhydrax.com/cdn-cgi/trace$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cloudflare.com/cdn-cgi/trace$domain=abysscdn.com|abyss.to|player-cdn.com|playhydrax.com,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! Do not use the following rules as the URL's are used for legitimate diagnostic information used by Cloudflare's WARP app. !||www.cloudflare.com/cdn-cgi/trace$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cloudflare.com/cdn-cgi/trace$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||abyss.to/auth/logged$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! playhydraxb.min.js in the following rule is an anti-adblocking script and contains eyJhZGJsb2NrIjp7fSwiZXhjbHVkZXMiOiIifQ== which is {"adblock":{},"excludes":""} ||iamcdn.net/players/playhydraxb.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||iamcdn.net/players/playhydrax.min.js$replace=/if\(top\.location==self\.location\)/if (null)/gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||iamcdn.net/players/playhydrax.min.js$replace=/top.location!=self.location/true/gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||iamcdn.net/players/playhydrax.min.js$replace=/window\[_0x2b36\[6\]\]\[_0x2b36\[5\]\]\s?=\s?urlBan\,//gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! TODO: The iamcdn.net/players/playhydrax.min.js script also uses top.location and should not be aborted. !abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(aopr, top.location) !abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(aopw, top.location) ! The following rule is for the inline script on player-cdn.com/playhydrax.com/ abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(trusted-replace-node-text, script, /if\s?\(top\.location\s?==\s?self\.location\)/gm, if (null)) ! TODO: The following rule should not be necessary if the previous rule works. abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(trusted-replace-node-text, script, /if\s?\(top\.location\s?==\s?self\.location\)\s?\{window\.location\s?=\s?"https:\/\/abyss.to";\}\s?else/gm, "") abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(trusted-replace-node-text, script, /&&document\.getElementById\("player"\)\.remove\(\)/gm, "") abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(trusted-replace-node-text, script, /&&document\.getElementById\("over"\)\.remove\(\)/gm, "") ! iamcdn.net/players/playhydrax.min.js has the anti-developer tools functions in it. ! Use 0 not null in the following two rules for comparisons. ||iamcdn.net/players/playhydrax.min.js$replace=/devtoolsDetector\[_0x[0-9a-fA-F]+\[\d+\]\](\(\))?/0/gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(trusted-replace-node-text, script, /devtoolsDetector\[_0x[0-9a-fA-F]+\[\d+\]\](\(\))?/gm, 0) ||iamcdn.net/players/playhydrax.min.js$replace=/_clear\(\)/null/gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(trusted-replace-node-text, script, /_clear\(\)/gm, null) ||iamcdn.net/players/playhydrax.min.js$replace=/\{\s?devtoolsOpen\s?=\s?!?[0-1]/{devtoolsOpen=0/gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||iamcdn.net/players/playhydrax.min.js$replace=/\,\s?devtoolsOpen\s?=\s?!?[0-1]/,devtoolsOpen=0/gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(trusted-replace-node-text, script, /\{\s?devtoolsOpen\s?=\s?!?[0-1]/gm, {devtoolsOpen=0) abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(trusted-replace-node-text, script, /\,\s?devtoolsOpen\s?=\s?!?[0-1]/gm, ,devtoolsOpen=0) ! The following rule does NOT abort the entire https://iamcdn.net/players/playhydrax.min.js script. ! TODO: The following rule by itself defuses the anti-developer tools function; not completely. ! TODO: console.clear() called in playhydrax.min.js:6:17356 abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(acs, console.clear) ! TODO: The following does not work. !abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(set-constant, console, false) abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(trusted-replace-node-text, script, /if\s?\(console\)/gm, if(null)) ||iamcdn.net/players/playhydrax.min.js$replace=/if\s?\(console\)/if(null)/gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! TODO: The following does not work even though that domain hosts the playhydrax.min.js script not abysscdn.com/abyss.to iamcdn.net##+js(acs, console.clear) abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(set-constant, devtoolsOpen, 0) abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(no-setInterval-if, /devtoolsOpen/) ! removeJwp() removes the video player. ! Do NOT redefine removeJwp() or the video player will not be initialized. !abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(set-constant, removeJwp, noopFunc) !abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(acs, /removeJwp\(\)/) !abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(acs, remove()) !abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(acs, /\.remove\(\)/) ||iamcdn.net/players/playhydrax.min.js$replace=/removeJwp\(\)\,//gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||iamcdn.net/players/playhydrax.min.js$replace=/removeJwp\(\)\}/}/gm,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The script in the following rule disables the video player. ||iamcdn.net/player/core.bundle.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! Redefining devtoolsDetector.launch prevents the interval of checking for the developer tools which clears the console. ! Running devtoolsDetector.stop(); also stops the interval checks. !abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(set-constant, devtoolsDetector.launch, noopFunc, end) abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(set-constant, devtoolsDetector.launch, noopFunc, complete) !abysscdn.com,abyss.to,player-cdn.com,playhydrax.com##+js(set-constant, devtoolsDetector.launch, noopFunc) *$3p,popup,denyallow=abysscdn.com|abyss.to|player-cdn.com|playhydrax.com,domain=abysscdn.com|abyss.to|player-cdn.com|playhydrax.com ! TODO: using the following rule doesn't block popups from about:blank !/^https?:\/\/(?!-)[A-Za-z0-9-]+([\-\.]{1}[A-Za-z0-9]+)*\.[A-Za-z]{2,6}\/?\S*/$3p,popup,denyallow=abysscdn.com|abyss.to|player-cdn.com|playhydrax.com,domain=abysscdn.com|abyss.to|player-cdn.com|playhydrax.com ! iamcdn.net/ban.html blocks embedded videos; It is shown in an iframe when a video is banned/blocked. !||iamcdn.net/ban.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !iamcdn.net##:match-path(/\/ban\.html\?v=\w+) ! The comma in the regex must be escaped to match in the following rule. iamcdn.net##+js(trusted-replace-node-text, script, /\$\(document\)\.on\("contextmenu"\,e=>\{e\.preventDefault\(\)\}\);/gm, null;) ! These are anti-adblocking scripts apparently with randomnly generated names, but they cannot be blocked wholesale. !||cdn.iamcdn.net/js/620a9a654c0c0c3ccaa7.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.iamcdn.net/js/5924ab7d14546e4e82.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.iamcdn.net/js/5a0f9e712f654c47c3.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.iamcdn.net/js/620a9a654c050035.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.iamcdn.net/js/5924ab7d14546e4e82e903aa16ca3071.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.iamcdn.net/js/5a0f9e712f654c47c3e903ad16c23071.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.iamcdn.net/js/$script ! TODO: The following rule blocks the video player? !||tracker.idocdn.com^* watchsb.com##+js(set-constant, e, noopFunc) watchsb.com##+js(set-constant, check, noopFunc) ! disabledEvent() actually removes unwanted event listener !watchsb.com##+js(set-constant, disabledEvent, noopFunc) watchsb.com##+js(set-constant, isadb, false) watchsb.com##^script:has-text(/debugger;/):remove() watchsb.com##+js(remove-node-text, script, /debugger;/gm) watchsb.com##:xpath(//script[contains(text(), 'debugger;')]):remove() ! TODO: Really abort on debugger as that is what the debugger statement already does? watchsb.com##+js(acs, /debugger;/) iamcdn.net,watchsb.com##+js(aeld, /contextmenu|keydown/) watchsb.com##+js(no-setTimeout-if, check) ||appcdn01.xyz/vast.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||lv.chajagibbous.com^* !||ssl.p.jwpcdn.com/player/plugins/vast/v/8.6.2/vast.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ssl.p.jwpcdn.com/player/plugins/vast/v/*/vast.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a.adforcast.com^* ||zimpolo.com^* ||bebloommulvel.com^* ||bobabillydirect.org^* !||cdn.jsdelivr.net/gh/InteractiveAdvertisingBureau/AdBlockDetection/adblockDetector.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.jsdelivr.net/gh/InteractiveAdvertisingBureau/AdBlockDetection/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ping.staticmoly.me/ads/be/99/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ping.staticmoly.me/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ping.staticmoly.me/set/reportsp.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||ping.staticmoly.me^* ||pingo.staticmoly.me/logas/reportv.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ring.staticmoly.me^* ! frd0ad.js is the video player script. !||cdn.staticmoly.me/player_clappr/frd0ad.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||cdn.staticmoly.me/ads/be/99/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.staticmoly.me/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.staticmoly.me/dlwed2.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.staticmoly.me/metric.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.staticmoly.me/set/reporta.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.staticmoly.me/vadch.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The following rule prevents automatic reporting of missing videos. ||cdn.staticmoly.me/logas/reportv.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css /^https?:\/\/((?!-)[A-Za-z0-9-]+([\-\.]{1}))?vidmoly\.(to|me)\/static\/vastAD\.js/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! two forward slashes in the following rule? /^https?:\/\/((?!-)[A-Za-z0-9-]+([\-\.]{1}))?vidmoly\.(to|me)\/\/?metric\.php/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !/^https?:\/\/((?!-)[A-Za-z0-9-]+([\-\.]{1}))?vidmoly\.(to|me)\/dls\.php/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css *$3p,popup,denyallow=vidmoly.to|vidmoly.me,domain=vidmoly.to|vidmoly.me ! TODO: using the following rule doesn't block popups from about:blank !/^https?:\/\/(?!-)[A-Za-z0-9-]+([\-\.]{1}[A-Za-z0-9]+)*\.[A-Za-z]{2,6}\/?\S*/$3p,popup,denyallow=vidmoly.to|vidmoly.me,domain=vidmoly.to|vidmoly.me /^https?:\/\/((?!-)[A-Za-z0-9-]+([\-\.]{1}))?vidmoly\.(to|me)\/igetm\.php/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The following rules pertains to the igetm.php page. vidmoly.to,vidmoly.me##div[id="igetas"]:remove() vidmoly.to,vidmoly.me##+js(set-constant, igetas, noopFunc) vidmoly.to,vidmoly.me##+js(no-setInterval-if, igetas) vidmoly.to,vidmoly.me##+js(remove-node-text, script, /function igetas\(\)\s?\{/gm) vidmoly.to,vidmoly.me##+js(trusted-replace-node-text, script, /igetas\(\);/gm, null;) ||cdn.staticmoly.me/deskademeta.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The following rules pertains to the deskademeta.php page. vidmoly.to,vidmoly.me##div[id="mg_vd"]:remove() vidmoly.to,vidmoly.me##+js(set-constant, mg_vd, noopFunc) vidmoly.to,vidmoly.me##+js(no-setInterval-if, mg_vd) vidmoly.to,vidmoly.me##+js(remove-node-text, script, /function mg_vd\(\)\s?\{/gm) vidmoly.to,vidmoly.me##+js(trusted-replace-node-text, script, /mg_vd\(\);/gm, null;) ||cdn.staticmoly.me/weston.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The following rules pertains to the weston.php page. vidmoly.to,vidmoly.me##+js(set-constant, mg_vd2, noopFunc) vidmoly.to,vidmoly.me##div[id="mg_vd2"]:remove() vidmoly.to,vidmoly.me##+js(no-setInterval-if, mg_vd2) vidmoly.to,vidmoly.me##+js(remove-node-text, script, /function mg_vd2\(\)\s?\{/gm) vidmoly.to,vidmoly.me##+js(trusted-replace-node-text, script, /mg_vd2\(\);/gm, null;) ||cdn.staticmoly.me/vlock.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css vidmoly.to,vidmoly.me##div[id="dos_vlock"]:remove() vidmoly.to,vidmoly.me##+js(set-constant, dos_vlock, noopFunc) vidmoly.to,vidmoly.me##+js(no-setInterval-if, dos_vlock) vidmoly.to,vidmoly.me##+js(remove-node-text, script, /function dos_vlock\(\)\s?\{/gm) vidmoly.to,vidmoly.me##+js(trusted-replace-node-text, script, /dos_vlock\(\);/gm, null;) ! Do NOT use the following rule as it prevents the video player from appearing. !vidmoly.to,vidmoly.me##+js(trusted-replace-node-text, script, /if\s?\(window\.adsbygoogle\s?===\s?undefined)/gm, if (null)) ! Do NOT noop the adBlockControl() function or the embedded video player will not be displayed. !vidmoly.to,vidmoly.me##+js(set-constant, adBlockControl, noopFunc) ! molyvastsc() is required to display the video player !vidmoly.to,vidmoly.me##+js(set-constant, molyvastsc, noopFunc) vidmoly.to,vidmoly.me##script[onerror]:remove-attr(onerror) vidmoly.to,vidmoly.me##+js(remove-node-text, script, /ADBLOCK DETECTED/gm) vidmoly.to,vidmoly.me##:xpath(//script[contains(text(), 'ADBLOCK DETECTED')]):remove() vidmoly.to,vidmoly.me##+js(remove-node-text, script, /document\.addEventListener\(['"]contextmenu['"]/gm) vidmoly.to,vidmoly.me##+js(aeld, contextmenu) vidmoly.to,vidmoly.me##+js(trusted-replace-node-text, script, /"https:\/\/vidmoly\.to\/static\/vastAD\.js": \{\}\,/gm, "") !vidmoly.to,vidmoly.me##+js(set-constant, molyast21, false) vidmoly.to,vidmoly.me##+js(set-constant, molyast21, {}) !vidmoly.to,vidmoly.me##+js(trusted-replace-node-text, script, /molyvastsc\('molyast21'\, 'molyast21'\);/gm, null;) vidmoly.to,vidmoly.me##+js(trusted-replace-node-text, script, /molyvastsc\('molyast21'\, 'molyast21'\);/gm, "") vidmoly.to,vidmoly.me##+js(trusted-replace-node-text, script, /advertising:\s?molyast21/gm, advertising: {}) vidmoly.to,vidmoly.me##+js(trusted-replace-node-text, script, /playbackRateControls:\s?"false"/gm, playbackRateControls: "true") vidmoly.to,vidmoly.me##+js(trusted-replace-node-text, script, /\$\('div\.video_ad'\)\.show\(\);/gm, null;) vidmoly.to,vidmoly.me##+js(trusted-replace-node-text, script, /\$\(document\)\.find\(['"]\.a339144['"]\)\.show\(\);/gm, null;) vidmoly.to,vidmoly.me##div[id="adsblock"]:remove() vidmoly.to,vidmoly.me##+js(set-constant, vsd1, noopFunc) !vidmoly.to,vidmoly.me##+js(acs, vsd1) !vidmoly.to,vidmoly.me##script[src="https://cdn.staticmoly.me/ads/be/99/ads.js"][onerror]:remove-attr(onerror) vidmoly.to,vidmoly.me##script[src="https://cdn.staticmoly.me/ads/be/99/ads.js"]:remove() vidmoly.to,vidmoly.me##+js(set-constant, _0x5aa6, []) vidmoly.to,vidmoly.me##+js(aopr, _0x5aa6) vidmoly.to,vidmoly.me##+js(aopw, _0x5aa6) vidmoly.to,vidmoly.me##+js(set-constant, window.adsbygoogle, false) vidmoly.to,vidmoly.me##+js(trusted-replace-node-text, script, /var vmAdBlocked\s?=\s?\(document\.getElementById\(['"]vidmolyadblocktest['"]\)\)\s?\?\s?0\s?:\s?1;/gm, var vmAdBlocked = 0;) vidmoly.to,vidmoly.me##+js(set-constant, vmAdBlocked, 0) vidmoly.to,vidmoly.me##+js(no-setInterval-if, window.ab3Interval) vidmoly.to,vidmoly.me##+js(no-setInterval-if, window.ab4Interval) vidmoly.to,vidmoly.me##+js(set-constant, window.ab3Interval, noopFunc) vidmoly.to,vidmoly.me##+js(set-constant, window.ab4Interval, noopFunc) vidmoly.to,vidmoly.me##+js(trusted-replace-node-text, script, /adBlockControl\(\d\)/gm, "") ! vmAdBlocked1 in the following rule is passed as a parameter to the adBlockControl() function. vidmoly.to,vidmoly.me##+js(set-constant, vmAdBlocked1, 0) vidmoly.to,vidmoly.me##+js(trusted-replace-node-text, script, /window\.abLoad\s?=\s?(true|1)/gm, window.abLoad = false) vidmoly.to,vidmoly.me##+js(set-constant, window.abLoad, false) ! Set the var abXStarted variables to 1 not 0 since 1 is subtracted from them before the check for 0 value. vidmoly.to,vidmoly.me##+js(trusted-replace-node-text, script, /var ab2Started\s?=\s?\(\d\s?\*\s?\d+)\s?+\s?\d;/gm, var ab2Started = 1;) vidmoly.to,vidmoly.me##+js(trusted-replace-node-text, script, /var ab3Started\s?=\s?\(\d\s?\*\s?\d+)\s?+\s?\d;/gm, var ab3Started = 1;) vidmoly.to,vidmoly.me##+js(trusted-replace-node-text, script, /var ab4Started\s?=\s?\(\d\s?\*\s?\d+)\s?+\s?\d;/gm, var ab3Started = 1;) vidmoly.to,vidmoly.me##+js(set-constant, vvad, 1) vidmoly.to,vidmoly.me##+js(set-constant, adb, 0) vidmoly.to,vidmoly.me##+js(set-constant, window.cRAds, false) vidmoly.to,vidmoly.me##+js(trusted-replace-node-text, script, /adb\s?=\s?1;/gm, adb=0;) vidmoly.to,vidmoly.me##div[id="metric_load2"]:remove() vidmoly.to,vidmoly.me##div[id="metric_load3"]:remove() vidmoly.to,vidmoly.me##+js(remove-node-text, script, /function\s?vopes2\(\)/gm) vidmoly.to,vidmoly.me##:xpath(//script[contains(text(), 'vopes2()')]):remove() vidmoly.to,vidmoly.me##+js(set-constant, vopes2, noopFunc) vidmoly.to,vidmoly.me##+js(aeld, onclick, vopes2) !vidmoly.to,vidmoly.me##+js(acs, vopes2) vidmoly.to,vidmoly.me##img[id="vope"]:remove() !vidmoly.to,vidmoly.me##img[id="vope"][onclick]:remove-attr(onclick) vidmoly.to,vidmoly.me##+js(set-constant, duration_second, 0) ! Uncaught TypeError: cannot declare global binding 'adsBlocked': property must be configurable or both writable and enumerable !vidmoly.to,vidmoly.me##+js(set-constant, adsBlocked, noopFunc) vidmoly.to,vidmoly.me##+js(trusted-replace-node-text, script, /post\(block\);/gm, null;) vidmoly.to,vidmoly.me##+js(set-constant, blocked, false, stay) vidmoly.to,vidmoly.me##+js(set-constant, block, 0, stay) vidmoly.to,vidmoly.me##+js(noeval-if, /eblock\.php/) vidmoly.to,vidmoly.me##+js(noeval-if, /isSandboxed/) ! TODO: Are any of the following rules for vidmoly.to/vidmoly.me still necessary? vidmoly.to,vidmoly.me##+js(trusted-set-constant, testURL, https://www.google.com) vidmoly.to,vidmoly.me##+js(set-constant, devtoolsDetector, {}) vidmoly.to,vidmoly.me##+js(set-constant, devtoolsDetector.launch, noopFunc) vidmoly.to,vidmoly.me##+js(set-constant, wdsc3, noopFunc) vidmoly.to,vidmoly.me##div[class="afs_ads ad-placement"]:remove() vidmoly.to,vidmoly.me##div[id="lo_metric"]:remove() ! Uncaught TypeError: cannot declare global binding 'lo_metric': property must be configurable or both writable and enumerable !vidmoly.to,vidmoly.me##+js(set-constant, lo_metric, noopFunc) vidmoly.to,vidmoly.me##+js(no-setInterval-if, lo_metric) vidmoly.to,vidmoly.me##div[class*="video_ad"]:remove() vidmoly.to,vidmoly.me###btn_download:remove-attr(disabled) vidmoly.to,vidmoly.me##a[href*="://vidmoly.me/dl/"]:remove() vidmoly.to,vidmoly.me##a[href*="://vidmoly.to/dl/"]:remove() vidmoly.to,vidmoly.me##+js(no-setInterval-if, igetlang) vidmoly.to,vidmoly.me###vidmolyadblocktest:remove() !vidmoly.to,vidmoly.me##+js(no-setInterval-if, dlwed) !vidmoly.to,vidmoly.me##+js(no-setInterval-if, igetdl) vidmoly.to,vidmoly.me##+js(set-constant, embed_vid, noopFunc) vidmoly.to,vidmoly.me##+js(remove-node-text, script, /function embed_vid\(id\)\s?\{/gm) vidmoly.to,vidmoly.me##div[class="contentFooterLeft"]:has(span[class="encrypted"]):remove() ! Do NOT remove the adsBox or the adblock detection script will trigger. !vidmoly.to,vidmoly.me##div[class="adsBox"]:remove() vidmoly.to,vidmoly.me##div[id="vplayer"]:style(position: static !important; --aspect-ratio: 16/9 !important; opacity:1 !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100vw !important; width: 100vw !important; max-height: 100vh !important; height: 100vh !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) ! The following rules contains the element with the jwplayer video player classes in it. vidmoly.to,vidmoly.me##div[id="vplayer"][class*="vjs-controls-disabled"]:remove-class(vjs-controls-disabled) vidmoly.to,vidmoly.me##+js(remove-class, vjs-controls-disabled, div[id="vplayer"][class*="vjs-controls-disabled"]) vidmoly.to,vidmoly.me##div[id="vplayer"][class*="iol-hide-ad-play-button"]:remove-class(iol-hide-ad-play-button) vidmoly.to,vidmoly.me##+js(remove-class, iol-hide-ad-play-button, div[id="vplayer"][class*="iol-hide-ad-play-button"]) vidmoly.to,vidmoly.me##+js(add-class, vjs-controls-enabled, div[id="vplayer"]) vidmoly.to,vidmoly.me##+js(add-class, vjs-has-mouse, div[id="vplayer"]) vidmoly.to,vidmoly.me##+js(add-class, vjs-mouse, div[id="vplayer"]) vidmoly.to,vidmoly.me##+js(add-class, vjs-workinghover, div[id="vplayer"]) vidmoly.to,vidmoly.me##+js(add-class, vjs-contextmenu, div[id="vplayer"]) vidmoly.to,vidmoly.me##+js(add-class, vjs-contextmenu-ui, div[id="vplayer"]) vidmoly.to,vidmoly.me##+js(add-class, vjs-ad-controls, div[id="vplayer"]) vidmoly.to,vidmoly.me##+js(add-class, vjs-player-info, div[id="vplayer"]) vidmoly.to,vidmoly.me##+js(add-class, vjs-dock, div[id="vplayer"]) vidmoly.to,vidmoly.me##+js(add-class, vjs-plugins-ready, div[id="vplayer"]) vidmoly.to,vidmoly.me##+js(add-class, vjs-errors, div[id="vplayer"]) vidmoly.to,vidmoly.me##+js(add-class, jw-flag-cast-available, div[id="vplayer"]) vidmoly.to,vidmoly.me##+js(add-class, jw-stretch-uniform, div[id="vplayer"]) !vidmoly.to,vidmoly.me##+js(add-class, jw-flag-aspect-mode, div[id="vplayer"]) ! TODO: use the following rule to add the vjs-layout-large class? Is it only for desktop PC and large tablets? !vidmoly.to,vidmoly.me##+js(add-class, vjs-layout-large class, div[id="vplayer"]) vidmoly.to,vidmoly.me##+js(trusted-set-attr, div[id="vplayer"], crossorigin, anonymous) vidmoly.to,vidmoly.me##+js(trusted-set-attr, div[id="vplayer"], preload, metadata) !vidmoly.to,vidmoly.me##+js(trusted-set-attr, div[id="vplayer"], preload, none) !vidmoly.to,vidmoly.me##+js(trusted-set-attr, div[id="vplayer"], preload, auto) vidmoly.to,vidmoly.me##+js(trusted-set-attr, div[id="vplayer"], playsinline, true) !vidmoly.to,vidmoly.me##+js(trusted-set-attr, div[id="vplayer"], playsinline, playsinline) vidmoly.to,vidmoly.me##div[id="vplayer"][class*="vjs-vpaid-controls-disabled"]:remove-class(vjs-vpaid-controls-disabled) vidmoly.to,vidmoly.me##+js(remove-class, vjs-vpaid-controls-disabled, div[id="vplayer"][class*="vjs-vpaid-controls-disabled"]) vidmoly.to,vidmoly.me##div[id="vplayer"][class*="jw-no-focus"]:remove-class(jw-no-focus) vidmoly.to,vidmoly.me##+js(remove-class, jw-no-focus, div[id="vplayer"][class*="jw-no-focus"]) ! TODO: remove vjs-ima3-html5 since it is for video ads? vidmoly.to,vidmoly.me##div[id="vplayer"][class*="vjs-ima3-html5"]:remove-class(vjs-ima3-html5) vidmoly.to,vidmoly.me##+js(remove-class, vjs-ima3-html5, div[id="vplayer"][class*="vjs-ima3-html5"]) ! TODO: remove vjs-ima3-not-playing-yet? vidmoly.to,vidmoly.me##div[id="vplayer"][class*="vjs-ima3-not-playing-yet"]:remove-class(vjs-ima3-not-playing-yet) vidmoly.to,vidmoly.me##+js(remove-class, vjs-ima3-not-playing-yet, div[id="vplayer"][class*="vjs-ima3-not-playing-yet"]) ! The following style needs "position: fixed !important;" or any position other than "static" so that the video player viewport is flush with the left edge of the web page, i.e. "left: 0" is not ignored. vidmoly.to,vidmoly.me##iframe[src*="/embed-"]:style(position: fixed !important; overflow: auto !important; --aspect-ratio: 16/9 !important; left: 0px !important; right: 0px !important; top: 0px !important; bottom: 0px !important; opacity:1 !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; user-select: all !important; pointer-events: all !important;) vidmoly.to,vidmoly.me##+js(trusted-set-attr, iframe[src*="/embed-"], height, 100%) vidmoly.to,vidmoly.me##+js(trusted-set-attr, iframe[src*="/embed-"], marginwidth, 0) vidmoly.to,vidmoly.me##+js(trusted-set-attr, iframe[src*="/embed-"], marginheight, 0) vidmoly.to,vidmoly.me##+js(trusted-set-attr, iframe[src*="/embed-"], autoplay, yes) vidmoly.to,vidmoly.me##+js(trusted-set-attr, iframe[src*="/embed-"], allowtransparency, true) !vidmoly.to,vidmoly.me##+js(trusted-set-attr, iframe[src*="/embed-"], referrerpolicy, origin) vidmoly.to,vidmoly.me##+js(trusted-set-attr, iframe[src*="/embed-"], referrerpolicy, unsafe-url) vidmoly.to,vidmoly.me##+js(trusted-set-attr, iframe[src*="/embed-"], oallowfullscreen, true) vidmoly.to,vidmoly.me##+js(trusted-set-attr, iframe[src*="/embed-"], msallowfullscreen, true) vidmoly.to,vidmoly.me##+js(trusted-set-attr, iframe[src*="/embed-"], allow, picture-in-picture; autoplay; fullscreen; encrypted-media; clipboard-write; accelerometer; gyroscope; web-share;) vidmoly.to,vidmoly.me##+js(trusted-set-attr, iframe[src*="/embed-"], seamless, seamless) !vidmoly.to,vidmoly.me##+js(trusted-set-attr, iframe[src*="/embed-"], loading, eager) ! TODO: Setting the sandbox attribute may break the video player. !vidmoly.to,vidmoly.me##+js(trusted-set-attr, iframe[src*="/embed-"], sandbox, allow-pointer-lock; allow-top-navigation; allowTransparency; allow-modals; allow-scripts; allow-same-origin; allow-popups; allow-popups-to-escape-sandbox; allow-storage-access-by-user-activation; allow-forms) ! The following attributes are already set to these values by the web page. vidmoly.to,vidmoly.me##+js(trusted-set-attr, iframe[src*="/embed-"], width, 100%) vidmoly.to,vidmoly.me##+js(trusted-set-attr, iframe[src*="/embed-"], frameborder, 0) vidmoly.to,vidmoly.me##+js(trusted-set-attr, iframe[src*="/embed-"], scrolling, no) !vidmoly.to,vidmoly.me##+js(trusted-set-attr, iframe[src*="/embed-"], scrolling, true) vidmoly.to,vidmoly.me##+js(trusted-set-attr, iframe[src*="/embed-"], allowfullscreen, true) !vidmoly.to,vidmoly.me##+js(trusted-set-attr, iframe[src*="/embed-"], allowfullscreen, allowfullscreen) vidmoly.to,vidmoly.me##+js(trusted-set-attr, iframe[src*="/embed-"], webkitallowfullscreen, true) vidmoly.to,vidmoly.me##+js(trusted-set-attr, iframe[src*="/embed-"], mozallowfullscreen, true) ! get to vmring.cc returns "on" ||vmring.cc^* ||subscriptioneccentric.com^* ||tyranbrashore.com^* ||russellseemslept.com^* ||sootconform.com^* ||rusticsnoop.com^* ||pl18044471.highrevenuegate.com^* ||www.vycyqxnbrwz.com^* ||vycyqxnbrwz.com^* streamvid.net##nav[class="navbar-bottom"]:style(position: static !important;) ! left: -15vw !important; right: 0px !important; is needed to move the video player to the left-most edge of the browser viewport. ! use width of 98vw since 99vw is a little too wide. streamvid.net##div[id="vjsplayer"]:style(left: -15vw !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100vw !important; width: 98vw !important; max-height: 100vh !important; height: 99vh !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) streamvid.net##div[id="vjsplayer"][class*="vjs-controls-disabled"]:remove-class(vjs-controls-disabled) streamvid.net##+js(remove-class, vjs-controls-disabled, div[id="vjsplayer"][class*="vjs-controls-disabled"]) streamvid.net##+js(add-class, vjs-controls-enabled, div[id="vjsplayer"]) streamvid.net##+js(trusted-set-attr, div[id="vjsplayer"], crossorigin, anonymous) streamvid.net##+js(trusted-set-attr, div[id="vjsplayer"], preload, metadata) streamvid.net##video[id="vjsplayer_html5_api"]:style(left: 0px !important; right: 0px !important; padding: 0 !important; margin: 0 !important; border: none !important; border-width: 0 !important; max-width: 100% !important; width: 100% !important; max-height: 100% !important; height: 100% !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) streamvid.net##video[id="vjsplayer_html5_api"][disablepictureinpicture]:remove-attr(disablepictureinpicture) streamvid.net##+js(remove-attr, disablepictureinpicture, video[id="vjsplayer_html5_api"][disablepictureinpicture]) streamvid.net##video[id="vjsplayer_html5_api"][disableremoteplayback]:remove-attr(disableremoteplayback) streamvid.net##+js(remove-attr, disableremoteplayback, video[id="vjsplayer_html5_api"][disableremoteplayback]) streamvid.net##+js(trusted-set-attr, video[id="vjsplayer_html5_api"], data-autoplay-mute-lock, false) streamvid.net##+js(trusted-set-attr, video[id="vjsplayer_html5_api"], x-webkit-airplay, allow) streamvid.net##+js(trusted-set-attr, video[id="vjsplayer_html5_api"], controls, true) ! The following attributes are already set by the page as normal. streamvid.net##+js(trusted-set-attr, video[id="vjsplayer_html5_api"], crossorigin, anonymous) streamvid.net##+js(trusted-set-attr, video[id="vjsplayer_html5_api"], preload, metadata) streamvid.net##+js(trusted-set-attr, video[id="vjsplayer_html5_api"], playsinline, true) streamvid.net##+js(trusted-set-attr, video[id="vjsplayer_html5_api"], webkit-playsinline, true) streamvid.net##div[style="width:100%;height:100%;position:fixed;top:0;left:0;z-index:9999999;display:none;"]:remove() streamvid.net##div[id="adbd"]:remove() streamvid.net##div[id="histats_counter"]:remove() streamvid.net##div[id="alert_msg"]:remove() streamvid.net##div[class*="google-ad"]:remove() streamvid.net##div[class="vjs-poster"]:remove() ! TODO: Does vyzumx in the following two rules ever change? streamvid.net##div[class="vyzumxOverlay"]:remove() streamvid.net##iframe[data-vyzumx-handled="1"]:remove() streamvid.net##iframe[src="about:blank"]:remove() streamvid.net##iframe[data-aa]:remove() streamvid.net##iframe[src^="https://creative.xlirdr.com/widgets/"]:remove() streamvid.net##iframe[src^="https://chaturbate.com/in/"]:remove() streamvid.net##div[class="row"] > div[class="col-12"]:style(min-height: fit-content !important;) ! TODO: Does the id name in the following rule change? streamvid.net##iframe[id="mlptby"]:remove() streamvid.net##input[aria-label="play"]:remove-attr(disabled) streamvid.net##+js(remove-attr, disabled, input[aria-label="play"]) streamvid.net##a[id="dl_versions_btn"]:remove() streamvid.net##div[id="dl_versions"]:style(display: block !important;) streamvid.net##span[class="material-icons-two-tone"]:has-text(cloud_download):style(display: block !important;) streamvid.net###cxc:remove() streamvid.net##span[id="countdown_str"]:remove() streamvid.net##+js(acs, /_tmkxyh/) streamvid.net##+js(trusted-replace-node-text, script, /\|360\|HEIGHT\|640\|WIDTH\|/gm, |100%|HEIGHT|100%|WIDTH|) streamvid.net##+js(remove-node-text, script, /clickplayer\.addEventListener/gm) streamvid.net##+js(aeld, click, clickplayer) !streamvid.net##+js(aeld, click) streamvid.net##+js(aopr, clickplayer) streamvid.net##+js(aopw, clickplayer) streamvid.net##+js(set-constant, clicked, 3) streamvid.net##+js(set-constant, hab1, noopFunc) streamvid.net##+js(remove-node-text, script, /function hab1\(\)\s?\{/gm) streamvid.net##+js(set-constant, countDown, noopFunc) streamvid.net##+js(no-setTimeout-if, /countDown\(\)/) streamvid.net##+js(set-constant, num, 0) streamvid.net##+js(remove-node-text, script, /setTimeout\("countDown\(\)"/gm) streamvid.net##+js(set-constant, vvad, 1) streamvid.net##+js(set-constant, adb, 0) streamvid.net##+js(set-constant, cRAds, false) streamvid.net##+js(set-constant, window.cRAds, false) streamvid.net##+js(set-constant, googleAd, false) streamvid.net##+js(trusted-replace-node-text, script, /\|360\|HEIGHT\|640\|WIDTH\|/gm, |100%|HEIGHT|100%|WIDTH|) streamvid.net##^script:has-text(/popundersPerIP/):remove() streamvid.net##+js(remove-node-text, script, /popundersPerIP/gm) streamvid.net##script[id="aclib"]:remove() streamvid.net##+js(acs, /aclib\.runPop\(/) streamvid.net##+js(remove-node-text, script, /aclib\.runPop/gm) streamvid.net##:xpath(//script[contains(text(), 'aclib.runPop')]):remove() streamvid.net##^script:has-text(/debugger;/):remove() streamvid.net##+js(remove-node-text, script, /debugger;/gm) !streamvid.net##+js(trusted-replace-node-text, script, /debugger;/gm, "") streamvid.net##:xpath(//script[contains(text(), 'debugger;')]):remove() ! TODO: Really abort on debugger as that is what the debugger statement already does? streamvid.net##+js(acs, /debugger;/) ! TODO: Use the following two rules? !streamvid.net##+js(trusted-replace-node-text, script, /\|googleAd\|hab1\|cRAds\|/gm, |null|null|null|) !streamvid.net##+js(trusted-replace-node-text, script, /\|x2ok\|vvad\|/gm, |x2ok|null|) ! TODO: Are the following 15 rules still relevant? streamvid.net##+js(set-constant, xRds, false) streamvid.net##+js(aopr, globalThis) streamvid.net##+js(aopw, globalThis) streamvid.net##+js(acs, s3ii, globalThis) streamvid.net##+js(remove-node-text, script, /s3ii\[\d+\]\s?=\s?\(function\(\)\s?\{/gm) streamvid.net##+js(aopr, s3ii) streamvid.net##+js(aopw, s3ii) streamvid.net##+js(aopr, __webpack_exports__) streamvid.net##+js(aopw, __webpack_exports__) streamvid.net##^script:has-text(__webpack_exports__):remove() streamvid.net##+js(remove-node-text, script, /__webpack_exports__/gm) streamvid.net##+js(set-constant, _0x3538e, []) streamvid.net##+js(abort-on-property-write, _0x3538e) streamvid.net##+js(abort-on-property-read, _0x3538e) ! do not block eval as the script that implements the player is an eval function. ! That script also disables the developer tools. !streamvid.net##+js(noeval) !streamvid.net##+js(noeval-if) ||streamvid.net/js/pop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||streamvid.net/videojs/plugins/vast.vpaid.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! no third-party popups from vidsrc domains *$3p,popup,domain=streamvid.net !*$3p,script,domain=streamvid.net /^https?:\/\/(?!-)[A-Za-z0-9-]+([\-\.]{1}[A-Za-z0-9]+)*\.[A-Za-z]{2,6}\/?\S*/$3p,script,domain=streamvid.net !||xs.doweralrostra.com^* ||doweralrostra.com^* ||inferiorlove.com^* ||www.ebmxebvnfdmdr.com^* ||www.mjoijlogwqtgbk.com^* ||www.ellipticaldatabase.pro^* ||autchoog.net^* ||crisp-freedom.com^* ||extractionatticpillowcase.com^* !||sefsdvc.com/en/us/media/dynamic/id$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sefsdvc.com^* ||t.irtyf.com^* ||t.antfa.link^* ||ak.oalsauwy.net^* ||deneorphan.com^* ||d6deij4k3ikap.cloudfront.net^* ||trikerboughs.com^* ||romivapsi.com^* ||track.dalyai.com^* ||heinndoorh.com^* ||ethecityonata.com^* ||alloverwiththinl.com^* ||d1azpphj80lavy.cloudfront.net^* ||thefacux.com^* ||rural-patience.com^* ||www.simplistic-potato.pro^* ||noofigat.net^* ||rdtk.chromnius-secure.com^* ||ggqppaiglthoq.com^* ||nancontrast.com^* !||cdn.yourwebbars.com/sb/interstitial/software/flash/multi/2/index.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||adblock-one-protection.com^* streamhide.to##div[id="adbd"]:remove() streamhide.to##+js(set-constant, _ASO, {}) streamhide.to##+js(set-constant, _ASO.PushOptions, {}) streamhide.to##+js(aopr, _ASO.PushOptions) streamhide.to##+js(aopw, _ASO.PushOptions) streamhide.to##ins[class="aso-zone"][data-zone]:remove() streamhide.to##:xpath("/html/body/div"):remove() ||streamhide.com/js/dnsads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||media.dalyai.com/js/code.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||track.dalysh.com^* !||targetemsecure.blob.core.windows.net/138526d1-8ff9-4de4-b84a-3a11ec020ede/138526d18ff94de4b84a3a11ec020ede_1.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||targetemsecure.blob.core.windows.net^*$3p,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||pl16164575.highrevenuegate.com^* ||dxj6cq8hj162l.cloudfront.net^* ||www.deqkmzurltovbk.com^* ||genetorhebe.website^* ||redeemlesson.com^* ||streampiay.fun/js/adverts-1.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||jentent.streampiay.fun/jsa.hh$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||jentent.streampiay.fun/apw.hh$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! blocking drh.hh removes the embedded video player !||jentent.streampiay.fun/drh.hh$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css streampiay.fun##iframe[id="d0acf"]:remove-class(ad) streampiay.fun##+js(set-constant, isAdb, false) !streampiay.fun##+js(set-constant, script.src, "", end) streampiay.fun##+js(set-constant, script.src, "", complete) streampiay.fun##+js(aopr, script.src) streampiay.fun##+js(aopw, script.src) streampiay.fun##+js(aopr, isAdb) streampiay.fun##+js(aopw, isAdb) ! blocking these keyword in a script prevents the video player from activating. !streampiay.fun##+js(acs, atob, decodeURIComponent) streampiay.fun##input[aria-label="play"]:remove-attr(disabled) streampiay.fun##div[class*="jw-logo-top-right"]:remove() ! The following rule prevents the video player from being clickable/activating. !streampiay.fun##span[id="vplayer"]:remove() streampiay.fun##div[id="uverlay"]:style(display: block !important;) ||www.bxczchdxynw.com^* ||www.vsyaiejmfooba.com^* ||www.hxgqqxopf.com^* ||www.ulrzovfukgkljw.com^* ||www.rsntcgoowyxsu.com^* ||www.crpcruynxxc.com^* ||somethingprecursorfairfax.com^* ||uenmsnlh.com^* ||revolvemockerycopper.com^* ||ku2d3a7pa8mdi.com^* ||replacementreluctance.com^* ||alas4kanmfa6a4mubte.com^* ||ajorinryesopert.com^* ||llyighaboveth.com^* ||pringed.space^* ||gqhoosuaqwmqegy.com^* ||reedthatm.biz^* ||performance.radar.cloudflare.com/beacon.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||predictiondexchange.com/jump/next.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||predictiondexchange.com^* ||medicationneglectedshared.com^* ||treatyaccuserevil.com^* ||breakfastinvitingdetergent.com^* ||acylbirri.digital^* ||hewalleges.guru^* ||hallucinatebotany.com^* ||shredvealdone.com^* ||recanesjurel.com^* ||go.adstico.io^* ||q.popbutler.com^* ||ak.phumpauk.com^* !/^https?:\/\/((?!-)[A-Za-z0-9-]+([\-\.]{1}))?mixdrop(21)?\.(ps|co|to|ag|si|net)\/js\/script\.min\.js\S*/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !/^https?:\/\/((?!-)[A-Za-z0-9-]+([\-\.]{1}))?mixdrop(21)?\.(ps|co|to|ag|si|net)\/xvideo-js\.js\S*/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css /^https?:\/\/((?!-)[A-Za-z0-9-]+([\-\.]{1}))?mixdrop(21)?\.(ps|co|to|ag|si|net)\/js\/ads\.js\S*/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css /^https?:\/\/((?!-)[A-Za-z0-9-]+([\-\.]{1}))?mixdrop(21)?\.(ps|co|to|ag|si|net)\/sw\.js\S*/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css /^https?:\/\/((?!-)[A-Za-z0-9-]+([\-\.]{1}))?mixdrop(21)?\.(ps|co|to|ag|si|net)\/xads\.js\S*/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !*$3p,script,denyallow=www.gstatic.com|www.google.com|code.jquery.com|mixdrop.ps|mixdrop.si|mixdrop.co|mixdrop.ag|mixdrop.to|mixdrop21.net,domain=mixdrop.ps|mixdrop.si|mixdrop.co|mixdrop.ag|mixdrop.to|mixdrop21.net /^https?:\/\/(?!-)[A-Za-z0-9-]+([\-\.]{1}[a-z0-9]+)*\.[A-Za-z]{2,6}\/?\S*/$3p,script,denyallow=www.gstatic.com|www.google.com|code.jquery.com|mixdrop.ps|mixdrop.si|mixdrop.co|mixdrop.ag|mixdrop.to|mixdrop21.net,domain=mixdrop.ps|mixdrop.si|mixdrop.co|mixdrop.ag|mixdrop.to|mixdrop21.net mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##body[onclick]:remove-attr(onclick) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##div[id="rn_native_bqupr"]:remove() mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##^script:has-text(dtnoppu):remove() mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(remove-node-text, script, /dtnoppu/gm) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##:xpath(//script[contains(text(), 'dtnoppu')]):remove() mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##^script:has-text(/popundersPerIP/):remove() mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(remove-node-text, script, /popundersPerIP/gm) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##:xpath(//script[contains(text(), 'popundersPerIP')]):remove() mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##^script:has-text(/adcashMacros/):remove() mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(remove-node-text, script, /adcashMacros/gm) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##:xpath(//script[contains(text(), 'adcashMacros')]):remove() mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##^script:has-text(/injectP2\(\)/):remove() mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(remove-node-text, script, /injectP2\(\)/gm) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##:xpath(//script[contains(text(), 'injectP2')]):remove() mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##^script:has-text(/plantinscription\.com/i):remove() mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(remove-node-text, script, /plantinscription\.com/igm) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##:xpath(//script[contains(text(), 'plantinscription.com')]):remove() mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##video[id="videojs"]:style(padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; width: 100vw !important; height: 100vh !important; user-select: all !important; pointer-events: all !important;) !mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##video[id="videojs"]:style(left: 0px !important; right: 0px !important; padding: 0 !important; margin: 0 !important; border: none !important; border-width: 0 !important; max-width: 100% !important; width: 100% !important; max-height: 100% !important; height: 100% !important;user-select: all !important; pointer-events: all !important;) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##video[id="videojs"][disablepictureinpicture]:remove-attr(disablepictureinpicture) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(remove-attr, disablepictureinpicture, video[id="videojs"][disablepictureinpicture]) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##video[id="videojs"][disableremoteplayback]:remove-attr(disableremoteplayback) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(remove-attr, disableremoteplayback, video[id="videojs"][disableremoteplayback]) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(trusted-set-attr, video[id="videojs"], data-autoplay-mute-lock, false) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(trusted-set-attr, video[id="videojs"], x-webkit-airplay, allow) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(trusted-set-attr, video[id="videojs"], controls, true) ! The following attributes are already set by the page as normal. mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(trusted-set-attr, video[id="videojs"], crossorigin, anonymous) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(trusted-set-attr, video[id="videojs"], preload, metadata) !mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(trusted-set-attr, video[id="videojs"], preload, none) !mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(trusted-set-attr, video[id="videojs"], preload, auto) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(trusted-set-attr, video[id="videojs"], playsinline, true) !mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(trusted-set-attr, video[id="videojs"], playsinline, playsinline) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(trusted-set-attr, video[id="videojs"], webkit-playsinline, true) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##iframe[sandbox][onerror]:remove() mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##iframe[src^="https://soliads."]:remove() mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(set-constant, adblock, 0) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(set-constant, blockAB, false) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(set-constant, popundersPerIP, 0) ! MDCore is a function defined in https://mixdrop.co/player/videoplayer.min.js ! Do NOT redefine MDCore because it has useful functions like MDCore.addSub() to load subtitles. !mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(set-constant, MDCore, noopFunc) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(set-constant, MDCore.blockAB, false) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(set-constant, MDCore.adblock, 0) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(set-constant, wpn63s, noopFunc) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(no-window-open-if) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(abort-current-script, fromCharCode, charCodeAt) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(abort-current-script, atob, decodeURIComponent) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(abort-current-script, mp0p_counter) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(abort-current-script, lkid) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(abort-current-script, dynamicadx) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(abort-current-script, popups) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(abort-current-script, gearbest) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(abort-current-script, pmzer) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(abort-on-property-write, dynamicadx) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(abort-on-property-read, dynamicadx) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(abort-on-property-write, popups) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(abort-on-property-read, popups) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(abort-on-property-write, gearbest) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(abort-on-property-read, gearbest) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(abort-on-property-write, pmzer) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(abort-on-property-read, pmzer) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(abort-on-property-write, lkid) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(abort-on-property-read, lkid) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(abort-on-property-write, mp0p_counter) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(abort-on-property-read, mp0p_counter) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(abort-on-property-write, rn_native_bqupr) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(abort-on-property-read, rn_native_bqupr) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(abort-on-property-write, NativeAd) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(abort-on-property-read, NativeAd) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(acs, dtnoppu) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(aopw, lastTimestamp) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(aopr, lastTimestamp) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(aopw, wpn63s) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(aopr, wpn63s) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(aeld, click, /function\(g\)/) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(aeld, click, /function\(a\)/) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(set-constant, adcashMacros, {}) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(abort-on-property-write, adcashMacros) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(abort-on-property-read, adcashMacros) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(set-constant, window.plausible, []) !mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(no-setInterval-if, /^r/) ! TODO: The following rule prevents native code from running. !mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(no-setInterval-if, /function\(\)/) ! The following rule does NOT prevent the video from playing and doesn't prevent the native code functions from executing. ! TODO: It does prevent ChromecastSessionManager.isChromecastAPIAvailable and enableChromecast(player, options) though. !mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(no-setInterval-if, ![native code]) mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(no-setInterval-if, /decodeURIComponent/) ! Do NOT remove the inline scripts with "function(p,a,c,k,e,d)" using any of the following three rules or the videos will not load and play. !mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##^script:has-text(/function\(p,a,c,k,e,d\)/):remove() !mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##:xpath(//script[contains(text(), 'function(p,a,c,k,e,d)')]):remove() ! The commas in the following remove-node-text rule must be escaped? !mixdrop.ps,mixdrop.si,mixdrop.co,mixdrop.ag,mixdrop.to,mixdrop21.net##+js(remove-node-text, script, /function\(p\,a\,c\,k\,e\,d\)/gm) ||mdstats.info/js/script.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||mdstats.info/api/event$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||soliads.net^* ||dd.tittyptinoid.com^* ||ibrapush.com^* ||inspirecarriermagnetic.com^* ||ryepublisher.com^* ||attepigom.com^* ||gulsyangtao.guru^* ||ossgogoaton.com^* ||q.reyden-x.com^* ||loosenoutfit.com^* ||careless-category.pro^* ||static.addtoany.com/menu/locale/ru.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vidoza.net/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vidoza.net/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vidoza.net/js/pop.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css vidoza.net,videzz.net##+js(set-constant, ownerAdblockLock, 0) vidoza.net,videzz.net##^script:has-text(GoogleAnalyticsObject):remove() vidoza.net,videzz.net##+js(remove-node-text, script, /GoogleAnalyticsObject/gm) vidoza.net,videzz.net##+js(acs, GoogleAnalyticsObject) vidoza.net,videzz.net##^script:has-text(gtm.):remove() vidoza.net,videzz.net##+js(remove-node-text, script, /gtm\./gm) vidoza.net,videzz.net##+js(remove-node-text, script, /\.push\(\{['"]gtm\.start['"]/gm) vidoza.net,videzz.net##+js(acs, gtm., www.googletagmanager.com) vidoza.net,videzz.net##+js(acs, /Metrika/i) ! TODO: ^script doesn't work with attributes since checked before DOM created? vidoza.net,videzz.net##script[data-spots][data-tag][data-subid1]:remove() vidoza.net,videzz.net##^script:has-text(window.asgvastcnf_overlay):remove() vidoza.net,videzz.net##+js(remove-node-text, script, /window\.asgvastcnf_overlay/gm) vidoza.net,videzz.net##+js(set-constant, window.asgvastcnf_overlay, {}) vidoza.net,videzz.net##+js(acs, window.asgvastcnf_overlay) vidoza.net,videzz.net##+js(aopw, window.asgvastcnf_overlay) vidoza.net,videzz.net##+js(aopr, window.asgvastcnf_overlay) vidoza.net,videzz.net##+js(trusted-set-constant, a2a_config.locale, "en") vidoza.net,videzz.net##+js(set-constant, xRds, false) vidoza.net,videzz.net##+js(set-constant, cRAds, false) vidoza.net,videzz.net##div[class="prevent-first-click"]:remove-attr(onclick) vidoza.net,videzz.net##div[class="prevent-first-click"]:remove() vidoza.net,videzz.net##+js(set-constant, VIDOZA_PLAY_AND_DOWNLOAD, true) vidoza.net,videzz.net##iframe[src*="//vz.7vid.net/api/spots/"]:remove() vidoza.net,videzz.net##iframe[src^="https://www.googletagmanager.com/"]:remove() vidoza.net,videzz.net##div[id='ov4166']:remove() vidoza.net,videzz.net##div[id='pusl_0']:remove() vidoza.net,videzz.net##div[id$="-ab-detector"]:remove() vidoza.net,videzz.net##a[id="__bgd_link"]:remove() vidoza.net,videzz.net##+js(remove-node-text, script, /var ael\s?=\s?document\.getElementById\('__bgd_link'\)/gm) vidoza.net,videzz.net##+js(aeld, install) vidoza.net,videzz.net##+js(aeld, push) vidoza.net,videzz.net##+js(aeld, pushsubscriptionchange) vidoza.net,videzz.net##+js(aeld, notificationclick) ! from ublock Origin main list: vidoza.net,videzz.net##+js(noeval) vidoza.net,videzz.net##+js(no-window-open-if) !vidoza.net,videzz.net##.in-block:remove() !vidoza.net,videzz.net###plo_0:remove() !vidoza.net,videzz.net##[id*="ScriptRoot"]:remove() !vidoza.net,videzz.net##.simpleToast:remove() !vidoza.net,videzz.net##.download-green:remove() !||vz.7vid.net/api/users/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||vz.7vid.net/api/settings/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vz.7vid.net/api/spots/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vz.7vid.net/api/click/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vz.7vid.net/LrfK7A3.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||vd.7vid.net/lx4oag1.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||vd.7vid.net/B5s6up1.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||7vid.net/videoads.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! blocking vz.7vid.net and/or vd.7vid.net entirely may prevent videos from playing !||vz.7vid.net^* !||vd.7vid.net^* ! // not a typo on my part ||7vid.net//ajax.php?p=stats$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! just in case website corrects later ||7vid.net/ajax.php?p=stats$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css 7vid.net##+js(set-constant, ya_counter, {}) 7vid.net##div[id="video-js"]:remove-class(vjs-controls-disabled) 7vid.net##div[class="preroll-ad-url"]:remove() ||desperationembassy.com^* thomasalthoughhear.com,sandrataxeight.com,voe.sx,scatch176duplicities.com,vincentincludesuccessful.com##+js(remove-cookie, /TM_fire\w+/) thomasalthoughhear.com,sandrataxeight.com,voe.sx,scatch176duplicities.com,vincentincludesuccessful.com##+js(set-constant, adbStatus, 0) thomasalthoughhear.com,sandrataxeight.com,voe.sx,scatch176duplicities.com,vincentincludesuccessful.com##+js(trusted-replace-node-text, script, /\+\s?adbStatus\s?/gm, + 0 ) thomasalthoughhear.com,sandrataxeight.com,voe.sx,scatch176duplicities.com,vincentincludesuccessful.com##+js(trusted-replace-node-text, script, /var adbStatus\s?=\s?!\(typeof twttr\s?===\s?['"]object['"]\s?\&\&\s?twttr\.hasOwnProperty\(['"]conversion['"]\)\)\s?\?\s?1\s?:\s?0;/gm, var adbStatus = 0;) thomasalthoughhear.com,sandrataxeight.com,voe.sx,scatch176duplicities.com,vincentincludesuccessful.com##+js(trusted-replace-node-text, script, /afterOpen:=s?function\(url\,\s?options\,\s?popWin\)/gm, afterOpen: function(url\, options\, null)) thomasalthoughhear.com,sandrataxeight.com,voe.sx,scatch176duplicities.com,vincentincludesuccessful.com##+js(remove-node-text, script, /return b1\[Math\.floor\(Math\.random\(\)\s?\*\s?b1\.length\)\];/gm) thomasalthoughhear.com,sandrataxeight.com,voe.sx,scatch176duplicities.com,vincentincludesuccessful.com##+js(set-constant, c74a68dfbd15fcd6f23a6b26879bc82e, noopFunc) thomasalthoughhear.com,sandrataxeight.com,voe.sx,scatch176duplicities.com,vincentincludesuccessful.com##+js(set-constant, adbStatus, 1) thomasalthoughhear.com,sandrataxeight.com,voe.sx,scatch176duplicities.com,vincentincludesuccessful.com##+js(aeld, /contextmenu|keydown/) thomasalthoughhear.com,sandrataxeight.com,voe.sx,scatch176duplicities.com,vincentincludesuccessful.com##^script:has-text(/debugger;/):remove() !thomasalthoughhear.com,sandrataxeight.com,voe.sx,scatch176duplicities.com,vincentincludesuccessful.com##+js(trusted-replace-node-text, script, /^debugger;/gm, "") thomasalthoughhear.com,sandrataxeight.com,voe.sx,scatch176duplicities.com,vincentincludesuccessful.com##+js(remove-node-text, script, /debugger;/gm) thomasalthoughhear.com,sandrataxeight.com,voe.sx,scatch176duplicities.com,vincentincludesuccessful.com##:xpath(//script[contains(text(), 'debugger;')]):remove() ! TODO: Really abort on debugger as that is what the debugger statement already does? thomasalthoughhear.com,sandrataxeight.com,voe.sx,scatch176duplicities.com,vincentincludesuccessful.com##+js(acs, /debugger;/) thomasalthoughhear.com,sandrataxeight.com,voe.sx,scatch176duplicities.com,vincentincludesuccessful.com##^script:has-text(/console\.clear\(\);/):remove() !thomasalthoughhear.com,sandrataxeight.com,voe.sx,scatch176duplicities.com,vincentincludesuccessful.com##+js(trusted-replace-node-text, script, /^console\.clear\(\);/gm, "") thomasalthoughhear.com,sandrataxeight.com,voe.sx,scatch176duplicities.com,vincentincludesuccessful.com##+js(remove-node-text, script, /console\.clear\(\);/gm) thomasalthoughhear.com,sandrataxeight.com,voe.sx,scatch176duplicities.com,vincentincludesuccessful.com##:xpath(//script[contains(text(), 'console.clear')]):remove() thomasalthoughhear.com,sandrataxeight.com,voe.sx,scatch176duplicities.com,vincentincludesuccessful.com##+js(acs, /console.clear\(\);/) thomasalthoughhear.com,sandrataxeight.com,voe.sx,scatch176duplicities.com,vincentincludesuccessful.com##a[href^="https://desperationembassy.com/"]:remove() thomasalthoughhear.com,sandrataxeight.com,voe.sx,scatch176duplicities.com,vincentincludesuccessful.com##+js(aopw, window.c1f1f6cd617) thomasalthoughhear.com,sandrataxeight.com,voe.sx,scatch176duplicities.com,vincentincludesuccessful.com##+js(aopr, window.c1f1f6cd617) thomasalthoughhear.com,sandrataxeight.com,voe.sx,scatch176duplicities.com,vincentincludesuccessful.com##+js(acs, encodeURIComponent, decodeURIComponent) ! The following rule prevents legitimate functions including [native code]. !thomasalthoughhear.com,sandrataxeight.com,voe.sx,scatch176duplicities.com,vincentincludesuccessful.com##+js(no-setTimeout-if, /^/) !thomasalthoughhear.com,sandrataxeight.com,voe.sx,scatch176duplicities.com,vincentincludesuccessful.com##+js(no-setTimeout-if, c74a68dfbd15fcd6f23a6b26879bc82e) ! The following rule defuses blocking of the developer tools. thomasalthoughhear.com,sandrataxeight.com,voe.sx,scatch176duplicities.com,vincentincludesuccessful.com##+js(no-setTimeout-if, /function\(\)\{var _0x33f118=_0x2ad273;_0x461a13\[_0x33f118\(0x112\)\]\(\);\}/) thomasalthoughhear.com,sandrataxeight.com,voe.sx,scatch176duplicities.com,vincentincludesuccessful.com##video[id="voe-player"][disablepictureinpicture]:remove-attr(disablepictureinpicture) thomasalthoughhear.com,sandrataxeight.com,voe.sx,scatch176duplicities.com,vincentincludesuccessful.com##+js(remove-attr, disablepictureinpicture, video[id="voe-player"][disablepictureinpicture]) thomasalthoughhear.com,sandrataxeight.com,voe.sx,scatch176duplicities.com,vincentincludesuccessful.com##+js(trusted-set-attr, video[id="voe-player"], controls, true) thomasalthoughhear.com,sandrataxeight.com,voe.sx,scatch176duplicities.com,vincentincludesuccessful.com##+js(trusted-set-attr, video[id="voe-player"], x-webkit-airplay, allow) thomasalthoughhear.com,sandrataxeight.com,voe.sx,scatch176duplicities.com,vincentincludesuccessful.com##+js(trusted-set-attr, video[id="voe-player"], data-autoplay-mute-lock, false) thomasalthoughhear.com,sandrataxeight.com,voe.sx,scatch176duplicities.com,vincentincludesuccessful.com##+js(trusted-set-attr, video[id="voe-player"], width, 100%) thomasalthoughhear.com,sandrataxeight.com,voe.sx,scatch176duplicities.com,vincentincludesuccessful.com##+js(trusted-set-attr, video[id="voe-player"], height, 100%) thomasalthoughhear.com,sandrataxeight.com,voe.sx,scatch176duplicities.com,vincentincludesuccessful.com##+js(trusted-set-attr, video[id="voe-player"], crossorigin, anonymous) thomasalthoughhear.com,sandrataxeight.com,voe.sx,scatch176duplicities.com,vincentincludesuccessful.com##+js(trusted-set-attr, video[id="voe-player"], preload, metadata) !thomasalthoughhear.com,sandrataxeight.com,voe.sx,scatch176duplicities.com,vincentincludesuccessful.com##+js(trusted-set-attr, video[id="voe-player"], preload, none) !thomasalthoughhear.com,sandrataxeight.com,voe.sx,scatch176duplicities.com,vincentincludesuccessful.com##+js(trusted-set-attr, video[id="voe-player"], preload, auto) thomasalthoughhear.com,sandrataxeight.com,voe.sx,scatch176duplicities.com,vincentincludesuccessful.com##+js(trusted-set-attr, video[id="voe-player"], playsinline, true) !thomasalthoughhear.com,sandrataxeight.com,voe.sx,scatch176duplicities.com,vincentincludesuccessful.com##+js(trusted-set-attr, video[id="voe-player"], playsinline, playsinline) thomasalthoughhear.com,sandrataxeight.com,voe.sx,scatch176duplicities.com,vincentincludesuccessful.com##+js(trusted-set-attr, video[id="voe-player"], webkit-playsinline, true) ! TODO: Removing the muted="muted" attribute causes the video's audio to not be muted? This will be removed automatically since muted is set to true in rules above. !thomasalthoughhear.com,sandrataxeight.com,voe.sx,scatch176duplicities.com,vincentincludesuccessful.com##video[id="voe-player"][muted]:remove-attr(muted) !thomasalthoughhear.com,sandrataxeight.com,voe.sx,scatch176duplicities.com,vincentincludesuccessful.com##+js(remove-attr, muted, video[id="voe-player"][muted]) upstream.to##div[id="play_limit_box"]:remove() upstream.to##div[id="pdiv"]:style(--aspect-ratio: 16/9 !important; position: relative !important; left: -16vw !important; right: 0px !important; top: 0px !important; bottom: 0px !important; opacity:1 !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100vw !important; width: 100vw !important; max-height: 100vh !important; height: 100vh !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) upstream.to##div[id="vplayer"]:style(padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100% !important; width: 100% !important; max-height: 100% !important; height: 100% !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) upstream.to##div[id="vplayer"][class*="vjs-controls-disabled"]:remove-class(vjs-controls-disabled) upstream.to##+js(remove-class, vjs-controls-disabled, div[id="vplayer"][class*="vjs-controls-disabled"]) upstream.to##+js(add-class, vjs-controls-enabled, div[id="vplayer"]) upstream.to##+js(add-class, jw-flag-cast-available, div[id="vplayer"]) upstream.to##+js(add-class, vjs-has-mouse, div[id="vplayer"]) upstream.to##+js(add-class, vjs-workinghover, div[id="vplayer"]) upstream.to##+js(trusted-set-attr, div[id="vplayer"], crossorigin, anonymous) upstream.to##+js(trusted-set-attr, div[id="vplayer"], preload, metadata) !upstream.to##+js(trusted-set-attr, div[id="vplayer"], preload, none) !upstream.to##+js(trusted-set-attr, div[id="vplayer"], preload, auto) upstream.to##+js(trusted-set-attr, div[id="vplayer"], playsinline, true) !upstream.to##+js(trusted-set-attr, div[id="vplayer"], playsinline, playsinline) upstream.to##div[id="vplayer"][class*="jw-no-focus"]:remove-class(jw-no-focus) upstream.to##div[class="a178432"]:remove-attr(oncontextmenu) upstream.to##div[class="a178432"]:remove() upstream.to##div[class="b178432"]:remove() upstream.to##+js(set-constant, FabUtils, noopFunc) upstream.to##+js(set-constant, FabPlugin, noopFunc) upstream.to##+js(set-constant, Fab, noopFunc) upstream.to##+js(set-constant, FabPluginHttp, noopFunc) upstream.to##+js(set-constant, googlejs, {}) upstream.to##+js(set-constant, googlejs.add, noopFunc) upstream.to##+js(set-constant, showADBOverlay, noopFunc) upstream.to##+js(acs, /showADBOverlay\(\)/) upstream.to##+js(no-setTimeout-if, /showADBOverlay\(\)/) upstream.to##+js(set-constant, checkADB, noopFunc) upstream.to##+js(no-setTimeout-if, checkADB) upstream.to##+js(set-constant, isDetected, falseFunc) upstream.to##+js(set-constant, detectAnyAdblocker, falseFunc) upstream.to##+js(set-constant, detectDomAdblocker, falseFunc) upstream.to##+js(set-constant, detectBraveShields, falseFunc) upstream.to##+js(set-constant, OperaAdblocker, falseFunc) upstream.to##+js(set-constant, window.justDetectAdblock, {}) upstream.to##+js(set-constant, detected, false) upstream.to##+js(aopw, DEBUG_MODE) upstream.to##+js(aopr, DEBUG_MODE) upstream.to##+js(aopw, ENABLE_ONLINE_DEBUGGER) upstream.to##+js(aopr, ENABLE_ONLINE_DEBUGGER) upstream.to##^script:has-text(/var DEBUG_MODE,ENABLE_LOGS,ENABLE_ONLINE_DEBUGGER,/):remove() upstream.to##+js(remove-node-text, script, /var DEBUG_MODE,ENABLE_LOGS,ENABLE_ONLINE_DEBUGGER,/gm) upstream.to##:xpath(//script[contains(text(), 'var DEBUG_MODE,ENABLE_LOGS,ENABLE_ONLINE_DEBUGGER,')]):remove() upstream.to##+js(trusted-replace-node-text, script, /{debugger;}/gm, {null;}) upstream.to##+js(remove-node-text, script, /var fuckAdBlock\s?=/gm) upstream.to##+js(aopw, fuckAdBlock) upstream.to##+js(aopr, fuckAdBlock) upstream.to##+js(remove-node-text, script, /googlejs\.add\(/gm) upstream.to##+js(set-constant, googlejs.add, noopFunc, complete) ! The regex in the following rule work needs to escape the commas for some reason. upstream.to##+js(remove-node-text, script, /function\(d\,z\,s\)\{s\.src='https:\/\/'\+d\+'\/401\/'\+z;/gm) ! sUpload.js is anti-adblock script. ||upstream.to/js/sUpload.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||upstream.to/google.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||upstream.to/js/boxad.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||upstream.to/js/dnsads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||upstream.to/js/jdadbl.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !*$3p,script,denyallow=cdnjs.cloudflare.com|upstreamcdn.co,domain=upstream.to /^https?:\/\/(?!-)[A-Za-z0-9-]+([\-\.]{1}[A-Za-z0-9]+)*\.[A-Za-z]{2,6}\/?\S*/$3p,script,denyallow=cdnjs.cloudflare.com|upstreamcdn.co,domain=upstream.to ||*.amazonaws.com^$3p,xhr,domain=upstream.to ||rmaticalacm.info^* ||titlerwilhelm.com^* ||silagecircaea.com^* ||lwonclbench.com^* vtube.to,vtbe.net,vtplay.net##+js(set-constant, TsInPagePush, noopFunc) vtube.to,vtbe.net,vtplay.net##+js(acs, TsInPagePush) vtube.to,vtbe.net,vtplay.net##+js(acs, addEventListener, https://google.com/) vtube.to,vtbe.net,vtplay.net##^script:has-text(/debugger;/):remove() vtube.to,vtbe.net,vtplay.net##+js(remove-node-text, script, /debugger;/gm) vtube.to,vtbe.net,vtplay.net##:xpath(//script[contains(text(), 'debugger;')]):remove() ! TODO: Really abort on debugger as that is what the debugger statement already does? vtube.to,vtbe.net,vtplay.net##+js(acs, /debugger;/) ! TODO: ^script doesn't work with attributes since checked before DOM created? vtube.to,vtbe.net,vtplay.net##script[data-spots][data-tag][data-subid1]:remove() vtube.to,vtbe.net,vtplay.net##+js(set-constant, _0x3538, []) vtube.to,vtbe.net,vtplay.net##+js(aopw, _0x3538) vtube.to,vtbe.net,vtplay.net##+js(aopr, _0x3538) !vtube.to,vtbe.net,vtplay.net##+js(no-setTimeout-if, /argument\['callee'\]/, 0x0) vtube.to,vtbe.net,vtplay.net##+js(no-setTimeout-if, /^/, 0x0) vtube.to,vtbe.net,vtplay.net##+js(set-constant, cRAds, false) vtube.to,vtbe.net,vtplay.net##+js(set-constant, xRds,false) ||vtube.to/js/googima.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vtbe.net/js/googima.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||vtplay.net/js/googima.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! Blocking this script prevents the video player and most of the core/centered website elements from being displayed. !||vtube.to/src/plugins/aos/dist/aos.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||vtbe.net/src/plugins/aos/dist/aos.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||vtplay.net/src/plugins/aos/dist/aos.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css vtube.to,vtbe.net,vtplay.net##+js(aeld, /contextmenu|keydown/) vtube.to,vtbe.net,vtplay.net##iframe[data-aa]:remove() vtube.to,vtbe.net,vtplay.net##div[id="vplayer"]:style(display: block !important; visibility: visible !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; user-select: all !important; pointer-events: all !important;) vtube.to,vtbe.net,vtplay.net##div[id="vplayer"][class*="vjs-controls-disabled"]:remove-class(vjs-controls-disabled) vtube.to,vtbe.net,vtplay.net##+js(remove-class, vjs-controls-disabled, div[id="vplayer"][class*="vjs-controls-disabled"]) vtube.to,vtbe.net,vtplay.net##+js(add-class, vjs-controls-enabled, div[id="vplayer"]) vtube.to,vtbe.net,vtplay.net##+js(add-class, jw-flag-cast-available, div[id="vplayer"]) vtube.to,vtbe.net,vtplay.net##+js(add-class, vjs-has-mouse, div[id="vplayer"]) vtube.to,vtbe.net,vtplay.net##+js(add-class, vjs-workinghover, div[id="vplayer"]) vtube.to,vtbe.net,vtplay.net##+js(trusted-set-attr, div[id="vplayer"], crossorigin, anonymous) vtube.to,vtbe.net,vtplay.net##+js(trusted-set-attr, div[id="vplayer"], preload, metadata) !vtube.to,vtbe.net,vtplay.net##+js(trusted-set-attr, div[id="vplayer"], preload, none) !vtube.to,vtbe.net,vtplay.net##+js(trusted-set-attr, div[id="vplayer"], preload, auto) ! Removing this div prevents the entire video player from being present. !vtube.to,vtbe.net,vtplay.net##div[class="jw-wrapper jw-reset"]:remove() !vtube.to,vtbe.net,vtplay.net##div[class="jw-wrapper jw-reset"]:has(div[class="jw-contract-trigger"]):remove() ! The following rule would remove the hidden division which also hides the video player, but the only way to identify this division is by xpath which may change. ! Doing this also prevents the video player from being activatable. !vtube.to,vtbe.net,vtplay.net##:xpath("/html/body/main/div[2]/div/div/div/div/div/div[1]/div/div[2]/div[1]"):remove() vtube.to,vtbe.net,vtplay.net##div[class="afs_ads ad-placement"]:remove() vtube.to,vtbe.net,vtplay.net##body[id="top"]:remove-attr(data-aos-duration) ||8afb7f9e2c1a7a9e.vtube.to/t5kKmg1.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||8afb7f9e2c1a7a9e.vtbe.net/t5kKmg1.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||8afb7f9e2c1a7a9e.vtplay.net/t5kKmg1.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.tsyndicate.com/sdk/v1/master.spot.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cdn.tsyndicate.com/sdk/v1/inpage.push.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||inspectorstrongerpill.com^* !||www.onclickalgo.com/jump/next.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.onclickalgo.com^* ||afraid-standard.pro^* ||xml.serving-passthrough.com^* ||prrequests.com^* !||1d5e051bc65.traffic-c.com^* ||*.traffic-c.com^* !||1d706ad42da.turbogames.net^* ||*.turbogames.net^* ||iolo.ltroute.com^* !||asgclick.com/ASG/NAD.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||asgclick.com^* !||videocdnmetrika.com/ads/banner.gif$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||videocdnmetrika.com/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||videocdnmetrika.com^* ||mxtads.com^* ||hiveos.farm^* ||coinlist.co^* ||localbitcoins.com^* ||ya-counter.ru/index.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cs.cdnbit.com/ij.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||cs.cdnbit.com/s4code.php$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||queue.coinlist.co^* ||hiveon.com^* ||eephaush.com^* ||www.dgxmvglp.com^* ||resetoccultkeeper.com^* ||la3c05lr3o.com^* ||www.vhrtgvzcmrfoo.com^* ||maw5r7y9s9helley.com^* ||whoursie.com^* ||thutsish.xyz^* ||cpyefqautjam.xyz^* ||kqofnvtsv.com^* ||nultoaly.net^* ||cirsepuh.net^* ||xchqxdiplpcugc.com^* ||tndfkyqjrva.com^* ||e335udnv6drg78b7.com^* ||handsenvious.com^* ||fembedta.com^* ||zx.inclusadeicer.com^* ||uy.mawseednoblest.com^* ||cdn.uponelectabuzzor.club^* ||belickitungchan.com^* ||outsliggooa.com^* ||cdn.itskiddien.club^* ||ak.whookroo.com^* ||variationaspenjaunty.com^* ||qoanbextkvfmjr.com^* ||mkgdfymr.com^* ||crowdedmass.com^* ||tautqnuxgjraavl.com^* ||cantstopplaying.com^* ||ishku-wbq.com^* www.distro.tv##div[id="shadow-overlay"]:remove() www.distro.tv##+js(set-constant, window._qevents, []) www.distro.tv##+js(acs, window._qevents) www.distro.tv##+js(aopw, window._qevents) www.distro.tv##+js(aopr, window._qevents) www.distro.tv##div[id="content_video_ima-ad-container"]:remove() www.distro.tv##div[id="content_video_ima-countdown-div"]:remove() www.distro.tv##+js(set-constant, debug, noopFunc) www.distro.tv##+js(set-constant, window.dsvalidator, noopFunc) www.distro.tv##.videoAdUiFloatingLayer:remove() !www.distro.tv##div[aria-label="Video Player"]:style(--aspect-ratio: 16/9 !important; left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) www.distro.tv##div[id="content_video"]:style(--aspect-ratio: 16/9 !important; left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) www.distro.tv##div[id="content_video"][class*="vjs-controls-disabled"]:remove-class(vjs-controls-disabled) www.distro.tv##+js(remove-class, vjs-controls-disabled, div[id="content_video"][class*="vjs-controls-disabled"]) www.distro.tv##+js(add-class, vjs-controls-enabled, div[id="content_video"]) www.distro.tv##+js(add-class, jw-flag-cast-available, div[id="content_video"]) www.distro.tv##+js(add-class, vjs-has-mouse, div[id="content_video"]) www.distro.tv##+js(add-class, vjs-workinghover, div[id="content_video"]) www.distro.tv##+js(trusted-set-attr, div[id="content_video"], crossorigin, anonymous) www.distro.tv##+js(trusted-set-attr, div[id="content_video"], preload, metadata) !www.distro.tv##+js(trusted-set-attr, div[id="content_video"], preload, none) !www.distro.tv##+js(trusted-set-attr, div[id="content_video"], preload, auto) www.distro.tv##+js(trusted-set-attr, div[id="content_video"], playsinline, true) !www.distro.tv##+js(trusted-set-attr, div[id="content_video"], playsinline, playsinline) ! Don't remove vjs-user-inactive class as it changes to vjs-user-active when the cursor is over the video viewport. !www.distro.tv##div[id="content_video"][class*="vjs-user-inactive"]:remove-class(vjs-user-inactive) www.tikilive.com##div[id^="vjs_video_"]:style(--aspect-ratio: 16/9 !important; left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) !www.tikilive.com##div[id="vjs_video_3"][class*="vjs-controls-disabled"]:remove-class(vjs-controls-disabled) !www.tikilive.com##div[id="vjs_video_301"][class*="vjs-controls-disabled"]:remove-class(vjs-controls-disabled) www.tikilive.com##div[id^="vjs_video_"][class*="vjs-controls-disabled"]:remove-class(vjs-controls-disabled) www.tikilive.com##+js(remove-class, vjs-controls-disabled, div[id^="vjs_video_"][class*="vjs-controls-disabled"]) www.tikilive.com##+js(add-class, vjs-controls-enabled, div[id^="vjs_video_"]) www.tikilive.com##+js(add-class, jw-flag-cast-available, div[id^="vjs_video_"]) www.tikilive.com##+js(add-class, vjs-has-mouse, div[id^="vjs_video_"]) www.tikilive.com##+js(add-class, vjs-workinghover, div[id^="vjs_video_"]) www.tikilive.com##+js(trusted-set-attr, div[id^="vjs_video_"], crossorigin, anonymous) www.tikilive.com##+js(trusted-set-attr, div[id^="vjs_video_"], preload, metadata) !www.tikilive.com##+js(trusted-set-attr, div[id^="vjs_video_"], preload, none) !www.tikilive.com##+js(trusted-set-attr, div[id^="vjs_video_"], preload, auto) www.tikilive.com##+js(trusted-set-attr, div[id^="vjs_video_"], playsinline, true) !www.tikilive.com##+js(trusted-set-attr, div[id^="vjs_video_"], playsinline, playsinline) www.tikilive.com##div[pseudo="-webkit-media-controls-panel"]:style(display:inline !important; appearance: -internal-media-control !important; cursor: pointer; user-select: all !important;) www.tikilive.com##div[pseudo="-internal-media-controls-button-panel"]:style(display:inline !important; appearance: -internal-media-control !important; cursor: pointer; user-select: all !important;) www.tikilive.com##input[aria-label="play"][type="button"]:style(user-select: all !important;) www.tikilive.com##div[class="channelPlayerBanner__12kSj"]:remove() !||www.tikilive.com/watch/assets/ads/videojs.ads.min.js$script ||www.tikilive.com/watch/assets/ads/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css forum.husham.com##div[class="u-bottomFixer js-bottomFixTarget"]:has(div[class="notice-content"]:has-text(This site uses cookies)):remove() a2zp30.com##ins[class="adsbygoogle"]:remove() a2zp30.com##+js(abort-on-property-read, adsbygoogle) a2zp30.com##+js(abort-on-property-write, adsbygoogle) ||a2zp30.com/js/ads.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css a2zapk.io,a2zapk.com##div[class="ad-container"]:remove() a2zapk.io,a2zapk.com##a[id^="a-ads"]:remove() a2zapk.io,a2zapk.com##p[id^="a-ads"]:remove() a2zapk.io,a2zapk.com##div[class="bottom-ad-container"]:remove() a2zapk.io,a2zapk.com##div[id^="div-gpt-ad-"]:remove() a2zapk.io,a2zapk.com##div[id^="galax"]:remove() a2zapk.io,a2zapk.com##div[id="whats"]:style(visibility: visible !important; display: block !important;) a2zapk.io,a2zapk.com##div[id="whats"]:remove-class(toggle) a2zapk.io,a2zapk.com##+js(remove-class, toggle, #whats) a2zapk.io,a2zapk.com##div[id="whatsb"]:remove() a2zapk.io,a2zapk.com##div[id="des"]:style(visibility: visible !important; display: block !important;) a2zapk.io,a2zapk.com##div[id="des"]:remove-class(toggle) a2zapk.io,a2zapk.com##+js(remove-class, toggle, #des) a2zapk.io,a2zapk.com##div[id="desb"]:remove() a2zapk.io,a2zapk.com##input[id="adx"]:remove() a2zapk.io,a2zapk.com##iframe[data-aa]:remove() !a2zapk.io,a2zapk.com##+js(set-constant, e.preventDefault, noopFunc, end) a2zapk.io,a2zapk.com##+js(set-constant, e.preventDefault, noopFunc, complete) a2zapk.io,a2zapk.com##+js(aopw, wd) a2zapk.io,a2zapk.com##+js(aopr, wd) a2zapk.io,a2zapk.com##+js(set-constant, klTMzGavigaAYbvNGZjGGrvdaBvPrf, noopFunc) a2zapk.io,a2zapk.com##+js(set-constant, $imgg, null) a2zapk.io,a2zapk.com##+js(acs, $imgg) a2zapk.io,a2zapk.com##+js(aopw, $imgg) a2zapk.io,a2zapk.com##+js(aopr, $imgg) a2zapk.io,a2zapk.com##+js(set-constant, $img, null) a2zapk.io,a2zapk.com##+js(acs, $img) a2zapk.io,a2zapk.com##+js(aopw, $img) a2zapk.io,a2zapk.com##+js(aopr, $img) a2zapk.io,a2zapk.com##+js(set-constant, divalerttag, "") a2zapk.io,a2zapk.com##+js(acs, divalerttag) a2zapk.io,a2zapk.com##+js(aopw, divalerttag) a2zapk.io,a2zapk.com##+js(aopr, divalerttag) a2zapk.io,a2zapk.com##+js(set-constant, countad, noopFunc) a2zapk.io,a2zapk.com##html,body:remove-attr(oncontextmenu) ! TODO: aeld doesn't work for some reason on the contextmenu event listener a2zapk.io,a2zapk.com##+js(aeld, contextmenu) ! ||a2zapk.io/dload/$inline-script prevents the contextmenu from being disabled on the download screen and doesn't break the download links ||a2zapk.io/dload/$inline-script ! TODO: The following don't prevent the contextmenu from being disabled for some reason. a2zapk.io,a2zapk.com##+js(acs, document.oncontextmenu) a2zapk.io,a2zapk.com##+js(acs, document.onkeydown) a2zapk.io,a2zapk.com##+js(acs, document.onselectstart) a2zapk.io,a2zapk.com##+js(acs, document.onmousedown) a2zapk.io,a2zapk.com##+js(acs, document.onclick) a2zapk.io,a2zapk.com##+js(acs, document.ondragstart) a2zapk.io,a2zapk.com##+js(set-attr, img[class="lazy"][data-original], src, [data-original]) ||a2zapk.io/manifest.json$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a2zapk.io/adgpt.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a2zapk.io/adsbyg.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||a2zapk.io/images/detect.png#/adaffiliate_/adops/ad/adsales/ad/adsby./adtest./ajax/ads/ad/controller/ads/ad/pageads/ad/weather/ads/ad-728x90-$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||a2zapk.io/images/detect.png#/adaffiliate_/document,subdocument,script,inline-script,inline-font,popup,popunder,other,image,xhr,ping !*$3p,script,denyallow=ajax.googleapis.com|cdnjs.cloudflare.com|prod.disqus.map.fastlylb.net|a2zapk.disqus.com|a2zapk.io|a2zapk.com,domain=a2zapk.io|a2zapk.com /^https?:\/\/(?!-)[A-Za-z0-9-]+([\-\.]{1}[A-Za-z0-9]+)*\.[A-Za-z]{2,6}\/?\S*/$3p,script,denyallow=ajax.googleapis.com|cdnjs.cloudflare.com|prod.disqus.map.fastlylb.net|a2zapk.disqus.com|a2zapk.io|a2zapk.com,domain=a2zapk.io|a2zapk.com !||js.mobileoffers-ep-download.com^* ||mobileoffers-ep-download.com^* ! 2embed.me is defunct and is not the same website. 2embed.me URL's need to be parsed and redirected to www.2embed.cc using the Redirector extension or some other means. 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##body[oncontextmenu]:remove-attr(oncontextmenu) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(remove-attr, oncontextmenu, body[oncontextmenu]) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##:matches-path(/(\/embed)|(\/movie\/)/i) html,body:style(left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; overflow: auto !important; user-select: all !important; pointer-events: all !important;) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##img[src="/images/player.png"]:style(right:0px !important;top:0px !important;padding: 0px !important) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##iframe[id="player_iframe"]:style(left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100% !important; width: 100% !important; max-height: 100% !important; height: 100% !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(trusted-set-attr, iframe[id="player_iframe"], seamless, seamless) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(trusted-set-attr, iframe[id="player_iframe"], allow, picture-in-picture; autoplay; fullscreen; encrypted-media; clipboard-write; accelerometer; gyroscope; web-share;) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(trusted-set-attr, iframe[id="player_iframe"], marginwidth, 0) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(trusted-set-attr, iframe[id="player_iframe"], marginheight, 0) ! The following attributes are already set by the page as normal. ! TODO: 99vw and 100vh do not work as values for the width and height attributes of an iframe. Why? 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(trusted-set-attr, iframe[id="player_iframe"], width, 100%) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(trusted-set-attr, iframe[id="player_iframe"], height, 100%) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(trusted-set-attr, iframe[id="player_iframe"], frameborder, 0) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(trusted-set-attr, iframe[id="player_iframe"], allowfullscreen, true) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(trusted-set-attr, iframe[id="player_iframe"], webkitallowfullscreen, true) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(trusted-set-attr, iframe[id="player_iframe"], mozallowfullscreen, true) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(trusted-set-attr, iframe[id="player_iframe"], scrolling, no) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(trusted-set-attr, iframe[id="player_iframe"], autoplay, yes) !2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(trusted-set-attr, iframe[id="player_iframe"], referrerpolicy, origin) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(trusted-set-attr, iframe[id="player_iframe"], referrerpolicy, unsafe-url) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(trusted-set-attr, iframe[id="player_iframe"], oallowfullscreen, true) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(trusted-set-attr, iframe[id="player_iframe"], msallowfullscreen, true) !2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(trusted-set-attr, iframe[id="player_iframe"], loading, eager) ! TODO: Setting the sandbox attribute may break the video player. !2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(trusted-set-attr, iframe[id="player_iframe"], sandbox, allow-pointer-lock; allow-top-navigation; allowTransparency; allow-modals; allow-scripts; allow-same-origin; allow-popups; allow-popups-to-escape-sandbox; allow-storage-access-by-user-activation; allow-forms) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##iframe[id$="framesrc"]:style(left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(set-attr, iframe[id$="framesrc"][data-src], src, [data-src]) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(trusted-set-attr, iframe[id$="framesrc"], seamless, seamless) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(trusted-set-attr, iframe[id$="framesrc"], allow, picture-in-picture; autoplay; fullscreen; encrypted-media; clipboard-write; accelerometer; gyroscope; web-share;) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(trusted-set-attr, iframe[id$="framesrc"], marginwidth, 0) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(trusted-set-attr, iframe[id$="framesrc"], marginheight, 0) ! The following attributes are already set by the page as normal. ! TODO: 99vw and 100vh do not work as values for the width and height attributes of an iframe. Why? 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(trusted-set-attr, iframe[id$="framesrc"], width, 100%) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(trusted-set-attr, iframe[id$="framesrc"], height, 100%) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(trusted-set-attr, iframe[id$="framesrc"], frameborder, 0) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(trusted-set-attr, iframe[id$="framesrc"], allowfullscreen, true) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(trusted-set-attr, iframe[id$="framesrc"], webkitallowfullscreen, true) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(trusted-set-attr, iframe[id$="framesrc"], mozallowfullscreen, true) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(trusted-set-attr, iframe[id$="framesrc"], scrolling, no) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(trusted-set-attr, iframe[id$="framesrc"], autoplay, yes) !2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(trusted-set-attr, iframe[id$="framesrc"], referrerpolicy, origin) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(trusted-set-attr, iframe[id$="framesrc"], referrerpolicy, unsafe-url) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(trusted-set-attr, iframe[id$="framesrc"], oallowfullscreen, true) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(trusted-set-attr, iframe[id$="framesrc"], msallowfullscreen, true) !2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(trusted-set-attr, iframe[id$="framesrc"], loading, eager) ! TODO: Setting the sandbox attribute may break the video player. !2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(trusted-set-attr, iframe[id$="framesrc"], sandbox, allow-pointer-lock; allow-top-navigation; allowTransparency; allow-modals; allow-scripts; allow-same-origin; allow-popups; allow-popups-to-escape-sandbox; allow-storage-access-by-user-activation; allow-forms) ! DO NOT use the following rule or the videos won't play. !2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##iframe[src="about:blank"]:remove() ! TODO: Do NOT use the following rules to remove the script with window.top as it also contains the go(loc) definition which is required to set the iframe src field !123movie.skin,2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##^script:has-text(/\(\s?window\s?==\s?window\.top\s?\)/):remove() !123movie.skin,2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(remove-node-text, script, /\(\s?window\s?==\s?window\.top\s?\)/gm) !123movie.skin,2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(aopw, window.top) !123movie.skin,2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(aopr, window.top) ! Change (window==window.top) to null instead which will prevent the condition from being true. 123movie.skin,2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(trusted-replace-node-text, script, /\(\s?window\s?==\s?window\.top\s?\)/gm, (null)) 123movie.skin,2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##script[disable-devtool-auto]:remove() 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##script[src*="//whoursie.com/"][onerror]:remove-attr(onerror) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##script[src*="//whoursie.com/"][onloaded]:remove-attr(onloaded) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##script[src*="//whoursie.com/"]:remove() 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(set-constant, $pe, "") 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(acs, $._Eu, $.BD, $pe) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(aopw, $._Eu) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(aopr, $._Eu) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(aopw, $.BD) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(aopr, $.BD) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(acs, document, delete, RegExp, window) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(set-constant, _0x3787a6, {}) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(set-constant, _0x2458b9, noopFunc) 2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##+js(acs, _0x3787a6, _0x2458b9) ! put this script rule last since it uses an absolute xpath and its path could change if nodes above it are removed by other rules. !2embed.skin,streamsrcs.2embed.cc,www.2embed.cc##:xpath("/html/body/script[1]"):remove() ! The following rule blocks an anti-developer tools script. /^https?:\/\/((?!-)[A-Za-z0-9-]+([\-\.]{1}))?(2embed\.skin|2embed\.cc)\/js\/block\-inspect\.js\S*/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !*$3p,script,denyallow=ajax.googleapis.com|platform-api.sharethis.com|2embed.skin|streamsrcs.2embed.cc|www.2embed.cc,domain=2embed.skin|streamsrcs.2embed.cc|www.2embed.cc /^https?:\/\/(?!-)[A-Za-z0-9-]+([\-\.]{1}[A-Za-z0-9]+)*\.[A-Za-z]{2,6}\/?\S*/$3p,script,denyallow=ajax.googleapis.com|platform-api.sharethis.com|2embed.skin|streamsrcs.2embed.cc|www.2embed.cc,domain=2embed.skin|streamsrcs.2embed.cc|www.2embed.cc 123movie.skin##:not(:matches-path(/\/embed/)) html:style(max-height: 100vh !important; height: 100vh !important; max-width: 100vw !important; width: 100vw !important; padding:0 !important; margin:0 !important; border: none !important;overflow:auto !important;) 123movie.skin##div[id="persoff"]:remove() ! div[id="player-area"] is the root area where all of the nested embedded iframes reside. 123movie.skin##div[id="player-area"]:style(left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) 123movie.skin##div[class="pa-main"]:style(left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100% !important; width: 100% !important; max-height: 100% !important; height: 100% !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) 123movie.skin##div[id="embed-player"]:style(left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100% !important; width: 100% !important; max-height: 100% !important; height: 100% !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) 123movie.skin##+js(set-attr, iframe[id="vsrcs"][data-src], src, [data-src]) ! TODO: For some reason, the following rule causes the control bar to be in the middle of the video player viewport instead of at the bottom of it. ! the height value of the style property is set to 90% when the toggleBar() function is executed. 123movie.skin##+js(trusted-replace-node-text, script, /document\.getElementById\('vsrcs'\)\.style\.height = "90%";/, document.getElementById('vsrcs').style.height = "100%";) ! removing that line from the script would also work. !123movie.skin##+js(trusted-replace-node-text, script, /document\.getElementById\('vsrcs'\)\.style\.height = "90%";/, "") !123movie.skin##iframe[id="vsrcs"]:style(left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) 123movie.skin##iframe[id="vsrcs"]:style(left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100% !important; width: 100% !important; max-height: 100% !important; height: 100% !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) 123movie.skin##+js(trusted-set-attr, iframe[id="vsrcs"], seamless, seamless) 123movie.skin##+js(trusted-set-attr, iframe[id="vsrcs"], allow, picture-in-picture; autoplay; fullscreen; encrypted-media; clipboard-write; accelerometer; gyroscope; web-share;) 123movie.skin##+js(trusted-set-attr, iframe[id="vsrcs"], height, 100%) 123movie.skin##+js(trusted-set-attr, iframe[id="vsrcs"], webkitallowfullscreen, true) 123movie.skin##+js(trusted-set-attr, iframe[id="vsrcs"], mozallowfullscreen, true) 123movie.skin##+js(trusted-set-attr, iframe[id="vsrcs"], allowfullscreen, true) 123movie.skin##+js(trusted-set-attr, iframe[id="vsrcs"], marginwidth, 0) 123movie.skin##+js(trusted-set-attr, iframe[id="vsrcs"], marginheight, 0) 123movie.skin##+js(trusted-set-attr, iframe[id="vsrcs"], allowtransparency, true) 123movie.skin##+js(trusted-set-attr, iframe[id="vsrcs"], autoplay, yes) !123movie.skin##+js(trusted-set-attr, iframe[id="vsrcs"], referrerpolicy, origin) 123movie.skin##+js(trusted-set-attr, iframe[id="vsrcs"], referrerpolicy, unsafe-url) 123movie.skin##+js(trusted-set-attr, iframe[id="vsrcs"], oallowfullscreen, true) 123movie.skin##+js(trusted-set-attr, iframe[id="vsrcs"], msallowfullscreen, true) !123movie.skin##+js(trusted-set-attr, iframe[id="vsrcs"], loading, eager) ! TODO: Setting the sandbox attribute may break the video player. !123movie.skin##+js(trusted-set-attr, iframe[id="vsrcs"], sandbox, allow-pointer-lock; allow-top-navigation; allowTransparency; allow-modals; allow-scripts; allow-same-origin; allow-popups; allow-popups-to-escape-sandbox; allow-storage-access-by-user-activation; allow-forms) ! The following attributes are already set by the page. 123movie.skin##+js(trusted-set-attr, iframe[id="vsrcs"], width, 100%) 123movie.skin##+js(trusted-set-attr, iframe[id="vsrcs"], frameborder, 0) 123movie.skin##+js(trusted-set-attr, iframe[id="vsrcs"], scrolling, no) ! The following must be set to width: 99vw and height: 99vh or else the video player viewport will be truncated to ~150px for some reason. Also use overflow: auto or hidden to prevent scrollbars if width and/or height is 100vw/100vh. 123movie.skin##iframe[id="iframesrc"]:style(left: 0px !important; right: 0px !important; padding:0 !important; margin:0 !important; border: none !important; border-width:0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; overflow: hidden !important; user-select: all !important; pointer-events: all !important;) 123movie.skin##+js(trusted-set-attr, iframe[id="iframesrc"], seamless, seamless) 123movie.skin##+js(trusted-set-attr, iframe[id="iframesrc"], allow, picture-in-picture; autoplay; fullscreen; encrypted-media; clipboard-write; accelerometer; gyroscope; web-share;) 123movie.skin##+js(trusted-set-attr, iframe[id="iframesrc"], height, 100%) 123movie.skin##+js(trusted-set-attr, iframe[id="iframesrc"], webkitallowfullscreen, true) 123movie.skin##+js(trusted-set-attr, iframe[id="iframesrc"], mozallowfullscreen, true) 123movie.skin##+js(trusted-set-attr, iframe[id="iframesrc"], marginwidth, 0) 123movie.skin##+js(trusted-set-attr, iframe[id="iframesrc"], marginheight, 0) 123movie.skin##+js(trusted-set-attr, iframe[id="iframesrc"], allowtransparency, true) 123movie.skin##+js(trusted-set-attr, iframe[id="iframesrc"], autoplay, yes) !123movie.skin##+js(trusted-set-attr, iframe[id="iframesrc"], referrerpolicy, origin) 123movie.skin##+js(trusted-set-attr, iframe[id="iframesrc"], referrerpolicy, unsafe-url) 123movie.skin##+js(trusted-set-attr, iframe[id="iframesrc"], oallowfullscreen, true) 123movie.skin##+js(trusted-set-attr, iframe[id="iframesrc"], msallowfullscreen, true) !123movie.skin##+js(trusted-set-attr, iframe[id="iframesrc"], loading, eager) ! TODO: Setting the sandbox attribute may break the video player. !123movie.skin##+js(trusted-set-attr, iframe[id="iframesrc"], sandbox, allow-pointer-lock; allow-top-navigation; allowTransparency; allow-modals; allow-scripts; allow-same-origin; allow-popups; allow-popups-to-escape-sandbox; allow-storage-access-by-user-activation; allow-forms) ! The following attributes are already set by the page. 123movie.skin##+js(trusted-set-attr, iframe[id="iframesrc"], width, 100%) 123movie.skin##+js(trusted-set-attr, iframe[id="iframesrc"], frameborder, 0) 123movie.skin##+js(trusted-set-attr, iframe[id="iframesrc"], allowfullscreen, true) 123movie.skin##+js(trusted-set-attr, iframe[id="iframesrc"], scrolling, no) rabbitstream.net##div[class="afs_ads ad-placement"]:remove() ! rabbitstream.net is a vidcloud domain. rabbitstream.net##div[id="vidcloud-player"]:style(left: 0px !important; right: 0px !important; padding: 0 !important; margin: 0 !important; border: none !important; border-width: 0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; user-select: all !important; pointer-events: all !important;) rabbitstream.net##div[id="vidcloud-player"][class*="vjs-controls-disabled"]:remove-class(vjs-controls-disabled) rabbitstream.net##+js(remove-class, vjs-controls-disabled, div[id="vidcloud-player"][class*="vjs-controls-disabled"]) rabbitstream.net##+js(add-class, vjs-controls-enabled, div[id="vidcloud-player"]) rabbitstream.net##+js(add-class, jw-flag-cast-available, div[id="vidcloud-player"]) rabbitstream.net##+js(add-class, vjs-has-mouse, div[id="vidcloud-player"]) rabbitstream.net##+js(add-class, vjs-workinghover, div[id="vidcloud-player"]) rabbitstream.net##+js(trusted-set-attr, div[id="vidcloud-player"], crossorigin, anonymous) rabbitstream.net##+js(trusted-set-attr, div[id="vidcloud-player"], preload, metadata) ! Do not use the following rules to remove the jw-flag-user-inactive class as this is done automatically when the user interacts with the video player. !rabbitstream.net##div[id="vidcloud-player"][class*="jw-flag-user-inactive"]:remove-class(jw-flag-user-inactive) !rabbitstream.net##+js(remove-class, jw-flag-user-inactive, div[id="vidcloud-player"][class*="jw-flag-user-inactive"]) !rabbitstream.net##+js(set-constant, devtoolsDetector, []) ! The following rules defuse the rabbitstream.net/js/player/prod/e4-player.min.js script which terminates the video player if the developer tools/console is opened. ! Redefining devtoolsDetector.launch prevents the interval of checking for the developer tools which clears the console. ! Running devtoolsDetector.stop(); also stops the interval checks. !rabbitstream.net##+js(set-constant, devtoolsDetector.launch, noopFunc, end) !rabbitstream.net##+js(set-constant, devtoolsDetector.launch, noopFunc, complete) rabbitstream.net##+js(set-constant, devtoolsDetector.launch, noopFunc) ! These devtoolsDetector rules appear to be optional. !rabbitstream.net##+js(set-constant, devtoolsDetector.default._detectLoop, noopFunc, end) !rabbitstream.net##+js(set-constant, devtoolsDetector.default._detectLoop, noopFunc, complete) rabbitstream.net##+js(set-constant, devtoolsDetector.default._detectLoop, noopFunc) !rabbitstream.net##+js(set-constant, devtoolsDetector.default._checkers, {}, end) !rabbitstream.net##+js(set-constant, devtoolsDetector.default._checkers, {}, complete) rabbitstream.net##+js(set-constant, devtoolsDetector.default._checkers, {}) !rabbitstream.net##+js(set-constant, devtoolsDetector.addListener, noopFunc, end) !rabbitstream.net##+js(set-constant, devtoolsDetector.addListener, noopFunc, complete) rabbitstream.net##+js(set-constant, devtoolsDetector.addListener, noopFunc) !rabbitstream.net##+js(set-constant, devtoolsDetector.clear, noopFunc, end) !rabbitstream.net##+js(set-constant, devtoolsDetector.clear, noopFunc, complete) rabbitstream.net##+js(set-constant, devtoolsDetector.clear, noopFunc) ! Don't need to defuse the beforeunload event handler. !rabbitstream.net##+js(aeld, beforeunload) ! TODO: This does NOT stop the interval which is clearing the console. ! It does not appear to hurt anything to enable it though as the functions don't appear to be vital to play the video. !rabbitstream.net##+js(nosiif) ! The following four rules don't appear to have any effect. !rabbitstream.net##+js(acs, /console.clear\(\)/) !rabbitstream.net##+js(acs, devtoolsDetector) !rabbitstream.net##+js(aopw, devtoolsDetector) !rabbitstream.net##+js(aopr, devtoolsDetector) ||rabbitstream.net/ajax/embed-4/banners$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! Do NOT block as rabbitstream.net is the iframe which plays the video. !||rabbitstream.net/embed-4/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !||rabbitstream.net/embed-5/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! membed1.com/membed.net are domains for vidcloud. membed1.com,membed.net##+js(set-constant, $pe, "") membed1.com,membed.net##+js(set-constant, _0xd959, []) membed1.com,membed.net##+js(set-constant, isSandboxed, noopFunc) !membed1.com,membed.net##+js(set-constant, s.src, "", end) !membed1.com,membed.net##+js(set-constant, s.onerror, noopFunc, end) !membed1.com,membed.net##+js(set-constant, s.onload, noopFunc, end) membed1.com,membed.net##+js(set-constant, s.src, "", complete) membed1.com,membed.net##+js(set-constant, s.onerror, noopFunc, complete) membed1.com,membed.net##+js(set-constant, s.onload, noopFunc, complete) membed1.com,membed.net##+js(acs, isSandboxed) membed1.com,membed.net##+js(acs, _umltsm) membed1.com,membed.net##+js(acs, _0xd959, arr, encodeURIComponent) membed1.com,membed.net##+js(acs, _uwkpcu, glersakr.com) membed1.com,membed.net##+js(acs, _umltsm, betotodilea.com) membed1.com,membed.net##+js(acs, $._Fa, $.BD, $pe) membed1.com,membed.net##+js(acs, $._FH, $.BC, $pe) membed1.com,membed.net##+js(aopw, $._Fa) membed1.com,membed.net##+js(aopr, $._Fa) membed1.com,membed.net##+js(aopw, $.BC) membed1.com,membed.net##+js(aopr, $.BC) membed1.com,membed.net##+js(aopw, $pe) membed1.com,membed.net##+js(aopr, $pe) membed1.com,membed.net##+js(acs, adblock, excludes) ! nostif, /^function\(\)/ triggers an anti-adblocking script and message !membed1.com,membed.net##+js(no-setTimeout-if, /^function\(\)/) membed1.com,membed.net##+js(set-constant, devtoolIsOpening, noopFunc) ! nostif, devtoolIsOpening triggers an anti-adblocking script and message !membed1.com,membed.net##+js(no-setTimeout-if, devtoolIsOpening) ! The following rule does NOT prevent the developer tools check from working. membed1.com,membed.net##+js(acs, /console\.clear\(\);/) membed1.com,membed.net##^script:has-text(/debugger;/):remove() membed1.com,membed.net##+js(remove-node-text, script, /^debugger;/gm) !membed1.com,membed.net##+js(trusted-replace-node-text, script, /^debugger;/gm, "") membed1.com,membed.net##:xpath(//script[contains(text(), 'debugger;')]):remove() ! TODO: Really abort on debugger as that is what the debugger statement already does? membed1.com,membed.net##+js(acs, /debugger;/) membed1.com,membed.net##+js(acs, DevTools, devtoolIsOpening) membed1.com,membed.net##^script:has-text(DevTools):remove() membed1.com,membed.net##+js(remove-node-text, script, /DevTools/gm) membed1.com,membed.net##:xpath(//script[contains(text(), 'DevTools')]):remove() ||embedsito.com/asset/jquery/slim-3.2.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css embedsito.com##^script:has-text(devtoolIsOpening):remove() embedsito.com##+js(remove-node-text, script, /devtoolIsOpening/gm) embedsito.com##:xpath(//script[contains(text(), 'devtoolIsOpening')]):remove() embedsito.com##+js(set-constant, devtoolIsOpening, noopFunc) embedsito.com##+js(no-setTimeout-if, devtoolIsOpening) embedsito.com##+js(acs, devtoolIsOpening) embedsito.com##+js(acs, /console\.clear\(\);/) embedsito.com##+js(acs, USER_ID) embedsito.com##^script:has-text(/debugger;/):remove() embedsito.com##+js(remove-node-text, script, /debugger;/gm) !embedsito.com##+js(trusted-replace-node-text, script, /^debugger;/gm, "") embedsito.com##:xpath(//script[contains(text(), 'debugger;')]):remove() !embedsito.com##+js(trusted-replace-node-text, script, /^console\.clear\(\);/gm, "") embedsito.com##+js(remove-node-text, script, /console\.clear\(\);/gm) ! TODO: Really abort on debugger as that is what the debugger statement already does? embedsito.com##+js(acs, /debugger;/) embedsito.com##^script:has-text(USER_ID):remove() embedsito.com##+js(remove-node-text, script, /USER_ID/gm) ! kerapoxy.cc, moonmov.pro, and 1azayf9w.xyz are filemoon.sx domains. /^https?:\/\/((?!-)[A-Za-z0-9-]+([\-\.]{1}))?(1azayf9w\.xyz|kerapoxy\.cc|moonmov\.pro)\/e\/[a-zA-Z0-9]{12,}\?/$uritransform=/ads=1/ads=0/,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css /^https?:\/\/((?!-)[A-Za-z0-9-]+([\-\.]{1}))?(1azayf9w\.xyz|kerapoxy\.cc|moonmov\.pro)\/ads\.js/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css /^https?:\/\/((?!-)[A-Za-z0-9-]+([\-\.]{1}))?(1azayf9w\.xyz|kerapoxy\.cc|moonmov\.pro)\/js\/dnsads\.js/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! The following rule blocks a "Fuck Adblock" script. /^https?:\/\/((?!-)[A-Za-z0-9-]+([\-\.]{1}))?(1azayf9w\.xyz|kerapoxy\.cc|moonmov\.pro)\/js\/baf\.js/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css /^https?:\/\/((?!-)[A-Za-z0-9-]+([\-\.]{1}))?(1azayf9w\.xyz|kerapoxy\.cc|moonmov\.pro)\/advertises\//$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !*$3p,script,denyallow=moonjscdn.info|1azayf9w.xyz|kerapoxy.cc|moonmov.pro,domain=1azayf9w.xyz|kerapoxy.cc|moonmov.pro !/^https?:\/\/(?!-)[A-Za-z0-9-]+([\-\.]{1}[A-Za-z0-9]+)*\.[A-Za-z]{2,6}\/?\S*/$3p,script,denyallow=moonjscdn.info|1azayf9w.xyz|kerapoxy.cc|moonmov.pro,domain=1azayf9w.xyz|kerapoxy.cc|moonmov.pro ! no third-party popups for filemoons domains *$3p,popup,denyallow=1azayf9w.xyz|kerapoxy.cc|moonmov.pro,domain=1azayf9w.xyz|kerapoxy.cc|moonmov.pro ! TODO: using the following rule doesn't block popups from about:blank !/^https?:\/\/(?!-)[A-Za-z0-9-]+([\-\.]{1}[A-Za-z0-9]+)*\.[A-Za-z]{2,6}\/?\S*/$3p,popup,denyallow=1azayf9w.xyz|kerapoxy.cc|moonmov.pro,domain=1azayf9w.xyz|kerapoxy.cc|moonmov.pro ! The following rule blocks the overlay used for click event popup redirects. 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##div[style="width:100%;height:100%;position:fixed;top:0;left:0;z-index:9999999;display:none;"]:remove() 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##div[class="afs_ads ad-placement"]:remove() 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##div[id="adb"]:remove() 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##.adblockblock:remove() 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##:matches-path(/\/e\//) iframe:remove() 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(remove-node-text, script, /try\{var [a-z]=parseInt\(localStorage\[/gm) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##:xpath(//script[contains(text(), 'try{var q=parseInt(localStorage[')]):remove() 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##^script:has-text(/try\{var [a-z]=parseInt\(localStorage\[/gm):remove() 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(remove-node-text, script, /\("sandbox"\)/gm) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##:xpath(//script[contains(text(), '("sandbox")')]):remove() 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##^script:has-text(/\("sandbox"\)/):remove() 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(remove-node-text, script, /blockadblock/gm) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##:xpath(//script[contains(text(), 'blockadblock')]):remove() 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##^script:has-text(blockadblock):remove() 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(remove-node-text, script, /getMainstream1/gm) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##:xpath(//script[contains(text(), 'getMainstream1')]):remove() 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##^script:has-text(getMainstream1):remove() 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(acs, blockadblock) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(set-constant, FabUtils, noopFunc) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(set-constant, FabPlugin, noopFunc) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(set-constant, Fab, noopFunc) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(set-constant, FabPluginHttp, noopFunc) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(set-constant, deploy, noopFunc) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(set-constant, dance, noopFunc) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(set-constant, phashc, noopFunc) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(set-constant, phash, noopFunc) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(set-constant, s2i, noopFunc) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(set-constant, UserCustomPop, {}) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(aopw, UserCustomPop) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(aopr, UserCustomPop) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(aopw, deploy) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(aopr, deploy) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(aopw, dance) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(aopr, dance) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(aopw, phashc) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(aopr, phashc) ! TODO: The following two rules prevent some [native code] and other legitimate/useful functions too, but the video player still functions. ! Blocking timeouts and intervals isn't necessary when the function which creates them is removed using other rules. !1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(no-setTimeout-if, /function\(\)/) !1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(no-setInterval-if, /function\(\)/) ! TODO: The following two rules prevent some [native code] and other legitimate/useful functions too, but the video player still functions. !1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(no-setInterval-if, /^/) !1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(no-setTimeout-if, /^/) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(no-setTimeout-if, deploy) ! TODO: The following two rules do not allow those intervals for some reason. 1azayf9w.xyz,kerapoxy.cc,moonmov.pro#@#+js(no-setInterval-if, /\w\.getBandwidthEstimate\(\)/) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro#@#+js(no-setInterval-if, /\w\.onTextTracksChanged\(\)/) ! TODO: The following two rules don't block native code functions, but still prevent some legitimate/useful functions even though the video player still functions. 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(no-setInterval-if, ![native code]) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(no-setTimeout-if, ![native code]) ! Can't remove all scripts with "ZorDon" since it would remove one necessary script for the video player. ! TODO: Instead remove scripts with case-sensitive matches that do NOT include "ZorDon". ! The following removed the inline script with "ZorDon" in it anyway. !1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(remove-node-text, script, /Zordon/gm) !1azayf9w.xyz,kerapoxy.cc,moonmov.pro##:xpath(//script[contains(text(), 'Zordon')]):remove() !1azayf9w.xyz,kerapoxy.cc,moonmov.pro##^script:has-text(Zordon):remove() ! TODO: Replacing Zordon/ZorDon works without preventing the video player from working. !1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(trusted-replace-node-text, script, /Zordon/gm, "") 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(trusted-replace-node-text, script, /Zordon/gm, null) !1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(trusted-replace-node-text, script, /ZorDon/gm, "") 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(trusted-replace-node-text, script, /ZorDon/gm, null) ! Zordon is the case-sensitive variable name in the following rule. 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(acs, /Zordon/) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(aopw, Zordon) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(aopr, Zordon) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(aopw, window.ZorDon) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(aopr, window.ZorDon) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(set-constant, getMainstream1, noopFunc) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(set-constant, getMainstream2, noopFunc) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(set-constant, getAdult1, noopFunc) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(set-constant, getAdult2, noopFunc) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(acs, getMainstream1, getMainstream2, getAdult1, getAdult2) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(acs, parseInt, localStorage, setTimeout) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(aopw, config.ampallow) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(aopr, config.ampallow) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(acs, location.protocol, document.domain, config.ampallow) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(set-constant, FabPluginHtml, noopFunc) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(set-constant, getAdLink, noopFunc) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(acs, /getAdLink\(\)/) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(set-constant, window.Baras, "") 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(aopw, window.Baras) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(aopr, window.Baras) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(aeld, click, /function h\(t\)/) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(acs, /AckMe.add\(/) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(set-constant, urls, []) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(aopw, urls) 1azayf9w.xyz,kerapoxy.cc,moonmov.pro##+js(aopr, urls) ||movhide.pro/assets/jquery/main0.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css movhide.pro##+js(set-constant, ym, noopFunc) movhide.pro##div[id="adbd"]:remove() !movhide.pro##+js(set-constant, _ASO, {}) !movhide.pro##+js(set-constant, _ASO.loadPushHelper, noopFunc, end) !movhide.pro##+js(set-constant, _ASO.PushOptions, {}, end) movhide.pro##+js(set-constant, _ASO.loadPushHelper, noopFunc, complete) movhide.pro##+js(set-constant, _ASO.PushOptions, {}, complete) movhide.pro##+js(acs, _ASO.loadPushHelper, _ASO.PushOptions) movhide.pro##+js(aopw, _ASO.PushOptions) movhide.pro##+js(aopr, _ASO.PushOptions) sbnet.one##div[class*="jw-logo-top-right"]:remove() !sbnet.one##+js(set-constant, _ASO, {}) !sbnet.one##+js(set-constant, _ASO.loadPushHelper, noopFunc, end) !sbnet.one##+js(set-constant, _ASO.PushOptions, {}, end) sbnet.one##+js(set-constant, _ASO.loadPushHelper, noopFunc, complete) sbnet.one##+js(set-constant, _ASO.PushOptions, {}, complete) sbnet.one##+js(acs, _ASO.loadPushHelper, _ASO.PushOptions) sbnet.one##+js(aopw, _ASO.PushOptions) sbnet.one##+js(aopr, _ASO.PushOptions) sbnet.one##+js(acs, decodeURIComponent, window, parseInt) sbnet.one##+js(set-constant, isadb, false) sbnet.one##+js(set-constant, check, noopFunc) sbnet.one##^script:has-text(/console\.clear\(\);/):remove() sbnet.one##+js(remove-node-text, script, /console\.clear\(\);/gm) sbnet.one##:xpath(//script[contains(text(), 'console.clear')]):remove() sbnet.one##+js(acs, /console\.clear\(\);/) sbnet.one##+js(remove-node-text, script, /debugger;/gm) sbnet.one##^script:has-text(/debugger;/):remove() sbnet.one##:xpath(//script[contains(text(), 'debugger;')]):remove() !sbnet.one##+js(trusted-replace-node-text, script, /debugger;/gm, "") sbnet.one##+js(acs, minimalUserResponseInMiliseconds) sbnet.one##+js(aopw, minimalUserResponseInMiliseconds) sbnet.one##+js(aopr, minimalUserResponseInMiliseconds) sbnet.onee##+js(no-setTimeout-if, check) !sbnet.one##+js(aeld, /contextmenu|keydown/, /function\(e\)/) sbnet.one##+js(aeld, /contextmenu|keydown/) ! put this at the end of sbnet.one entries since it is a hard-coded path and removed elements above it would affect it. sbnet.one##:xpath("/html/body/div[4]"):remove() ||r3chedwiki.cfd^* ||vtlyycqqfrrtp.com^* ||raunowhy.xyz^* ||syqtoqhjkmu.xyz^* ||itdalmhykude.com^* ||justmysocks.net^* ||py.pl^* ||www.vultr.com^* ||cheapenleaving.com^* chedrives.com##script[jstcache]:remove() chedrives.com##+js(acs, jstcache) chedrives.com##+js(aopw, window.JsEvalContext) chedrives.com##+js(aopr, window.JsEvalContext) chedrives.com##+js(set-constant, atOptions, {}) chedrives.com##+js(aopw, atOptions) chedrives.com##+js(aopr, atOptions) chedrives.com##iframe[src^="https://www.hostmonster.com/track/"]:remove() chedrives.com##div[id="gdpr-cookie-notice"]:remove() chedrives.com##a[role="button"][href^="https://start3dfile33.com/"]:remove() ||chedrives.com/sw.js$important,document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||www.hostmonster.com/track/liusufang2/$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||start3dfile33.com^* ||88847aa1c0.8353e36c2a.com^* ||lumpbackstage.com^* hifi2007reviews.com##html:remove-class(mh-disable-sb) hifi2007reviews.com##html:remove-attr(nighteyeplgn) ||hifi2007reviews.com/cdn-cgi/zaraz/s.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css !hifi2007reviews.com##+js(set-constant, cO, {}) !hifi2007reviews.com##+js(set-constant, cO.zaraz, noopFunc, end) hifi2007reviews.com##+js(set-constant, cO.zaraz, noopFunc, complete) hifi2007reviews.com##+js(aopw, cO.zaraz) hifi2007reviews.com##+js(aopr, cO.zaraz) hifi2007reviews.com##+js(aopw, adsbygoogle) hifi2007reviews.com##+js(aopr, adsbygoogle) hifi2007reviews.com##ins[data-ad-client]:remove() hifi2007reviews.com##iframe[id^="google_ads_frame"]:remove() hifi2007reviews.com##iframe[id^="aswift_"]:remove() ||byfblhtjhhn.com^* ||gfkhapiuxjkspbq.xyz^* ||mihgqnxfvngq.com^* ||rpnhaykqv.com^* ||mufflealiases.com^* ||bumpyremittancecarnivorous.com^* ||www.qfind.net^* ||igylwxvxgsuvcs.xyz^* ! *.ssl0d.com hosts contain the video files for slmaxed.com/streamlare.com !||www-hzc9228.ssl0d.com^* !||www-seq40452.ssl0d.com^* ||slmaxed.com/js/ad-blocker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||streamlare.com/js/ad-blocker.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css slmaxed.com,streamlare.com##+js(set-constant, window.AdBlock, false) ||slmaxed.com/blocked.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||streamlare.com/blocked.html$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ! removing file-embed prevents the video from loading. !slmaxed.com,streamlare.com##file-embed:remove() ! The following two acis lines prevent the video from loading. !slmaxed.com,streamlare.com##+js(acs, /console\.clear\(\);/, /^debugger;/) !slmaxed.com,streamlare.com##+js(acs, parseInt, console['clear']) ! TODO: Don't remove the entire script with debugger and console.clear()? slmaxed.com,streamlare.com##+js(trusted-replace-node-text, script, /^debugger;/gm, "") !slmaxed.com,streamlare.com##+js(remove-node-text, script, /debugger;/gm) slmaxed.com,streamlare.com##+js(trusted-replace-node-text, script, /^console\.clear\(\);/gm, "") !slmaxed.com,streamlare.com##+js(remove-node-text, script, /console\.clear\(\);/gm) slmaxed.com,streamlare.com##+js(set-constant, devtoolIsOpening, noopFunc) slmaxed.com,streamlare.com##+js(no-setTimeout-if, devtoolIsOpening) ! The following lines don't prevent the inline anti-adblock script from executing. slmaxed.com,streamlare.com##^script:has-text(/blocked\.html/):remove() slmaxed.com,streamlare.com##+js(remove-node-text, script, /blocked\.html/gm) slmaxed.com,streamlare.com##^script:has-text(ad-blocker):remove() slmaxed.com,streamlare.com##+js(remove-node-text, script, /ad\-blocker/gm) slmaxed.com##div[class="container"]:style(margin-left: 0px !important; margin-right: 0px !important; padding-left: 10px !important; padding-right: 10px !important;) slmaxed.com##div[class="col-12 mb-2"]:has(div[class="embed-responsive embed-responsive-16by9"]):style(margin-left: 0px !important; margin-right: 0px !important; padding-left: 10px !important; padding-right: 0px !important; width: 99vw !important; height: 99vh !important;) slmaxed.com##div[class="embed-responsive embed-responsive-16by9"]:style(margin-left: 0px !important; margin-right: 0px !important; padding-left: 10px !important; padding-right: 0px !important; width: 99vw !important; height: 99vh !important;) ! The following two style rules are optional is the container above has already been expanded. slmaxed.com##iframe[src*="/e/"]:style(width: 99vw !important; height: 99vh !important;) slmaxed.com##div[id="player"]:style(left: 0px !important; right: 0px !important; padding: 0 !important; margin: 0 !important; border: none !important; border-width: 0 !important; max-width: 100vw !important; width: 99vw !important; max-height: 100vh !important; height: 99vh !important; user-select: all !important; pointer-events: all !important;) slmaxed.com##div[id="player"]:remove-class(vjs-controls-disabled) slmaxed.com##+js(remove-class, vjs-controls-disabled, div[id="player"]) slmaxed.com##+js(add-class, vjs-controls-enabled, div[id="player"]) slmaxed.com##+js(trusted-set-attr, div[id="player"], crossorigin, anonymous) slmaxed.com##+js(trusted-set-attr, div[id="player"], preload, metadata) slmaxed.com##div[class="alert alert-info mb-2"]:remove() !||slmaxed.com,streamlare.com^$inline-script ! The domain name in the following rule is a redirect for streamlare.com. !||62971.bodis.com^* ||www.ahnioppshfwq.com^* ||www.tqmibkqlwqdysi.com^* ! ww1.educ.top is iframe for www.sawlive.net !||ww1.educ.top^* ||alsindustrateb.info^* ||vesofefinego.info^* ||d2fhrdu08h12cc.cloudfront.net^* ||dolatiaschan.com^* ||www.ohwhdspj.com^* ||zighoacm.com^* ||lp.pickmysearch.com^* ||www.edqbparlheuj.com^* ||edqbparlheuj.com^* ! TODO: In the following rule, do not include crichd.com.co (and its redirects www.crichd.com, crichdstreaming.com, watch.crichd.run, hd.crichd.run) since it has button to optionally open the chat window? !||st.chatango.com/js/gz/emb.js$3p,script,domain=methstreams.com|time4tv.stream|time4tv.xyz|the.buffstream.io|daddylive.watch|thedaddy.to|freestreams-live.my|freestreams-live.ga|freestreams-live1.im|fsl-streams.click|klubsports.online|cdn.stream-24.net|crichd.com.co|www.crichd.com|crichdstreaming.com|watch.crichd.run|hd.crichd.run|crichd.lc|www.crichd.live|crichd.info|stream.crichd.live|crichd.tv|crichdplayer.com|stream.crichd.vip !||st.chatango.com^$script,domain=methstreams.com|time4tv.stream|time4tv.xyz|the.buffstream.io|daddylive.watch|thedaddy.to|freestreams-live.my|freestreams-live.ga|freestreams-live1.im|fsl-streams.click|klubsports.online|cdn.stream-24.net|crichd.com.co|www.crichd.com|crichdstreaming.com|watch.crichd.run|hd.crichd.run|crichd.lc|www.crichd.live|crichd.info|stream.crichd.live|crichd.tv|crichdplayer.com|stream.crichd.vip !||st.chatango.com^$all,domain=methstreams.com|time4tv.stream|time4tv.xyz|the.buffstream.io|daddylive.watch|thedaddy.to|freestreams-live.my|freestreams-live.ga|freestreams-live1.im|fsl-streams.click|klubsports.online|cdn.stream-24.net|crichd.com.co|www.crichd.com|crichdstreaming.com|watch.crichd.run|hd.crichd.run|crichd.lc|www.crichd.live|crichd.info|stream.crichd.live|crichd.tv|crichdplayer.com|stream.crichd.vip ||st.chatango.com^$3p,domain=methstreams.com|time4tv.stream|time4tv.xyz|the.buffstream.io|daddylive.watch|thedaddy.to|freestreams-live.my|freestreams-live.ga|freestreams-live1.im|fsl-streams.click|klubsports.online|cdn.stream-24.net|crichd.com.co|www.crichd.com|crichdstreaming.com|watch.crichd.run|hd.crichd.run|crichd.lc|www.crichd.live|crichd.info|stream.crichd.live|crichd.tv|crichdplayer.com|stream.crichd.vip st.chatango.com##div[id="taboola-chat-article-thumbnails"]:remove() st.chatango.com##div[class="sdlg-title-bg-hidden"]:remove() st.chatango.com##div[class="sdlg-sc"]:has(div[class="OUTBRAIN"][data-widget-id]):remove() st.chatango.com##div[id="groupcover"]:remove() st.chatango.com##script[id="tb_loader_script"]:remove() st.chatango.com##script[id="tsjson"]:remove() st.chatango.com##+js(set-constant, window._taboola, []) ! The following rule prevent the chat widget from working. !st.chatango.com##+js(set-constant, _chatangoTagserver, {}) tutorialzine.com##+js(set-constant, _gaq, []) tutorialzine.com##+js(abort-on-property-write, _gaq) tutorialzine.com##+js(abort-on-property-read, _gaq) www.playmods.net##div[class="cookie-fl"]:remove() www.playmods.net##div[class^="cookie-menu"]:remove() www.playmods.net##div[class^="gpt-banner"]:remove() www.playmods.net##div[id="banner-ad"]:remove() www.playmods.net##div[class*="recommend-container"]:has(div[id^="yandex_rtb_"]):remove() www.playmods.net##div[id^="yandex_rtb_"]:remove() www.playmods.net##iframe[id="ads-iframe"]:remove() www.playmods.net##+js(abort-on-property-read, isCookieAds) www.playmods.net##+js(abort-on-property-write, isCookieAds) www.playmods.net##+js(set-constant, isCookieAds, 1) !www.playmods.net##+js(set-constant, window.adsTag, {}) !www.playmods.net##+js(set-constant, window.adsTag.renderAds, noopFunc, end) www.playmods.net##+js(set-constant, window.adsTag.renderAds, noopFunc, complete) www.playmods.net##+js(acs, window.adsTag.renderAds) www.playmods.net##+js(acs, /window.yaContextCb.push\(/) www.playmods.net##+js(acs, /Ya.Context.AdvManager.render\(/) ||qn-resource.playmods.net/www/*/static/css/exclusive/include/cookie.css$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||qn-resource.playmods.net/www/*/static/js/cookie_msg.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||sdk.enjoy4fun.com/cdn/prebid/*/prebid.min.js$document,subdocument,script,inline-script,font,inline-font,popup,popunder,other,image,xhr,ping,media,css ||ce.ditchesteenish.com^* ||zr.changarreviver.com^* ||valvalnumbest.com^* ! kepplir.com may serve video files !||kepplir.com^* ! ww.livemodo.click may serve video files !||ww.livemodo.click^* embed2.megaxfer.ru##+js(set-constant, inIframe, trueFunc) embed2.megaxfer.ru##+js(acs, inIframe) embed2.megaxfer.ru##meta[http-equiv="refresh"]:remove() ! TODO: test the following rule to make sure it does not remove wanted content yarnpkg.com##div[class^="css-"]:has(div[class^="css-"], p, a[href="https://war.ukraine.ua/support-ukraine/"]):remove() !Uncaught TypeError: cannot declare global binding 'freed': property must be configurable or both writable and enumerable !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, freed, noopFunc) !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(acs, /freed\(\)/) ! TODO: remove the go() function? ! Uncaught TypeError: cannot declare global binding 'go': property must be configurable or both writable and enumerable !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, go, noopFunc) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##a[onclick="go();"]:remove-attr(onclick) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(remove-attr, onclick, a[onclick="go();"]) ! dropgalaxy.co,dropgalaxy.com,dropgalaxy.in,dropgalaxy.vip,techssting.com,financemonk.net,newsindi.com are dropgalaxy domains ! changing the brute variable will trigger the anti-adblocking script @ dropgalaxy !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(abort-on-property-read, brute) !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(abort-on-property-write, brute) ! setting brute to [] also makes the fetch script continually contact the site !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, brute, []) ! changing the ads variable will trigger the anti-adblocking script @ dropgalaxy !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(abort-on-property-read, ads) !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(abort-on-property-write, ads) ! setting ads to [] also makes the fetch script continually contact the site !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, ads, []) ! blocking all xhr and fetch will prevent downloads !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(no-fetch-if, /^/) !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(no-xhr-if, /^/) !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-replace-node-text, script, /^debugger;/gm, "") !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-replace-node-text, script, /s.src =|s.src/i) !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-replace-node-text, script, /script1.src|script2.src/, lol.noop) ! div[class="adsbox"] is part of the anti-adblocking test/check. !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##div[class="adsbox"]:remove() ! The countdown div tag is needed because the countdown is still used. !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##div[id="countdown"]:remove() ! removing stickyunit triggers the anti-adblock script @ dropgalaxy !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##div[id="stickyunit"]:remove() ! Do NOT remove #apkad or #apkad2 as it removes the download form. !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##[id^="apkad"]:remove() !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##div[id="apkad2"]:remove() ! Do NOT remove span[id="vi-smartbanner"] since it removes the download form. !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##span[id="vi-smartbanner"]:remove() ! The following 14 "badfilter" rules are necessary because these rules are present in the "uBlock filters – Quick fixes" list. The first one will prevent the rules in this list with cosmetic filters from working. ! Appending "badfilter" to any instance of static network filter will prevent the loading of that filter. ! generichide/ghide in an exception filter will turn off generic cosmetic filtering which are filters that apply to all pages, e.g. ##.ad-class . ! TODO: Despite the following two rules, the cosmetic filters are not applied for this site if the uBlocker Origin logger window is opened while loading the Dropgalaxy website. Is this a bug in uBlock Origin? @@||dropgalaxy.$generichide,badfilter ! TODO: Is the following rule needed too since it is functionally equivalent to the preceding rule? @@||dropgalaxy.*^$ghide,badfilter @@||histats.com/js.js$script,domain=dropgalaxy.*,badfilter @@||popads.net/js/adblock.js$script,domain=dropgalaxy.*,badfilter @@||cdn.jsdelivr.net/gh/prebid/*$script,domain=dropgalaxy.*,badfilter @@||fundingchoicesmessages.google.com^$script,domain=dropgalaxy.*,badfilter @@||googlesyndication.com^$image,from=financemonk.net|dropgalaxy.*,badfilter @@*$script,xhr,from=dropgalaxy.*,to=googlesyndication.com|doubleclick.net|rsc.cdn77.org|vlitag.com|adoto.net|a2zapk.com|login.popmonetizer.com,badfilter *$frame,redirect-rule=noopframe,domain=dropgalaxy.*,badfilter *$frame,redirect-rule=noopframe,from=dropgalaxy.*,badfilter *$image,redirect-rule=32x32.png,domain=dropgalaxy.*,badfilter *$script,redirect-rule=noopjs,domain=dropgalaxy.*,badfilter *$script,redirect-rule=noopjs,from=dropgalaxy.*,badfilter *$xhr,redirect-rule=nooptext,domain=dropgalaxy.*,badfilter *$xhr,redirect-rule=nooptext,from=dropgalaxy.*,badfilter !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##div[id="analytics"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com###analytics:remove() ! TODO: The element in the following rule is used for anti-adblocking; the id does not change. dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##image[id="dmAZuTknHuCIIWY"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-replace-node-text, script, /if\s?\(dmAZuTknHuCIIWY\s?==\s?\d\)/gm, if (null)) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-replace-node-text, script, /\$\("#dmAZuTknHuCIIWY"\)\.remove\(\);/gm, null;) !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(aopr, dmAZuTknHuCIIWY) !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(aopw, dmAZuTknHuCIIWY) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com###gdpr-cookie-notice:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com###nativefluid:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##div[id="betad"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##div[class="ad-container"]:remove() ! The following three rules also each eliminate a Google Tag script, but before the script is executed? !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##div[id="protag-in_content-ad-unit"]:remove() !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##div[id="protag-before_content-ad-unit"]:remove() !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##div[id="protag-after_content-ad-unit"]:remove() !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##div[id="protag-before_content"]:remove() !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##div[id="protag-native-after_content"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##div[id^="protag-"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(remove-node-text, script, /window\.protag\.cmd\.push\(/gm) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-replace-node-text, script, /(window\.)?googletag\.enableServices\(\);/gm, null;) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-replace-node-text, script, /googletag\.cmd\.push\(/gm, console.log() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-replace-node-text, script, /googletag\.display\(/gm, console.log() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##div[id^="gpt-passback-dropgalaxy.com.Banner"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##div[id^="vi-smartbanner"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##div[id="uniconsent-config"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##div[id^="gpt-passback-dropgalaxy"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##div[id^="div-gpt-ad-"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##ins[class="adsbygoogle"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(acs, gdpr-cookie-consent) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(aopr, gdpr-cookie-consent) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(no-window-open-if) ! Do NOT abort on document.onkeydown because it is in the same inline script as the download token generation function call. dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(remove-node-text, script, /document\.onkeydown\s?=\s?function\([a-zA-Z]\)/gm) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, document.onkeydown, noopFunc) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(aopr, document.oncontextmenu, document.onmousedown, document.onmouseup) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(aopw, document.oncontextmenu, document.onmousedown, document.onmouseup) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(acs, document.oncontextmenu, document.onmousedown, document.onmouseup) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(remove-attr, oncontextmenu, body[oncontextmenu]) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##body[oncontextmenu]:remove-attr(oncontextmenu) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(remove-node-text, script, /ondevtool(open|close):\s?[a-zA-Z]/gm) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(remove-node-text, script, /[a-zA-Z]\.onDevTool(Open|close)\(\)/gm) !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##script[disable-devtool-auto]:remove() ! The values in the following six rules will actually be strings ("false") not booleans. dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-attr, script[disable-devtool-auto], clear-log, false) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-attr, script[disable-devtool-auto], disable-select, false) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-attr, script[disable-devtool-auto], disable-copy, false) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-attr, script[disable-devtool-auto], disable-cut, false) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-attr, script[disable-devtool-auto], disable-paste, false) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-attr, script[disable-devtool-auto], disable-menu, false) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-attr, script[disable-devtool-auto], url, "") dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(remove-node-text, script, /function disableCtrlKeyCombination\([a-zA-Z]\)/gm) ! The following rule isn't really necessary since the previous rule removes the entire inline script. dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-replace-node-text, script, /document\.on(contextmenu|mousedown|mouseup)\s?=\s?mousehandler;/gm, null;) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, disableCtrlKeyCombination, falseFunc) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, forbiddenKeys, []) ! Uncaught TypeError: cannot declare global binding 'mousehandler': property must be configurable or both writable and enumerable !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, mousehandler, noopFunc) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(remove-cookie, /^/) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, window.isAdblockActive, false) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-replace-node-text, script, /window\.isAdblockActive\s?=\s?true;/gm, window.isAdblockActive = false;) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, downloadTimer, noopFunc) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(no-setTimeout-if, /downloadTimer/) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, got, 0) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, noFetchIf, noopFunc) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, pageData, {}) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, remaining, 0, stay) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, responsiveAdSlot1, null) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, responsiveAdSlot2, null) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, responsiveAdSlot3, null) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, responsiveAdSlot4, null) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, scriptletGlobals, noopFunc) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, window._initAds, false) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, window.protag, {}) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, xhrInstances, noopFunc) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, adUrl, "") dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, script.src, "", complete) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, script1.src, "", complete) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, script2.src, "", complete) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, supportedBrowsers, "") ! asfgfga() is an anti-adblock function that sets the XD input value to 1 instead of the proper token value; it also submits the form. ! Don't redefine asfgfga() in the following rule because it causes a "Uncaught TypeError: cannot declare global binding 'asfgfga': property must be configurable or both writable and enumerable" error. ! Instead remove calls to asfgfga() in the countd.js script. !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, asfgfga, noopFunc) ! Uncaught TypeError: cannot declare global binding 'triggerError': property must be configurable or both writable and enumerable !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, triggerError, noopFunc) ! the fttch() function sets the testty value !Uncaught TypeError: cannot declare global binding 'fttch': property must be configurable or both writable and enumerable !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, fttch, noopFunc) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, Error, noopFunc) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, elementExists, true) ! time zones are used to determine if anti-adblocking will be used. dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, supportedTimezoness, []) ! set timezone offset to Bangladesh's timezone offset (Asia/Dhaka) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-set-constant, userTimezoneOffset, -360) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-set-constant, userTimezone, 'Asia/Dhaka') dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, loaded, true) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, downloadbtn.disabled, false, complete) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, hasValueOne, false) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, erds, noopFunc) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, scriptLoaded, noopFunc) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, checkScript1Loaded, noopFunc) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(remove-node-text, script, /function runAfterGptLoaded\(\)/gm) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, runAfterGptLoaded, noopFunc) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(remove-node-text, script, /function ggggg\(\)/gm) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, ggggg, noopFunc) !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(aeld, ggggg) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-replace-node-text, script, /document\.addEventListener\(['"]DOMContentLoaded['"]\,\s?ggggg\);/gm, null;) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, image.onerror, noopFunc) ! The id's with a value of 0 probably could be successfully removed, but only would be needed if they are otherwise triggered to a non-zero value. ! TODO: set testty input tag to 5 or 99? or remove altogether to defuse anti-adblocking? Setting to 99 works as does an empty value. dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-attr, input[id="testty"], value, 99) !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##input[id="testty"]:remove() !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##input[id="testty"][value]:remove-attr(value) !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(remove-attr, value, input[id="testty"][value]) ! TODO: set bich to 11 or remove altogether to defuse anti-adblocking? Setting to 11 works. dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-set-attr, input[id="bich"], value, "11") !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##input[id="bich"]:remove() ! setting asaf to 22 works dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-attr, input[id="asaf"], value, 22) !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-attr, input[id="adblock_check"], value, 0) ! TODO: could input[id="adblock_check"] be removed and downloads still work? An empty value does work. !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##input[id="adblock_check"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##input[id="adblock_check"]:remove-attr(value) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(remove-attr, value, input[id="adblock_check"]) ! dropgalaxyisbest value is string not int. dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-set-constant, dropgalaxyisbest.value, "0") ! TODO: There are two input tags with id="dropgalaxyisbest"; The first one should have a value of "0" and the second one a value of "1". ! By default the value of the first dropgalaxyisbest input tag is set to "", and the value of the second one is 1. dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-set-attr, input[id="dropgalaxyisbest"][value=""], value, "0") dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-attr, input[id="downloadhashad"], value, 1) ! Setting adblock_detected to 1 works. dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-attr, input[id="adblock_detected"], value, 1) ! TODO: Don't manually set admaven_popup since existing value of 1 does not prevent download form from working successfully. dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-attr, input[id="admaven_popup"], value, 1) ! The following are the starting values: ! ! ! ! ! staring values for financemonk.net: ! <- get from countd.js ! ! ! ! ! There are two id="dropgalaxyisbest" tags. ! ! ! ! ! ! ! ! ! <- set with value from https://dg.a2zupload.com/dlhash.php which returns an IP address 67.162.204.11 ! ! ! ! ! An empty value for downloadhash works. !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-attr, input[id="downloadhash"], value, 0) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(remove-attr, value, input[id="downloadhash"]) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##input[id="downloadhash"]:remove-attr(value) ! A value of 1 works for adb and adsns. $("#adsns").val('1'); is currently commented out. 1 is the default value. dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-attr, input[id="adb"], value, 1) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-attr, input[id="adsns"], value, 1) ! TODO: A value of 16 works for jslog. Always? dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-attr, input[id="jslog"], value, 16) ! TODO: A value of "track" works for ipn. Always? dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-set-attr, input[id="ipn"], value, track) ! TODO: input[id="gads"] has a default value of 1; Change to 0? ! $("#gads").val('0'); in the code but should force this value? dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-attr, input[id="gads"], value, 0) ! [dropgalaxy.com][set-constant, badip, false] Aborted because value set to true; blocking tmp.a2zapk.com/js/badip.js fixes this. dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, badip, false) ! badipp is no longer an input tag on the form. ! input[id="badipp"].value is set to 1 when using a VPN as determined by https://tmp.a2zapk.com/js/badip.js dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-attr, input[id="badipp"], value, 0) ! TODO: could input[id="badipp"] be removed and downloads still work? !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##input[id="badipp"]:remove() ! dgl is no longer an input tag on the form. !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-attr, input[id="dgl"], value, 1) ! TODO: is removing value attribute the same as setting it to "" with regards to validation by the server? !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##input[id="xd"][value="1"]:remove-attr(value) !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(remove-attr, value, input[id="xd"][value="1"]) ! TODO: a value of 0 also works for xd; No, it needs to be the same value as token variable. !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-set-attr, input[id="xd"][value="1"], value, "0") !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-attr, input[id="xd"][value="1"], value, "") ! TODO: Could input[id="xd"] be removed and downloads still work since a value of "" for XD works? !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##input[id="xd"][value="1"]:remove() ! TODO: It appears that any value above 1 for ppp will be successfully accepted, e.g. 6, 11 are examples. "" also works successfully. ! The value for ppp increases with every switch away from and return to (not fresh of) the page, i.e. views. !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-attr, input[id="ppp"][value=""], value, 6) !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-attr, input[id="ppp"][value=""], value, 11) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##input[id="ppp"]:remove-attr(value) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(remove-attr, value, input[id="ppp"]) ! An empty value for fnn works. dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##input[id="fnn"]:remove-attr(value) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(remove-attr, value, input[id="fnn"]) ! TODO: the id name in the following rule varies with each refresh of the page, but is always a total of six lowercase letters and sometimes numbers, i.e. [a-z0-9]{6} ! The following rule also changes any input tags with a value of 1 including dgl and admaven_popup to no ill effect. !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-attr, input[id][name][value="1"], value, 0) ! TODO: matches-attr() doesn't work in the following rule because the underlying javascript uses Document.querySelectorAll and "input[id][name][value="1"]:matches-attr(id=/[a-z0-9]{6}/) is not a valid selector". ! document.querySelectorAll('input[name][value="1"][id=/[a-z0-9]{6}/]'); is not valid !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-attr, input[id][name][value="1"]:matches-attr(id=/[a-z0-9]{6}/), value, 0) ! TODO: Could input[id=] be removed and downloads still work since a value of "0" works? !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##input[id][name][value="1"]:matches-attr(id=/[a-z0-9]{6}/):remove() !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##div[class^="modalpop"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##div[id="modalpop"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##div[id="modalpop-content"]:has(span:has-text(Adblock Detected!)):remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##*[id^="TR-"][tr-id][style*="z-index: 9999"] dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##div[id="creditDiv"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##div[id^="content-box-section-"]:has(div[class^="ad-layout-content"]):remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##div[id^="adm-container-"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##form[id="dfrom"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##button[id="method_free2"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-replace-node-text, script, /document\.getElementById\(["']method_free["']\)\.disabled\s?=\s?true/gm, document.getElementById("method_free").disabled = false) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(remove-attr, disabled, button[id="method_free"][disabled]) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##button[id="method_free"][disabled]:remove-attr(disabled) !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(remove-attr, style, button[id="method_free"][style]) !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##button[id="method_free"][style]:remove-attr(style) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##button[id="method_free"]:style(display: block !important; visibility: visible !important;) ! The following rule removes the countdown counter since the countdown has been defused. dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##div[id="countdown"]:remove() ! TODO: linksuccess() is called when the download form is submitted. Preventing this doesn't prevent the submission from succeeding? ! Uncaught TypeError: cannot declare global binding 'linksucess': property must be configurable or both writable and enumerable !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, linksucess, noopFunc) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, links, []) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, timeleft, 0) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-replace-node-text, script, /timeleft\s?=\s?\d+/gm, timeleft = 0) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-replace-node-text, script, /if\s?\(timeleft\s?\<=\s?0\)/gm, if (true)) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##button[id="dl"]:remove-attr(onclick) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(remove-attr, onclick, button[id="dl"]) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##button[id="downloadbtn2"]:remove-attr(onclick) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(remove-attr, onclick, button[id="downloadbtn2"]) ! Do NOT use remove-node-text here because it removes all of the text NOT just the portion specified in the rule. !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(remove-node-text, #text, /\s?wait\.+\d/gm) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-replace-node-text, #text, /\s?wait\.+\d*/gm, "") dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-replace-node-text, script, /none|hidden/, 0, condition, getComputedStyle) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-set-constant, ads, {"value": [""]}) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-set-constant, document.visibilityState, visible) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-set-constant, dgpromo, block) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-set-constant, displayValue, block) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-set-constant, pointer, block) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-set-constant, displayPropertyValue, block) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-set-constant, computedStyle, block) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-set-constant, statusTxt, success) ! css selector element doesn't work as input for trusted-replace-node-text !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-replace-node-text, button[id="method_free"], /Free Download\s?wait\.+\d?/, Free Download) ! set 0 in single quotes in the following rule as the script may require a string. !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, holymoly, 0) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-set-constant, holymoly, '0') dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-set-constant, document.querySelector("#downloadBtnClick").form, ff1) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-set-constant, document.querySelector("#downloadBtnClick").type, submit) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-set-attr, #downloadBtnClick, form, ff1) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-set-attr, #downloadBtnClick, type, submit) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-set-attr, button[id="downloadbtn"], type, submit) !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-set-attr, #downloadbtn, type, submit) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-set-attr, button[name="fs_download_file"], type, submit) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##button[id="downloadbtn"][disabled]:remove-attr(disabled) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(remove-attr, disabled, #downloadbtn[disabled]) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##button[id="downloadbtn"][style]:remove-attr(style) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(remove-attr, style, #downloadbtn[style]) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##button[id="downloadbtn"]:style(visibility: visible !important; display: block !important;) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##.btn-info.btn-sm.btn-block.btn:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##.btn-primary.btn-lg.btn-block.btn:remove-attr(onclick) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##.btn-primary.btn-lg.btn-block.btn:remove-attr(target) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##.ns-mulii-l-square-editorial:remove() !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##div[class="bottom-ad-container"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##.bottom-ad-container:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##.pgAdWrapper:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##.powered_ads:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##^script:has-text(/debugger;/):remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(remove-node-text, script, /debugger;/gm) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##^script:has-text(/disable\-devtool\-auto;/):remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(remove-node-text, script, /disable\-devtool\-auto;/gm) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##a[href^="https://bit.ly/"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##*[id^="aswift"]:style(display:none!important;) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##*[src^="//ad.a-ads.com/"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##p[id^="a-ads"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##a[target="_blank"]:has-text(Download):remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##a:style(display:block !important;) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##body > div[style^="position: fixed; display: block"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##body:style(visibility: visible !important; overflow: auto !important;) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##button[name="fs_download_file"]:remove-attr(disabled) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##button[id="dl"]:style(display:block !important;) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##button[id="downloadBtnClick"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##button[id="downloadBtnClick"]:style(visibility: hidden !important; display: none !important;) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##div[class="alert alert-danger mb-3"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##div[id="alert"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##div[id="alertmsg"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##div[id="main-frame-error"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##div[id="overlaypop"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##div[id="proxymsg"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##div[id="warning"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##div[id^="ad-section"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##div[data-ad-slot]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##iframe[id*="_mN_main_"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##iframe[id="VIEventStats"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##iframe[id="debug_vi-smartbanner-unit"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##iframe[src^="https://a2zapk.io/dl/postifram.php"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##iframe[src^="https://sync.quantumdex.io/usersync/pbjs"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##iframe[title="Criteo GUM iframe"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##iframe[v1018myxp]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##iframe[data-aa]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##img[id="load"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##img[v1018myxp]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##img[width="0"][height="0"][style="display:none;width:0;height:0;"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##meta[name="purpleads-verification"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, absda, noopFunc) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(acs, absda) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##script[onerror="absda()"]:remove-attr(onerror) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##script[onerror="absda()"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(remove-node-text, script, /script\d\.id\s?=\s?['"]interactive_js_adcode['"];/gm) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##script[id="interactive_js_adcode"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##vli[class="adsbyvli vliinterstial"]:remove() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-replace-node-text, script, /downloadBtn\.style\.display\s?=\s?["']none["'];/gm, downloadBtn.style.display = "inline-block";) !Uncaught TypeError: cannot declare global binding 'isMobileBrowser': property must be configurable or both writable and enumerable !dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, isMobileBrowser, trueFunc) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(set-constant, isIndianTimeZone, true) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-replace-node-text, script, /if\s?\(isMobileBrowser\(\)\)/gm, if (true)) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-replace-node-text, script, /return\s?\(\(regex\.test\(navigator\.userAgent\)\s?\|\|\s?touchCapable\)\s?\|\|\s?screenWidth\s?\<\s?1024\)\s?\&\&\s?isIndianTimeZone/gm, return true) ! remove-node-text (rmnt), , dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(remove-node-text, script, /document\.getElementById\(['"]a\-ads/gm) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(remove-node-text, script, /vitag\.Init\s=/gm) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-replace-node-text, script, /viAPItag\.display\(/gm, console.log() dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(remove-node-text, script, /return _0x[\da-fA-F]+\(\);/gm) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(remove-node-text, script, /script\.src\s?=\s?['"]\/adsbyg\.php/gm) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-replace-node-text, script, /elements\[i\]\.disabled\s?=\s?true;/gm, elements[i].disabled = false;) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-replace-node-text, script, /if\s?\(isDesktop\(\)\)/gm, if (null)) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-replace-node-text, script, /checkAndTestFunction\(func\);/gm, null;) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-replace-node-text, script, /if\s?\(\$\(["']#xd["']\)\.val\(\)\s?!=\s?1\)/gm, if (true)) dropgalaxy.*,techssting.com,financemonk.net,newsindi.com##+js(trusted-replace-node-text, script, /document\.write\(['"]\