// ==UserScript== // @name 傲游哈哈广告AD haha.mx // @description 取消哈哈广告 // @include https://haha.mx/* // @include https://www.haha.mx/* // @include https://www.hahamx.cn/* // @require http://cdn.bootcss.com/jquery/1.11.3/jquery.js // @grant all // @version 1.00 // @namespace https://greasyfork.org/users/51281 // @downloadURL none // ==/UserScript== console.clear(); (function() { 'use strict'; function clearADS() { $(".sidebar-inner").remove(); $(".footer").remove(); } setInterval(function() { clearADS(); }, 1000); })(); console.log('遨游哈哈广告完成取消~~~~ by xh');