Discord Kill Autofocus

Prevent chat auto focus on Discord desktop and mobile.

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         Discord Kill Autofocus
// @description  Prevent chat auto focus on Discord desktop and mobile.
// @author C89sd
// @version      0.6
// @match        https://discord.com/*
// @namespace https://greasyfork.org/users/1376767
// @noframes
// ==/UserScript==

(function() {
    'use strict';

    let clickInTextbox = false;
    document.addEventListener('mousedown', (event) => {
        if (event.target.closest('div[role="textbox"], textarea')) {
            clickInTextbox = true;
        }
    });
    document.addEventListener('mouseup', (event) => {
        setTimeout(() => {
          clickInTextbox = false;
        }, 100);
    });

    function detectAndRemoveFocus(event) {
        const target = event.target;
        if (!clickInTextbox && target && target.matches && target.matches('div[role="textbox"], textarea')) {
            target.blur();
        } else {
          clickInTextbox = false;
        }
    }
    document.addEventListener('focus', detectAndRemoveFocus, true);
})();