4/2/2025 at 8:25:02 PM
I have a simple bookmarklet does does something similar: javascript:(function(){document.querySelectorAll("video").forEach(((e,o)=>{console.log(`VideoFixer: Processing <video> #${o+1}:`,e),e.style.position="relative",e.style.zIndex="999999",e.controls=!0,e.style.pointerEvents="auto";const t=[],i=[];["disablePictureInPicture","disableRemotePlayback"].forEach((o=>{e.hasAttribute(o)&&(t.push(o),e.removeAttribute(o))})),e.hasAttribute("controlsList")&&(i.push(...e.getAttribute("controlsList").split(/\\s+/)),e.removeAttribute("controlsList")),t.length&&console.log(`VideoFixer: Removed attributes: ${t.join(", ")}`),i.length&&console.log(`VideoFixer: Removed controlsList restrictions: ${i.join(", ")}`),t.length||i.length||console.log("VideoFixer: No restrictions found to remove.")})),console.log("VideoFixer: All videos processed.");}());
It just re-enables all controls on all <video> elements and uses z-indexing to push them to the top. Works on instagram but needs to be re-ran for new video elements.
by varenc
4/3/2025 at 11:25:49 PM
I turned this into a greasemonkey script: https://greasyfork.org/en/scripts/531780-universal-video-fix...That can be configured to run automatically on every site, and it uses the MutationObserver API to automatically fix any newly added/modified <video> elements on the page. Seems to work great on Snapchat and Instagram so far, but it does break some functionality. Op's chrome extension, with bespoke support for Instagram, likely offers a much better experience. This is just more universal.
by varenc
4/2/2025 at 9:37:20 PM
Ah that's a good idea! Similar effect to this but I guess packaging it in a chrome extension lends itself to "set it and forget it". I also have some customization options.by darajava
4/2/2025 at 10:16:12 PM
I've tried to send bookmarklets to my family and they never "get" them. An extension like this is perfect. Thanks for your work!by xeromal
4/3/2025 at 4:42:19 AM
It's also a security risk though, as in someone could take it over and push a bad update at any time... I have a few extensions installed but I'm terrified of adding more, even though there are parts of my browsing experience that could be significantly improved.I really wish there were a middle ground, like an external extension manager where you could opt into updates, with reproducible builds, changelogs, etc.
by rendaw
4/3/2025 at 12:00:37 PM
You could add it from source which is pretty easy to do but you lose chrome’s syncing feature.Having said that I haven’t developed a chrome extension in years. They are so strict now. I know they can’t manually inspect each line but I do hope it helps solve the problem of extensions going rogue.
by darajava
4/3/2025 at 7:20:10 AM
This is great. I just asked ChatGPT to convert it into a script that I could use with Violentmonkey.by coldtrait
4/3/2025 at 10:48:52 PM
Nice! I still use Greasemonkey and love it.Relatedly, I have a greasemonkey script[1] that makes Snapchat on web much more usable. I just updated it to include this video fixer logic so now it's easy to scrobble videos and download them.
It uses the MutationObserver API to immediately 'fix' any <video> element added to the page. Really I should just copy you and make a version of it that just does the video fixing but runs on every site. It's crazy how browsers have a nice built in pro-user video element, but that every site intentionally overrides and degrades it...
edit: I went ahead and turned this into a greasemonkey script as well: https://greasyfork.org/en/scripts/531780-universal-video-fix...
[1] https://greasyfork.org/en/scripts/468156-unbreak-snapchat-we...
by varenc