handsoff

解放双手,空格暂停,回车播放

Version vom 13.11.2015. Aktuellste Version

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 or Violentmonkey 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         handsoff
// @namespace    http://112358.sinaapp.com/tampermonkey/
// @version      0.1
// @match        *dorcel-handsoff.com/*
// @grant        none
// @description  解放双手,空格暂停,回车播放
// ==/UserScript==
AutoClick = {};
AutoClick.keydown = function(k) {
    var oEvent = document.createEvent('KeyboardEvent');

    Object.defineProperty(oEvent, 'keyCode', {
        get : function() {
            return this.keyCodeVal;
        }
    });     
    Object.defineProperty(oEvent, 'which', {
        get : function() {
            return this.keyCodeVal;
        }
    });     

    if (oEvent.initKeyboardEvent) {
        oEvent.initKeyboardEvent("keydown", true, true, document.defaultView, false, false, false, false, k, k);
    } else {
        oEvent.initKeyEvent("keydown", true, true, document.defaultView, false, false, false, false, k, 0);
    }

    oEvent.keyCodeVal = k;

    if (oEvent.keyCode !== k) {
        alert("keyCode mismatch " + oEvent.keyCode + "(" + oEvent.which + ")");
    }


    document.dispatchEvent(oEvent);
};
AutoClick.run=setInterval(function(){
        AutoClick.keydown(76); // l
        AutoClick.keydown(80); // p
        AutoClick.keydown(81); // q
        AutoClick.keydown(83); // s
},200);

//window.document.onkeydown = disableRefresh;
function disableRefresh(e){
    e = (e) ? e : window.event;
    if (evt.keyCode) {
        if(evt.keyCode == 32){
            AutoClick.run();
            //do something
        }
    }
}