Skip to content

Instantly share code, notes, and snippets.

@scoliono
Created February 19, 2016 20:20
Show Gist options
  • Save scoliono/518c9542d60ddc102d1d to your computer and use it in GitHub Desktop.
Save scoliono/518c9542d60ddc102d1d to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Membean Automater
// @namespace http://github.com/scoliono
// @version 1.0
// @description Script that does your Membean homework for you.
// @author scoliono
// @match http://membean.com/training_sessions/*
// @grant none
// ==/UserScript==
(function loop() {
var rand = Math.floor(Math.random() * (17500 - 6000 + 1000)) + 6000;
setInterval(function() {
document.getElementById('pass').click();
loop();
}, rand);
}());
// ==UserScript==
// @name Membean Hack
// @namespace http://github.com/scoliono
// @version v1.0
// @description Makes a "Pass" button visible, allowing the user to get a question correct by clicking it.
// @author scoliono
// @match http://membean.com/training_sessions/*
// @grant none
// ==/UserScript==
setInterval(function(){document.getElementById('pass').style.display = "block";},500);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment