您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
去除百度搜索前面相关广告内容,让搜索更纯净
// ==UserScript== // @name 百度搜索去广告 // @namespace http://tampermonkey.net/ // @version 0.0.1 // @description 去除百度搜索前面相关广告内容,让搜索更纯净 // @author wll // @require https://cdn.jsdelivr.net/npm/[email protected]/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); })();