Greasy Fork is available in English.

YouTube Spacebar Controls

Disable spacebar scrolling and enable spacebar controls on YouTube

< YouTube Spacebar Controlsについてのフィードバック

レート:可 - スクリプトは動作するがバグがある

§
投稿日: 2023/05/11

It doesn't work when pressing Space right after moving to the tab and right after reloading the tab. To fix it, you need to call the controlVideo(e); from the preventSpaceScroll. Though it would be best if you merged the two functions into a single one, which to check both things.


    function preventSpaceScroll(e) {
        if (e.code === 'Space' && e.target === document.body) {
            e.preventDefault();
            controlVideo(e);
        }
    }

返信を投稿

返信を投稿するにはログインしてください。