您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Auto selects multi-choice options for Wise King, Grumpy King, Symol Hole, Turmaculus, and Meteor. Forked from EatWoolooAsMuttonTiny's Grumpy Wise King autofill
// ==UserScript== // @name Neopets autofill // @author EatWoolooAsMuttonTiny, Tombaugh Regio // @version 1.4 // @namespace https://gf.qytechs.cn/users/780470 // @description Auto selects multi-choice options for Wise King, Grumpy King, Symol Hole, Turmaculus, and Meteor. Forked from EatWoolooAsMuttonTiny's Grumpy Wise King autofill // @include *://www.neopets.com/medieval/wiseking.phtml // @include *://www.neopets.com/medieval/symolhole.phtml // @include *://www.neopets.com/medieval/grumpyking.phtml // @include *://www.neopets.com/medieval/turmaculus.phtml // @include *://www.neopets.com/moon/meteor.phtml* // @license MIT // @grant none // ==/UserScript== function setElement() { switch(window.location.href.match(/\w+(?=\.phtml)/)[0]) { case 'turmaculus' : return 'select#wakeup option' case 'grumpyking': return '.form-container__2021 select option' case 'meteor': return 'form select option[value="1"]' case 'wiseking': case 'symolhole': return 'form select option' default: return '' } } document.querySelectorAll(setElement()).forEach((e, i, options) => options[ Math.floor(Math.random() * (options.length - 1)) + 1 ].selected = true)
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址