// ==UserScript== // @name adsRemove-common-exo-fucker // @namespace http://tampermonkey.net/ // @version 0.0.2 // @description remove ads on websites if they use exo ads tool // @author exofucker // @match *://www.nude-pics.org/* // @match *://pornpic.com/* // @match *://www.hitxhot.org/* // @match *://memes.mobi/* // @grant GM_addStyle // ==/UserScript== // TODO: add more urls... (function() { 'use strict'; // fuck exo ads GM_addStyle(` [id$="_video_container"] { display: none !important; } div.exo_wrapper, video, iframe { display: none !important; } [class*="exo-ipp"], [id*="exo-im"] { display: none !important; } [id$="_video_container"] > [class$="_video_content_wrapper"] { display: none !important; } `); // https://www.hitxhot.org/gallerys/Q3hDTmJza21ibmdLaDlpMGFPakRoZz09.html })();