博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Greasemonkey之去除百度搜索结果中的推广内容
阅读量:4501 次
发布时间:2019-06-08

本文共 430 字,大约阅读时间需要 1 分钟。

// ==UserScript==// @name        百度-搜索去除推广内容// @namespace   tt// @include     http://www.baidu.com/baidu?wd=*// @include     https://www.baidu.com/baidu?wd=*// @include     http://www.baidu.com/s?wd=*// @include     https://www.baidu.com/s?wd=*// @version     1// @grant       none// ==/UserScript==$('#3001').parent().hide();$('#4001').parent().hide();$('#5001').parent().hide();

 

转载于:https://www.cnblogs.com/hf1432/p/5076636.html

你可能感兴趣的文章
C#高级编程
查看>>
JS实现从照片中裁切自已的肖像
查看>>
使用 https://git.io 缩短 a GitHub.com URL.
查看>>
拷贝、浅拷贝、深拷贝解答
查看>>
NS3 实验脚本的编写步骤
查看>>
四元数
查看>>
【Linux】Linux查看程序端口占用情况
查看>>
微软职位内部推荐-Software Development Engineer
查看>>
Git常用命令
查看>>
VC 菜单OnUPdate事件
查看>>
Windows 2003+IIS6+PHP5.4.10配置PHP支持空间的方法(转)
查看>>
去除express.js 3.5中报connect.multipart() will be removed in connect 3.0的警告(转)
查看>>
Android WIFI 无缝切换 小结(1)
查看>>
BZOJ 5194--[Usaco2018 Feb]Snow Boots(STL)
查看>>
BS系统开发历程
查看>>
asp.net 设置回车的默认按钮 (转载)
查看>>
Palindrome Partitioning
查看>>
Microservice架构模式简介
查看>>
换种形式工作
查看>>
javascript中三种典型情况下this的含义
查看>>