'el-switch' - autohotkey-disabler for luckyfish.io

disable hotkeys on luckyfish

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name        'el-switch' - autohotkey-disabler for luckyfish.io 
// @description  disable hotkeys on luckyfish
// @match        https://luckyfish.io/diceClassic
// @author       Rain_Bot | https://rainbot.ch
// @version      5.2rev7
// @license      Open Source
// @grant        none
// @run-at       document-start
// @namespace https://greasyfork.org/users/710212
// ==/UserScript==

//////////////////////////////////////////////////////////////
// --	☂\(._.\) made with ♥ in Switzerland ((/._.)/☂    -- //
////////////////////////////////////////////////////////////

window.onload = function loadpage() {
    if (document.readyState === 'complete') {
        console.log(document.readyState);
        setTimeout(function() {
            console.log('Open Hotkey Setup-Overlay');
            document.getElementsByClassName("left gameBar_li active")[1].click();
        }, 1234);
        setTimeout(function() {
            console.log('Hotkey Switch "triggered"');
            document.getElementsByClassName("el-switch")[4].click();
        }, 1234);
        setTimeout(function() {
            console.log('Hotkeys ==> "false"');
            document.getElementsByClassName("hotkeys_close iconfont commonAlert_close")[0].click();
            console.log('.');
            console.log('..');
            console.log('...');
            console.log('\nDONE!');
        }, 1234);
        setTimeout(function() {
            console.clear();
        }, 12345);
    }
};