Greasy Fork is available in English.

百度搜索csdn结果优化

隐藏百度搜索中csdn自己推广的 含有 csdn已为您找到关于 的搜索项!

// ==UserScript==
// @name         百度搜索csdn结果优化
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  隐藏百度搜索中csdn自己推广的 含有 csdn已为您找到关于 的搜索项!
// @author       Jie
// @match        https://www.baidu.com/s?*
// @grant        none
// @namespace       https://greasyfork.org/users/705477
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js
// ==/UserScript==

jQuery.noConflict();
(function() {
    'use strict';
    $('.result .c-abstract').each(function(i)
    {
        if($(this).text().indexOf('csdn已为您找到关于')>-1)
        {
            $(this).parent().hide()
            
        }
        
    })
})();