您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Turns the Quest Log button into a normal link that you can middle- or right-click.
// ==UserScript== // @name Neopets Middle/Right-Click Quest Log Button // @namespace https://greasyfork.org/en/users/977735-naud // @version 0.1 // @description Turns the Quest Log button into a normal link that you can middle- or right-click. // @author Naud // @license MIT // @match *://www.neopets.com/* // ==/UserScript== var icon = document.querySelector(".nav-quest-icon__2020"); icon.removeAttribute("onclick"); icon.setAttribute("style", "display: block"); var wrapper = document.createElement("a"); wrapper.setAttribute("href", "/questlog/"); icon.parentNode.insertBefore(wrapper, icon); wrapper.appendChild(icon);