// ==UserScript== // @name 删除傲游哈哈广告 haha.mx // @description 删除哈哈广告 // @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.02 // @namespace https://greasyfork.org/zh-CN/users/270812-lakshyayi // @downloadURL none // ==/UserScript== console.clear(); (function() { 'use strict'; function clearAD() { $(".joke-list-item-ad").remove(); $(".anecdote-slider").remove(); $(".float-left-ad").remove(); } setInterval(function() { clearAD(); }, 1000); })(); console.log('完成');