您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Removes the tabindex attribute from the YouTube player's controls, so that left/right keys always perform seeking and up/down keys always perform volume adjustments.
// ==UserScript== // @name Reliable Keys for YouTube Player // @namespace https://youtube.com/ // @version 1.0 // @description Removes the tabindex attribute from the YouTube player's controls, so that left/right keys always perform seeking and up/down keys always perform volume adjustments. // @author timtimtimaroo // @match *://www.youtube.com/* // @grant none // @license copyright // ==/UserScript== (function() { 'use strict'; function removeTabindex() { ['.ytp-progress-bar', '.ytp-volume-panel'].flatMap(s => [...document.querySelectorAll(s)]).forEach(panel => { if (panel.hasAttribute('tabindex')) { panel.removeAttribute('tabindex'); console.log("[Reliable Keys for YouTube Player] Removed tabindex from:", panel); } }); } // Run once on load removeTabindex(); // Observe for changes in the page (useful for SPA behavior) const observer = new MutationObserver(removeTabindex); observer.observe(document.body, { childList: true, subtree: true }); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址