jdranczewski / Huge buttoner

// ==UserScript==
// @name         Huge buttoner
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Makes the Go button huge and opens the second year results.
// @author       Jakub Dranczewski
// @match        https://wwwe.imperial.ac.uk/OA_HTML/OA.jsp?page=/oracle/apps/igs/assessment/webui/ViewAcadHist*
// @require      http://code.jquery.com/jquery-1.12.4.min.js
// @grant GM_addStyle
// @copyright 2018, jdranczewski (https://openuserjs.org/users/jdranczewski)
// @license MIT
// ==/UserScript==

(function() {
    'use strict';


    // Your code here...
    GM_addStyle('#igsGo1 img{width:340px;height:170px}');
    $(".xd")[1].click();
})();