// ==UserScript== // @name LYS-广告拜拜助手(适配手机) // @namespace http://tampermonkey.net/ // @version 1.2 // @description 1、净化百度搜索结果中推广广告;2、净化百度联盟推广广告;3、净化不知名的谷歌广告;…… // @author LYS // @match */* // @icon none // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; if (window.location.href.includes("pos.baidu.com/") || window.location.href.includes("googleads.g.doubleclick.net") || window.location.href.includes("pagead2.googlesyndication.com") || window.location.href.includes("tpc.googlesyndication.com")) { document.getElementsByTagName('head').innerHTML = ""; document.getElementsByTagName('title').innerHTML = "" document.getElementsByTagName('body')[0].innerHTML = '

—————— Killed It !——————

'; } if (window.location.href.includes("www.baidu.com/s?")) { setInterval(function () { $('#content_left div:contains("广告")').slideUp() }, 500) } if (window.location.href.includes("m.baidu.com/?")) { setInterval(function () { $('.ec_ad_results').hide() }, 500) } })();