Skip to content

Instantly share code, notes, and snippets.

@nijssen
Created March 17, 2019 01:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nijssen/8fcad9bdfe7a5926b9142144c65b4754 to your computer and use it in GitHub Desktop.
Save nijssen/8fcad9bdfe7a5926b9142144c65b4754 to your computer and use it in GitHub Desktop.
WDYT auto-save
// ==UserScript==
// @name WDYT auto-save
// @namespace http://tampermonkey.net/
// @match https://www.applyweb.com/eval/new/student
// @require https://code.jquery.com/jquery.js
// @grant none
// ==/UserScript==
(function() {
'use strict';
setInterval(function() { jQuery("button.btn-form-submit:contains(Save)").click(); }, 1000*60*2);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment