您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Press C on microscatter to win
`// ==UserScript== // @name MicroScatter Cheater Script // @namespace http://qsysmine.tk/ // @Version 0.1 // @description Press C on microscatter to win // @author qsysmine // @match https://quizlet.com/ // @grant none // @version 0.0.1.20180925181756 // ==/UserScript== (function() { var cheatTime = 0; window.setCheatTime = function(mils) { cheatTime = mils; }; var $ = window.jQuery; var cheat = function() { var ids = []; var checkhasid = function(id) { for(var i in ids) { if(ids[i] == id) { return true; } } return false; }; setTimeout(function() { $('.cell').each(function(index){ if(checkhasid($(this).attr("data-id"))) $('[data-id="' + $(this).attr("data-id") + '"]').trigger("click") if(!checkhasid($(this).attr("data-id"))) ids.push($(this).attr("data-id")); }); }, cheatTime); }; window.startWithTime = function(mils) { setCheatTime(mils); $('#start').trigger("click"); cheat(); }; var z = 0; $('*').keyup(function(e) { if(e.keyCode == 67 && z === 0 && $('#cells').hasClass("started")) {z = 1; cheat();} }); })();`
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址