您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Remove ADs from hanascan.com and rawdevart.com, make the pictures to be seen better on hanascan.com
当前为
// ==UserScript== // @name hanascan,rawdevart网站去广告 // @description Remove ADs from hanascan.com and rawdevart.com, make the pictures to be seen better on hanascan.com // @version 1.1 // @author Tinyblack // @namespace http://tampermonkey.net/ // @namespace http://gf.qytechs.cn/ // @include *://hanascan.com/* // @include *://rawdevart.com/* // @require https://code.jquery.com/jquery-3.5.1.min.js // @grant none // ==/UserScript== (function () { var func = "var web = window.location.href;var times = 0;function removead(){if(times<=5){$('iframe').remove();times++;if(web.match('hanascan')!=null){resetimg();}return 0;}else{return 1;}}function resetimg(){if(times<=5){$('img').each(function(){$(this).css('width','90');$(this).css('height','100%');});return 0;}else{return 1;}}"; function importjquery() { var ele = document.createElement("script"); ele.setAttribute("type", "text/javascript"); ele.setAttribute("src", "https://code.jquery.com/jquery-3.5.1.min.js"); document.head.appendChild(ele); } function writeinhtml (){ var rad = document.createElement("script"); rad.setAttribute("type", "text/javascript"); rad.innerHTML = func; document.head.appendChild(rad); } document.body.setAttribute("onmousemove","removead()"); importjquery(); writeinhtml(); //to prevent that script do not execute var web = window.location.href; if(web.match('hanascan')!==null) { $('.lazy.media-object.img-thumb').each( function() { $(this).css('width','90'); $(this).css('height','100%'); }); } $('iframe').remove(); return 0; })(); /* functions var web = window.location.href; var times = 0; function removead(){ if(times<=5) { $('iframe').remove(); times++; if(web.match('hanascan')!=null) { resetimg(); } return 0; } else{ return 1; } } function resetimg(){ if(times<=5) { $('img').each(function(){ $(this).css('width','90'); $(this).css('height','100%'); }); return 0; } else{ return 1; } } */
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址