NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Auto Reload IDC Moodle // @description Reload IDC moodle pages every 3 minutes to stay logged in // @include http://moodle.idc.ac.il/* // @grant none // ==/UserScript== var numMinutes = 3; function doReload() { location.reload(); } setInterval(doReload, numMinutes*60*1000);