Greasy Fork

Greasy Fork is available in English.

bilibili去广告

try to take over the world!

当前为 2018-09-12 提交的版本,查看 最新版本

// ==UserScript==
// @name         bilibili去广告
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  try to take over the world!
// @author       Yuuuuu
// @match        www.bilibili.com/*
// @grant        none
// ==/UserScript==

(function() {
    setTimeout(function(){
        var cl =  $(".gg-floor-module");
            cl.each(function(){
            $(this).remove()
        });
    },1000)

    // Your code here...
})();