IITU Contester tools

Customize your contester

当前为 2016-11-01 提交的版本,查看 最新版本

// ==UserScript==
// @name         IITU Contester tools
// @namespace    https://greasyfork.org/ru/users/77226
// @version      0.1
// @description  Customize your contester
// @author       Diasonti CSSE-1611
// @match        http://contester.iitu.kz:*/*
// @license      Creative Commons; http://creativecommons.org/licenses/by/4.0/
// @require      https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js
// @grant        none
// ==/UserScript==
$(document).ready(function() {
    var a = true;
    $("body").click(function() {
        if(a) {
            var x = document.getElementById("m_acompiler").options[1];
            x.defaultSelected = true;
            a=false;
            show('m_code_as_file'); hide('m_code_as_text'); obj('m_take').value='file';
        }
    });
});