您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Disables frequently mistyped shortcuts (e.g. 0-9) and auto-looping on shorts.
当前为
// ==UserScript== // @name YouTube Usability // @description Disables frequently mistyped shortcuts (e.g. 0-9) and auto-looping on shorts. // @license MIT // @icon https://m.youtube.com/static/apple-touch-icon-114x114-precomposed.png // @namespace michaelsande.rs // @version 2024.03.30 // @match https://www.youtube.com/* // @match https://m.youtube.com/* // @run-at document-start // ==/UserScript== // Tested on Greasemonkey and Violentmonkey for Firefox, and Userscripts for Safari. (() => { "use strict"; const beforeLoad = () => { const ALLOWED_MODIFIER_KEYS = ["Alt", "Control", "Meta", "OS"]; const DISABLED_KEYS = new Set("0123456789kjl".split("").concat(["Home", "End"])); window.addEventListener( "keydown", event => { if ( DISABLED_KEYS.has(event.key) && !ALLOWED_MODIFIER_KEYS.some(event.getModifierState.bind(event)) && !event.isComposing ) { event.stopImmediatePropagation(); } }, true ); if (document.readyState === "complete") { afterLoad(); } else { window.addEventListener("load", afterLoad); } }; const afterLoad = () => { disableShortLooping(); new MutationObserver(disableShortLooping).observe(document, { attributes: false, childList: true, subtree: true, }); }; const disableShortLooping = () => { document.querySelector("#shorts-player video")?.removeAttribute("loop"); }; beforeLoad(); })();