Endor Mic

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

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

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

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

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

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

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

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.

(I already have a user style manager, let me install it!)

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