Greasy Fork

屏蔽CSDN

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'
        }
      }
    }
  }
})
})();