Discord Remove Keybinds (CTRL/CMD+{number})

Removes CTRL/CMD+{number} keybinds so you can switch tabs without it interacting with Discord.

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         Discord Remove Keybinds (CTRL/CMD+{number})
// @description  Removes CTRL/CMD+{number} keybinds so you can switch tabs without it interacting with Discord.
// @author       ∫(Ace)³dx
// @match        https://*.discord.com/*
// @version      1.1
// @grant        none
// @namespace https://greasyfork.org/users/449798
// ==/UserScript==

(function () {
    'use strict';

    document.addEventListener(
        'keydown',
        function (e) {
            // Ctrl + number only
            if ((e.ctrlKey || e.metaKey) && !e.shiftKey && !e.altKey) {
                if (/^[0-9]$/.test(e.key)) {
                    // ❗ DO NOT preventDefault
                    // This keeps browser tab switching intact
                    e.stopPropagation();
                    e.stopImmediatePropagation();
                }
            }
        },
        true // capture phase so Discord never sees it
    );
})();