您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Membean hack coded by Jake Ecker, for tech support call/text (513)-800-7888 , or send me a message on Skype: mjakee-99
当前为
// ==UserScript== // @name Jake Ecker's Membean HACK // @namespace none // @version 1.1 // @description Membean hack coded by Jake Ecker, for tech support call/text (513)-800-7888 , or send me a message on Skype: mjakee-99 // @author Jake Ecker // @match *://membean.com/training_sessions/* // @grant none // ==/UserScript== //will answer a question every 25 seconds. setInterval(function(){ if(document.getElementsByClassName("choice answer").length > 0){ document.getElementsByClassName("choice answer")[0].click(); } if(document.getElementById("next-btn")){ document.getElementById("next-btn").click(); } var choice = Math.floor(Math.random()*100) < 80; if(choice){ document.querySelectorAll("input[value=Pass]")[0].click(); }else{ document.querySelectorAll("input[value=Fail]")[0].click(); } }, 25000);