参考代码作者wang-zhixin
// ==UserScript== // @name 屏蔽csdn // @namespace toolgood // @version 20240702 // @description csdn有目共睹的越来越恶心人,不得不采取措施。 // @match https://www.baidu.com/* // @grant none // ==/UserScript== function HideCSDN(){ const Elements=document.querySelectorAll(".result.c-container "); let num=0; Elements.forEach(function(Item,i){ let ele= Item.querySelector(".c-title a:first-child"); if(ele==null){return;} if(ele.innerText.includes("CSDN")){ Item.parentNode.removeChild(Item); num ++; } }); console.log(`共去除${num}条csdn内容`) } HideCSDN(); /*绑定键盘回车事件*/ document.querySelector("body").addEventListener('keydown',function () { //谷歌能识别event,火狐识别不了,所以增加了这一句,chrome浏览器可以直接支持event.keyCode var theEvent = window.event || arguments.callee.caller.arguments[0]; if (theEvent.keyCode == "13") {//keyCode=13是回车键 setTimeout(function(){ HideCSDN() },1000) } }) /*绑定单机事件*/ document.querySelector("body").addEventListener('click',function () { setTimeout(function(){ HideCSDN() },1000) })