I don’t know if this will get supported or not.
When opening a youtube video directly with youtube-nocookie.com embeded, the ‘space’ key work correctly.
But after replacing it to ‘youtube.com’, the key ‘space’ can stop the youtube correctly but pressing it again won’t replay the video.
// Replace "youtube-nocookie.com" with "youtube.com"
if (src && src.includes('youtube-nocookie.com')) {
src = src.replace('youtube-nocookie.com', 'youtube.com');
iframe.setAttribute('src', src);
I don’t know much about web development. Can you share how the LinQ is listening to the key so I might about to add it to my script and fix it from my side?