bananaphonne / Randomizer for ACMP

// ==UserScript==
// @name         Randomizer for ACMP
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Adds random button for ACMP
// @author       Me
// @match        http://acmp.ru/index.asp?main=tasks
// @run-at       document-load
// @grant        none
// ==/UserScript==

(function() {
    var bttn = document.createElement('input');
    bttn.type = 'button';
    bttn.value = 'РАНДОООООМ';
    bttn.onclick = function()
    {
        var n = Math.floor(Math.random() * 700);
        var win = window.open('http://acmp.ru/index.asp?main=task&id_task=' + n, '_blank');
        win.focus();
    };
    var el = document.createElement('td');
    el.append(bttn);
    document.getElementsByTagName('form')[0].children[0].children[0].children[1].append(el);
})();