您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
去除游侠简介中游戏截图中广告。
// ==UserScript== // @name 游侠游戏截图广告去除 // @description 去除游侠简介中游戏截图中广告。 // @version 1.0.8 // @namespace 游侠游戏截图广告去除 // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @author 会说话的鱼 // @include *//down.ali213.net/* // @require https://cdn.bootcdn.net/ajax/libs/jquery/1.9.1/jquery.min.js // @run-at document-start // @grant none // @rewritten_script_code javascript // ==/UserScript== (function () { 'use strict'; $(function () { init(); }); })(); function init() { var close_btn = $('<a href="javascript:void(0);" class="downInfoBtn" style="position: absolute;right: 0;top: 0;display: block;width: 60px;line-height: 30px;text-align: center;color: #FFF;background: red;">关闭</a>').click(function(){ $('.detailAlertBox').hide(); }); $('.downInfoBox').append(close_btn); $(window).on('scroll', function(){ if($('.detail_body_con_bb_con_con #gc0').length>0) { if($(window).scrollTop() + $(window).height() > $('.detail_body_con_bb_con_con #gc0').offset().top - 50) { $('.detail_body_con_bb_con_con #gc0').click(); } } if($('.nyfmt').length>0) { $('.nyfmt').hide(); } }); }
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址