Sleazy Fork is available in English.

handsoff

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

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

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

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name         handsoff
// @namespace    http://112358.sinaapp.com/tampermonkey/
// @version      1.0
// @match        http://*.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
        }
    }
}