您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
查杀页面浮动广告
当前为
// ==UserScript== // @name jsKillAD // @namespace jsKillAD // @description 查杀页面浮动广告 // @description:en Kill AD on page // @author xinggsf // @homepageURL https://gf.qytechs.cn/scripts/7410 // updateURL https://gf.qytechs.cn/scripts/7410/code/jsKillAD.user.js // downloadURL https://gf.qytechs.cn/scripts/7410/code/jsKillAD.user.js // @encoding utf-8 // @modified 01/12/2015 // @include http://* // @include https://* // @exclude http://*.mail.*/* // @exclude http://*mimg.127.net/* // @exclude http://*.csdn.net/postedit/* // @exclude http*://www.google.*/search?q=* // @exclude http://www.baidu.com/s?* // @exclude http://*share*.qq.com/* // @exclude http://video.sina.com.cn/* // @exclude http://*.1ting.com/* // @exclude http://*.gsmn.com.cn/* // @exclude http://*115.com/* // @exclude http://quote.futures.hexun.com/price.aspx?* // @run-at document-end // @grant none // @version 1.3 // ==/UserScript== (function () { var bc = Array.prototype.forEach; //Callback function getStyle(o, s) { if (o.style[s]) { //内联样式 return o.style[s]; } if (document.defaultView && document.defaultView.getComputedStyle) { //DOM //s = s.replace(/([A-Z])/g,'-$1').toLowerCase(); var x = document.defaultView.getComputedStyle(o, ''); return x && x.getPropertyValue(s); } } function testStyle(o) { var s = getStyle(o, 'position'); return s === 'fixed' || s === 'absolute'; } function isFloatLay(o) { var x = o.offsetParent; return !x || x.tagName === 'BODY' || x.tagName === 'HTML'; } function delNode(x) { x.parentNode.removeChild(x); } function scan(el) { ['iframe','img','object','embed'].forEach(function (s) { bc.call(el.getElementsByTagName(s), function (x) { while (x) { if (isFloatLay(x)) { //要删除的层得同时满足二个条件 if (testStyle(x)) {delNode(x);} break; }//else x = x.offsetParent; } }); }); } //document.addEventListener("DOMContentLoaded", function(){scan(document);}, false); scan(document); bc.call(frames, function (x) { try {scan(x.contentDocument);} catch (e) {} }); }) ();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址