Greasy Fork is available in English.

Youtube Space=Pause

Pressing space when watching a video on Youtube will always pause the video instead of functioning like Page Down key.

< Youtube Space=Pause 피드백

리뷰: 보통 - 동작하나 버그 있음

§
작성: 2023-05-11

For some reason, it sometimes doesn't work, but I made a small change and now it works. The small change is replacing the checking if the keyCode is 32, with checking if the keyCode is either 32 or 'Space'. Here is the resulting code, for the main function:

window.addEventListener('keydown', function(e) {
    var playButton = document.querySelector('button.ytp-play-button');
    var isKey1 = e.keyCode === 32; // Space
    var isKey2 = e.keyCode === 'Space'; // Space
    var validTarget = e.target === document.body || e.target === document.querySelector('#player-api');
    if (validTarget && (isKey1 || isKey2) && playButton) {
        e.preventDefault();
        playButton.click();
    }
});
§
작성: 2024-05-01
수정: 2024-05-01

For some reason, it sometimes doesn't work, but I made a small change and now it works. The small change is replacing the checking if the keyCode is 32, with checking if the keyCode is either 32 or 'Space'. Here is the resulting code, for the main function:

window.addEventListener('keydown', function(e) {
var playButton = document.querySelector('button.ytp-play-button');
var isKey1 = e.keyCode === 32; // Space
var isKey2 = e.keyCode === 'Space'; // Space
var validTarget = e.target === document.body || e.target === document.querySelector('#player-api');
if (validTarget && (isKey1 || isKey2) && playButton) {
e.preventDefault();
playButton.click();
}
});

THANKS, NOW WORK!

댓글 남기기

댓글을 남기려면 로그인하세요.