小孩子不懂事写着玩的,这么基础的功能居然一直没其他人做过,,,
// ==UserScript== // @name bilibili b站动态页右侧不展示公告与话题 // @description 小孩子不懂事写着玩的,这么基础的功能居然一直没其他人做过,,, // @namespace http://tampermonkey.net/ // @version 1.01 // @author 404eyeman // @match *://t.bilibili.com/* // @match *://t.bilibili.com // @icon https://www.google.com/s2/favicons?sz=64&domain=bilibili.com // @grant none // @license MIT // ==/UserScript== var a=function() { document.querySelector(".right").style.display='none'; document.querySelector(".bili-dyn-banner").style.display='none'; document.querySelector(".topic-panel").style.display='none'; }; setTimeout(a,180); setTimeout(a,1080); setTimeout(a,2080);