您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
可以直接跳過進版圖頁面,不用再等進版圖載入啦。
当前为
// ==UserScript== // @name 巴哈姆特之訂閱看板跳過進版圖頁面 // @description 可以直接跳過進版圖頁面,不用再等進版圖載入啦。 // @namespace nathan60107 // @version 1.2 // @author nathan60107(貝果) // @homepage https://home.gamer.com.tw/homeindex.php?owner=nathan60107 // @include *gamer.com.tw/* // @grant none // ==/UserScript== var times=0, limits=10; var run = function(obj){//若必要的資料還沒讀取成功就過1秒再問一次 若讀取成功就更改連結並離開 至多等待[limits]秒 if(typeof obj.topBarMsgList_forum == 'undefined' && times<limits){ times++; setTimeout(function(){run(obj);}, 1000); }else{ for(var i=0; i<obj.topBarMsgList_forum.children.length; i++){ obj.topBarMsgList_forum.children[i].href = obj.topBarMsgList_forum.children[i].href.replace("A.php", "B.php"); } } }; (function() { var obj = document.getElementsByClassName("TOP-msglist TOP-board"); TOPBAR_show('forum', '');//展開看板按鈕以讀取連結 run(obj); TOPBAR_show('forum', '');//關上看板按鈕 })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址