Disable YouTube Number Keyboard Seek Shortcuts

disables the 0-9 keyboard shortcuts

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

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

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        Disable YouTube Number Keyboard Seek Shortcuts
// @namespace   https://github.com/timmontague/youtube-disable-number-seek
// @description disables the 0-9 keyboard shortcuts
// @author      timm
// @version     1.0.1

// @match       *://www.youtube.com/*

// @match       *://vid.puffyan.us/*
// @match       *://invidious.fdn.fr/*
// @match       *://invidious.048596.xyz/*
// @match       *://invidious.site/*
// @match       *://yewtu.be/*
// @match       *://invidiou.site/*
// @match       *://invidious.himiko.cloud/*
// @match       *://invidious.snopyta.org/*
// @match       *://invidious.namazso.eu/*
// @match       *://invidious.xyz/*
// @match       *://ytprivate.com/*
// @match       *://invidious.kavin.rocks/*
// @match       *://invidious.tinfoil-hat.net/*
// @match       *://tube.connect.cafe/*
// @match       *://invidious.tube/*
// ==/UserScript==

function keyboard_event_handler(e) {
    // Don't prevent entering numbers in input areas
    if (e.target.tagName == 'INPUT' ||
	e.target.tagName == 'SELECT' ||
	e.target.tagName == 'TEXTAREA' ||
	e.target.isContentEditable) {
	return;
    }
    // Trap number keys
    if (e.key >= '0' && e.key <= '9') {
	e.stopImmediatePropagation();
    }
}
window.addEventListener('keydown', keyboard_event_handler, true);