去除动态页右侧话题栏
// ==UserScript==
// @name 去除b站动态页右侧话题栏
// @namespace http://tampermonkey.net/
// @version 0.1.2
// @description 去除动态页右侧话题栏
// @match https://t.bilibili.com/*
// @match https://www.douyu.com/*
// @grant none
// @author 401
// ==/UserScript==
setInterval(function () {
let pop = document.querySelector('.topic-panel');
let pop1 = document.querySelector('.LANTERNLOVERACT202201Bar-pre-bg');
if (pop != null) {
pop.remove();
}
if (pop1 != null) {
pop1.remove();
}
}, 100);