您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
ban csdn
// ==UserScript== // @name 屏蔽CSDN // @namespace http://tampermonkey.net/ // @version 0.1 // @description ban csdn // @author You // @match https://www.baidu.com/* // @icon https://img-home.csdnimg.cn/images/20211108111828.gif // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; // Your code here... window.addEventListener('load', function () { let results = document.querySelectorAll('.result') for (let i = 0; i < results.length; i++) { let item = [...results[i].children] if (item.length === 2) { var title = item[1].children[1].children[2].children[0].innerText if (title == '博客园'|| 'CSDN技术社区') { results[i].style.display = 'none' } } if (item.length === 4) { if (item[3].children[0]) { var title = item[3].children[0].innerText if (title === '博客园'|| 'CSDN技术社区') { results[i].style.display = 'none' } } } } }) })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址