NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Bypass truyentranh8 ads // @namespace http://tampermonkey.net/ // @version 0.2 // @updateURL https://openuserjs.org/meta/abcd123huy/Bypass_truyentranh8_ads.meta.js // @icon http://truyentranh8.net/favicon.ico // @description Bypass ads Truyentranh8.net // @author abcd123huy // @match http://*/* // @grant none // ==/UserScript== (function() { 'use strict'; if (window.location.hostname === "lps.sbro.me") { window.open(linkId,"_self"); } if (window.location.hostname == "truyentranh8.net") { $(".tt8quangcao").attr('style','display:none'); $('div.tt8quangcao').addClass('disabled'); } } )();