Greasy Fork is available in English.

哔哩哔哩播放页去广告

播放页去广告

Від 23.06.2021. Дивіться остання версія.

// ==UserScript==
// @name         哔哩哔哩播放页去广告
// @namespace    zzy
// @version      0.2
// @description  播放页去广告
// @author       You
// @match        https://www.bilibili.com/video/*
// @icon         https://www.google.com/s2/favicons?domain=baidu.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    function delad(){
        document.getElementById("bannerAd").remove();
        document.getElementsByClassName("ad-report")[0].remove();
    }
    setInterval(delad,5000);
    // Your code here...
})();