Greasy Fork

虫部落去广告

2020/4/10 下午9:23:47

目前为 2020-04-10 提交的版本。查看 最新版本

此脚本不应直接安装,它是一个供其他脚本使用的外部库。如果您需要使用该库,请在脚本元属性加入:// @require https://update.greasyfork.icu/scripts/400309/790703/%E8%99%AB%E9%83%A8%E8%90%BD%E5%8E%BB%E5%B9%BF%E5%91%8A.js

// ==UserScript==
// @name             虫部落去广告
// @namespace        Violentmonkey Scripts
// @match            *://*.chongbuluo.com/
// @grant            none
// @version          1.0
// @author           Senkita
// @description      2020/4/10 下午9:23:47
// @require          https://cdn.bootcss.com/jquery/3.4.1/jquery.min.js
// ==/UserScript==

(function(){
senInterval(function(){
     // Google搜索
     $(window.frames["engine"].doucment).find('.swiper_wrap').remove();
     // Wikipedia
     $(window.frames["engine"].doucment).find('.search').remove();
     // 百度高级
     $(window.frames["engine"].doucment).find('.#ft').remove();
 },1000);
})();