// ==UserScript== // @name NoBilibili // @namespace https://bbs.tampermonkey.net.cn/ // @version 0.2.0 // @description try to take over the world! // @author You // @match https://www.bilibili.com/* // @match https://search.bilibili.com/* // ==/UserScript== (function() { 'use strict'; let myhtml=` 好好学习,不要刷短视频,不要玩手机

好好学习,不要刷短视频,不要玩手机

好好学习,不要刷短视频,不要玩手机

刷短视频、玩手机不仅会浪费时间,还会影响你的学习和工作效率,让你远离成功。因此,我们呼吁大家要好好学习,不要刷短视频,不要玩手机。

开始学习

开始行动

现在就开始行动,让自己远离刷短视频和玩手机,专注于学习和工作。

立即行动
` window.onload=()=>{ // 选择需要观察变动的节点 const targetNode = document.querySelector('.header-channel'); const el=document.querySelector('.bili-feed4-layout') if(el){ el.innerHTML=myhtml document.querySelector('.inner-logo').remove() } // 观察器的配置(需要观察什么变动) const config = { attributes: true, childList: true,subtree:true}; const mutate=new MutationObserver(function(mutationsList, observer){ if(document.querySelector('.trending')) document.querySelector('.trending').remove() if(targetNode){ targetNode.remove() // mutate.disconnect() } }) if(targetNode) mutate.observe(targetNode,config) // 以上述配置开始观察目标节点 if(document.querySelector('.search-panel')) mutate.observe(document.querySelector('.search-panel'), config); if(document.querySelectorAll('.search-panel')[1]) mutate.observe(document.querySelectorAll('.search-panel')[1], config); } })();