您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Adds links to hobopolis areas to the top pane
// ==UserScript== // @name Hobolinker // @namespace www.zaprocalypse.com // @description Adds links to hobopolis areas to the top pane // @include http://127.0.0.1:*/topmenu.php // @version 0.0.1.20180120224045 // ==/UserScript== var tmp = document.body.innerHTML; tmp = tmp.replace(/character<\/a/, '<a target="mainpane" href="showplayer.php?who=352918">Character</a '); document.body.innerHTML = tmp; var tmp = document.body.innerHTML; tmp = tmp.replace(/main<\/a>/, '<a target="mainpane" href="main.php">main</a> ' + '<a target="mainpane" href="place.php?whichplace=airport">airport</a>'); document.body.innerHTML = tmp; var tmp = document.body.innerHTML; tmp = tmp.replace(/woods<\/a>/, '<a target="mainpane" href="woods.php">woods</a> <br/> ' + '<a target="mainpane" href="place.php?whichplace=kgb">KGB</a> ' + '<a target="mainpane" href="council.php">council</a> ' + '<a target="mainpane" href="ascensionhistory.php?back=other&who=352918">ascensions</a> ' + '<a target="mainpane" href="managestore.php">store</a> ' + '<a target="mainpane" href="manageprices.php">prices</a> ' + '<a target="mainpane" href="storelog.php">sales</a> ' + '<a target="mainpane" href="clan_viplounge.php">VIP</a> ' + '<a target="mainpane" href="clan_viplounge.php?whichfloor=2">VIP2</a> ' + '<a target="mainpane" href="museum.php?floor=4&place=leaderboards&whichboard=4">leader</a> ' + '<a target="mainpane" href="clan_dreadsylvania.php">Dread</a> ' + '<a target="mainpane" href="clan_raidlogs.php">Logs</a> ' + '<a target="mainpane" href="sendmessage.php?toid=352918">Paz</a> ' + '<a target="mainpane" href="sendmessage.php?toid=514253">Derek</a>'); document.body.innerHTML = tmp;