// ==UserScript== // @name bilibili去广告 // @namespace http://tampermonkey.net/ // @version 0.2 // @description try to take over the world! // @author Yuuuuu // @match *://bilibili.com/* // @grant none // @downloadURL none // ==/UserScript== (function() { setTimeout(function(){ var cl = $(".gg-floor-module"); cl.each(function(){ $(this).remove() }); },1000) // Your code here... })();