Warning: fopen(/www/sites/update.greasyfork.icu/index/store/temp/99f9cb26fe8e66bc2a649dfe565fd401.js): failed to open stream: No space left on device in /www/sites/update.greasyfork.icu/index/scriptControl.php on line 65
// ==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 // @downloadURL https://update.greasyfork.icu/scripts/435547/%E5%B1%8F%E8%94%BDCSDN.user.js // @updateURL https://update.greasyfork.icu/scripts/435547/%E5%B1%8F%E8%94%BDCSDN.meta.js // ==/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' } } } } }) })();