您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
For use in the Cheeseroller game. Automatically selects 'Push Cheese Faster' in the game. Spam Enter!
// ==UserScript== // @name Grundo's Cheese Roller // @namespace http://tampermonkey.net/ // @version 0.2 // @description For use in the Cheeseroller game. Automatically selects 'Push Cheese Faster' in the game. Spam Enter! // @author Gem // @match https://grundos.cafe/medieval/cheeseroller/ // @match https://www.grundos.cafe/medieval/cheeseroller/ // @icon https://www.grundos.cafe/static/images/favicon.66a6c5f11278.ico // @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/medieval/cheeseroller/')) { if (document.querySelector('[name="cheese_name"]')) { document.querySelector('[name="cheese_name"]').value = 'Spicy Juppie Cheese'; } if (document.querySelector('[name="cheese_action"]')) { document.querySelector('[name="cheese_action"]').value = 2; } const submit = document.querySelector('form[action="/medieval/cheeseroller/"] input[type="submit"]'); const playAgain = document.querySelector('.button-group button:first-child'); document.addEventListener("keydown", (event) => { if (event.keyCode == 13) { if (submit) submit.click(); else if (playAgain) playAgain.click(); } }); } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址