您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Autofills the wishing well donation amount to 25. Then targets the wish input to allow the user to just hit enter repeatedly. Change the item wish on line 25.
// ==UserScript== // @name Grundo's Wishing Well // @namespace http://tampermonkey.net/ // @version 0.1 // @description Autofills the wishing well donation amount to 25. Then targets the wish input to allow the user to just hit enter repeatedly. Change the item wish on line 25. // @author Gem // @match https://grundos.cafe/wishing/ // @match https://www.grundos.cafe/wishing/ // @icon https://www.google.com/s2/favicons?sz=64&domain=grundos.cafe // @require https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js // @grant none // ==/UserScript== /* globals $ */ (function() { 'use strict'; if (window.location.href.match('grundos.cafe/wishing/')) { let donation = document.querySelector('[name="donation"]') donation.value = 25; let wish = document.querySelector('[name="wish"]'); wish.value = 'Candychan Stamp'; document.querySelector('[name="wish"]').focus(); } })();