Remove yt volumebar focus

Sets focus to video element after using volume bar, so that left/right arrow keys can be used for video seeking instead of volume change

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name     Remove yt volumebar focus
// @description Sets focus to video element after using volume bar, so that left/right arrow keys can be used for video seeking instead of volume change
// @license MIT
// @version  1.30
// @grant    none
// @match    https://www.youtube.com/*
// @namespace https://greasyfork.org/users/847699
// ==/UserScript==

const getVideoElem = () => document.querySelector("video.html5-main-video");
const elementToObserve = document.querySelector("body");

const observer = new MutationObserver(function(mutations_list) {
	mutations_list.forEach(function(mutation) {
		mutation.addedNodes.forEach(function(added_node) {
			if(added_node.id == 'movie_player') {
                const volumeArea = document.querySelector(".ytp-volume-area");
                const videoProgressBar = document.querySelector(".ytp-progress-bar-container");

                volumeArea.addEventListener("click", (_) => {
                    setTimeout(() => {
                        getVideoElem().focus();
                    }, 50);
                });
                videoProgressBar.addEventListener("click", (_) => {
                    setTimeout(() => {
                        getVideoElem().focus();
                    }, 50);
                });

				observer.disconnect();
			}
		});
	});
});

observer.observe(elementToObserve, {subtree: true, childList: true});