// ==UserScript== // @name adsRemove-common-exo-fucker // @namespace http://tampermonkey.net/ // @version 0.0.1 // @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/* // @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"] { display: none !important; } [id$="_video_container"] > [class$="_video_content_wrapper"] { display: none !important; } `); // https://www.hitxhot.org/gallerys/OThrOU5scG8yaDNNckkySFU1emtTdz09.html?page=1 })();