百度搜索去广告

去除百度搜索前面相关广告内容,让搜索更纯净

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @name         百度搜索去广告
// @namespace    http://tampermonkey.net/
// @version      0.0.1
// @description  去除百度搜索前面相关广告内容,让搜索更纯净
// @author       wll
// @require      https://cdn.jsdelivr.net/npm/jquery@3.6.0/dist/jquery.min.js
// @icon         https://img-blog.csdnimg.cn/20181221195058594.gif
// @match        https://www.baidu.com/s*
// @grant        none
// @note         版本更新	2022-01-04 0.0.1	去除百度搜索前面相关广告内容,让搜索更纯净

// ==/UserScript==

(function() {
    'use strict';

    function init(){
        $("._2z1q32z").remove().length>0?$("._2z1q32z").remove().length:"";
        //$(".result.c-container.new-pmd").remove().length>0?$(".result.c-container.new-pmd").remove():"";
    }
    window.setInterval(function() {init();}, 1000);

})();