Endor Mic

A key triggers Mic S key triggers play D key triggers submit

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name          Endor Mic
// @version        0.1
// @description    A key triggers Mic S key triggers play D key triggers submit  
// @author         Cristo
// @include        https://www.google.com/evaluation/endor*
// @copyright    2012+, You
// @namespace https://greasyfork.org/users/1973
// ==/UserScript==

var wig = document.getElementById("widget");
var kid = wig.getElementsByTagName("div")[0];
var rec = kid.getElementsByTagName("div")[0].firstChild.firstChild;
var play = kid.getElementsByTagName("div")[5].firstChild.firstChild;
document.addEventListener( "keydown", kas, false);
function kas(i) {
    if (i.keyCode == 65) { //A
        var trig = document.createEvent("MouseEvents");
        trig.initMouseEvent("mousedown", true, true, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null);
        rec.dispatchEvent(trig);
    }
    if (i.keyCode == 83) { //S
        var trig1 = document.createEvent("MouseEvents");
        trig1.initMouseEvent("mousedown", true, true, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null);
        play.dispatchEvent(trig1);
    }
    if (i.keyCode == 68) { //D
        document.getElementById("submitButton").click();
    }  
}