Bind the spacebar to play/pause videos
当前为
// ==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(); });