Greasy Fork is available in English.

Click Message Input on Right Arrow Key

This script clicks the "Message Input" button on the sidebar when the right arrow key is pressed.

Verze ze dne 22. 03. 2024. Zobrazit nejnovější verzi.

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

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 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        Click Message Input on Right Arrow Key
// @namespace   https://greasyfork.org/en/users/1200587-trilla-g
// @match       *://*.kick.com/*
// @grant       none
// @version     2.0
// @license     MIT
// @author      Trilla_G
// @description This script clicks the "Message Input" button on the sidebar when the right arrow key is pressed.
// ==/UserScript==
 
(function() {
    'use strict';
 
    document.addEventListener('keydown', function(event) {
        // Check if the right arrow key is pressed (key code 39)
        if (event.key === 'ArrowRight') {
            clickMessageInput();
        }
    });
 
    function clickMessageInput() {
        let messageInputButton = document.querySelector('#message-input');
        if (messageInputButton) {
            messageInputButton.click();
        }
    }
})();