// ==UserScript== // @name 哈哈删除广告 haha.mx // @description 哈哈删除广告 // @include https://www.haha.mx/* // @require http://cdn.bootcss.com/jquery/1.11.3/jquery.js // @grant ao // @version 1.0 // @namespace https://greasyfork.org/users/25818 // @downloadURL none // ==/UserScript== console.clear(); (function() { 'use strict'; function clearAD() { $(".joke-list-item-ad").remove(); $(".anecdote-slider").remove(); } setInterval(function() { clearAD(); }, 1000); })(); console.log('完成');