Youtube - Spacebar to Play/Pause

Bind the spacebar to play/pause videos

目前為 2023-11-02 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Youtube - Spacebar to Play/Pause
// @namespace    ytSpacePauseKK
// @description  Bind the spacebar to play/pause videos
// @version      1.0
// @author       Kai Krause <[email protected]>
// @match        http://*.youtube.com/*
// @match        https://*.youtube.com/*
// @run-at       document-start
// @grant        none
// ==/UserScript==

document.addEventListener("keydown", function onEvent(e) {
	if (e.code !== "Space") return;
	if (document.activeElement.hasAttribute("contenteditable")) return;
	document.querySelector("button.ytp-play-button").click();
});

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址