Disable YouTube Number Keyboard Seek Shortcuts

disables the 0-9 keyboard shortcuts

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey, Greasemonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

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

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

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

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

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

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.

(I already have a user style manager, let me install it!)

// ==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);