b-danmaku-high none display

try to take over the world!

Versione datata 07/11/2020. Vedi la nuova versione l'ultima versione.

// ==UserScript==
// @name         b-danmaku-high none display
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        *://www.bilibili.com/bangumi/*
// @grant        none
// ==/UserScript==
//本来想参考bilihelper来写 但是太花时间了 简单做一个算了
(function() {
    'use strict';
    setInterval(function(){
        var info = document.getElementsByClassName("b-danmaku-high");
        if(info.length){
            let length=info.length;
            for(let i=0;i<length;i++){
                info[i].style.display = "none";
            }
        }
    }, 500);
    // Your code here...
})();