NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Cambridge Raven automatically bypass Log In Raven // @namespace http://tampermonkey.net/ // @version 1.2 // @description Automatically click Raven button when autouticating with Raven // @author Tomasz Pludowski // @match https://www.vle.cam.ac.uk/login/index.php // @match https://archive.vle.cam.ac.uk/login/index.php // @match https://www.assessment.vle.cam.ac.uk/login/index.php // @grant none // @license MIT // ==/UserScript== $(function(){ document.getElementsByClassName("btn btn-secondary btn-lg btn-block mt-3")[0].click(); });