您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Allows you to change the amount of spins in chihuahuaspin.com
// ==UserScript== // @name Chihuahuaspin Cheat // @namespace https://waa.ai/spinpy // @version 1.2 // @description Allows you to change the amount of spins in chihuahuaspin.com // @author Spinfal // @match http://www.chihuahuaspin.com/ // @grant none // ==/UserScript== (function() { 'use strict'; function change(amount) { if (isNaN(amount)) { alert('that wasnt a number.'); window.location.reload(); } else { document.getElementsByTagName("img")[0].src = 'http://cdn.funnyisms.com/d3540090-1765-4633-99ff-1bb3ba7e40ec.gif'; $(window).load(function (){ var spins = amount; setInterval(function () { spins = spins + 1; $("#spin").text(spins + " spin" + (spins != 1 ? "s" : "")); if (spins == 10) $("#ethan").show(); else if (spins == 17) $("#ethan").hide(); }, 4205); }); } } var set = prompt('amount of spins'); if (set === null) { change(0); } else { change(parseInt(set)); } // uwu - webhook test })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址