YouTube Shorts key controls

Adds key controls to YouTube Shorts

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         YouTube Shorts key controls
// @version      0.1
// @namespace    Violentmonkey Scripts
// @description  Adds key controls to YouTube Shorts
// @author       CarlosMarques
// @match        https://www.youtube.com/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function(){
	let listening2clicks = false;
	let mObserver = new MutationObserver(function(mutations){
		if(!listening2clicks && document.getElementById("shorts-player").getElementsByTagName("video")[0]){
			document.addEventListener("keydown", function(e){
				let shortVideo = document.getElementById("shorts-player").getElementsByTagName("video")[0];
				switch (e.key){
				case 'j':
					shortVideo.currentTime = shortVideo.currentTime - 10;
					break;
				case 'l':
					shortVideo.currentTime = shortVideo.currentTime + 10;
					break;
				case 'ArrowLeft':
					shortVideo.currentTime = shortVideo.currentTime - 5;
					break;
				case 'ArrowRight':
					shortVideo.currentTime = shortVideo.currentTime + 5;
					break;
				}
			})
			listening2clicks = true;
		}
	})
	mObserver.observe(document.body, {subtree: true, childList: true, characterData: true});
})()