The script is working fine and it helped me with the YouTube shorts spacebar pause problem. But the youtube search bar also got affected and I couldn't enter space when searching in youtube, I fixed this issue with this code
if (event.target.tagName === 'INPUT' || event.target.tagName === 'TEXTAREA') { // Ignore keyboard input for HTML input tags return; }
The script is working fine and it helped me with the YouTube shorts spacebar pause problem.
But the youtube search bar also got affected and I couldn't enter space when searching in youtube, I fixed this issue with this code
if (event.target.tagName === 'INPUT' || event.target.tagName === 'TEXTAREA') {
// Ignore keyboard input for HTML input tags
return;
}