屏蔽B站话题

disable bilibili's side topic

// ==UserScript==
// @name         屏蔽B站话题
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  disable bilibili's side topic
// @author       You
// @match        https://t.bilibili.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=bilibili.com
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    var i = setInterval(function(){
        checkTopic();
    }, 1000);
    function checkTopic() {
        var collection = document.getElementsByClassName("topic-panel");
        if(collection.length!=0) {
            collection[0].remove();
            clearInterval(i);
        }
    }
})();