6 ms·
It's always worked in Firefox for me? I also like this Firefox extension (https://github.com/WorldThirteen/youtube-watch-later-shortcut-ext https://github.com/W
by subeadia 9mo ago
It's always worked in Firefox for me? I also like this Firefox extension (https://github.com/WorldThirteen/youtube-watch-later-shortcut-ext https://github.com/WorldThirteen/youtube-watch-later-shortcu...) which allows mapping a keyboard shortcut for quickly adding YT videos to the "Watch Later" playlist.
- aabbcc1241 9mo agoThanks for sharing your state. I just tried again with troubleshoot mode, it works ... Then it seems to be in conflict with some addon I'm using.
- aabbcc1241 9mo agoI found that it is caused by a userscript running below code. // version 1 let body = document.createElement('body') body.innerHTML = document.body.innerHTML // version 2 let body = document.body.cloneNode(true) Either version can trigger the bug of the pop up menu now showing up. The menu is able to show up if doing early return to skip that code. This is wired, that code should not be mutating existing DOM. Update: Below version of sandboxed clone doesn't break the youtube popup menu. // version 3 let parser = new DOMParser() let doc = parser.parseFromString(document.body.outerHTML, 'text/html') let body = doc.body