Neopets autofill

Auto selects multi-choice options for Wise King, Grumpy King, Symol Hole, Turmaculus, and Meteor. Forked from EatWoolooAsMuttonTiny's Grumpy Wise King autofill

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Neopets autofill
// @author       EatWoolooAsMuttonTiny, Tombaugh Regio
// @version      1.4
// @namespace    https://greasyfork.org/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)