Warning: fopen(/www/sites/update.greasyfork.icu/index/store/temp/9b7fa216a876bf381bc6a1291e360285.js): failed to open stream: No space left on device in /www/sites/update.greasyfork.icu/index/scriptControl.php on line 65
// ==UserScript==
// @name Youtube: Space to Pause
// @description Bind the spacebar to play/pause the video.
// @author Chris H (Zren)
// @icon https://youtube.com/favicon.ico
// @namespace http://xshade.ca
// @version 1
// @include http*://*.youtube.com/*
// @include http*://youtube.com/*
// @include http*://*.youtu.be/*
// @include http*://youtu.be/*
// @downloadURL https://update.greasyfork.icu/scripts/13386/Youtube%3A%20Space%20to%20Pause.user.js
// @updateURL https://update.greasyfork.icu/scripts/13386/Youtube%3A%20Space%20to%20Pause.meta.js
// ==/UserScript==
window.addEventListener('keydown', function(e) {
var playButton = document.querySelector('button.ytp-play-button');
var isKey = e.keyCode === 32; // Space
var validTarget = e.target === document.body || e.target === document.querySelector('#player-api');
if (validTarget && isKey && playButton) {
e.preventDefault();
playButton.click();
}
});