androidek / Cambridge Raven automatically bypass Log In Raven

// ==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();
});