logoalt Hacker News

Show HN: A Chrome extension to give you back control over short-form videos

115 pointsby darajavalast Tuesday at 11:51 AM51 commentsview on HN

Hi HN! I built this little extension to prevent, in my opinion, the most offensive anti-pattern used by tech companies. That is removing the seek bar in short-form videos.

The "seek bar" is the bar at the bottom of a video that progresses as you play the video, and that you can click on or drag to skip around. Why companies ever thought it was a good idea to get rid of this I don't know, but I find it infuriating, so I decided to add it back for myself and thought others might like it too.

ReelControl adds a progress bar and seeking capabilities to videos on Instagram, YouTube Shorts, and Facebook Reels.

I do sometimes enjoy watching short-form content and I've found that with this extension enabled I can be more mindful about it and get sucked in way less. I'm also on my phone less because I tend to favor the web versions of these platforms now.

Open source--PRs and issues welcome! https://github.com/darajava/seek-anywhere/


Comments

varencyesterday at 8:25 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.
show 1 reply
omoikaneyesterday at 6:52 PM

For youtube shorts, replacing the "shorts" in URL with "watch" will give you the usual interface, for example:

https://www.youtube.com/shorts/GqkmtcirwYA -> https://www.youtube.com/watch/GqkmtcirwYA

But actually I see that seek bar is already available in youtube shorts. Maybe it's a recent change?

show 2 replies
NelsonMinaryesterday at 11:38 PM

It's horrible that the web has come to this, a need for a browser hack to restore the UI that some website hacked off.

uptownyesterday at 5:54 PM

An answer to my wishes ... https://news.ycombinator.com/item?id=43398696 thank you!

show 1 reply
Aissenyesterday at 7:39 PM

I wrote a set of uBo rules to do the same on TikTok. Not sure if they still work, but might as well publish it:

tiktok.com##sharing-main-video-el:watch-attr(controlslist):remove-attr(controlslist)

It seems a bit flakey on mobile, but it was a nice addition to the other enhancements. I haven't been able to make the mobile web as useful as the desktop web version, but didn't want to spend too much time on it either.

Zakyesterday at 8:01 PM

That looks pretty useful. A Firefox release would be most appreciated.

show 1 reply
ensignavengeryesterday at 7:02 PM

Thanks for releasing it! Whats the chance of this getting shipped to Firefox users? A future improvement might be to add the ability to change the playback speed :)

show 1 reply
robgibbonsyesterday at 6:15 PM

Thanks for this. I've thought about building this exact thing ever since this vicious trend began.

show 1 reply
4jckyesterday at 10:00 PM

is there a way to "save" a volume for instagram/youtube? i swear their volume is boosted to 200% volume

show 1 reply
megadatayesterday at 9:00 PM

I haven't tried this out but if it works it's one the biggest bang for the buck I've seen on HN. Thanks!

xnxyesterday at 6:41 PM

Nice. Does this do more than the "Show Video Controls by Default" extension? https://chromewebstore.google.com/detail/show-video-controls...

show 1 reply
umviyesterday at 7:57 PM

Adding a progress bar back might cause people to just skip to the part they want to see instead of watching the whole thing again though, and I'm worried that might not be in the best interests of the content creator or advertisers.

show 2 replies
devmtkyesterday at 7:48 PM

Thank you for that. Helps a lot!

show 1 reply
joshdavhamyesterday at 6:12 PM

Thanks for sharing! Also, would you mind adding a license to your gh repo?

show 1 reply
65yesterday at 7:56 PM

Instant download. Works great. Perhaps on Instagram you can make it save the audio level when the video is muted? If I mute a video then scroll to the next one, the audio still plays. Otherwise, thanks for making this, it's something I've wanted for a long time.

show 1 reply
mthomsyesterday at 7:25 PM

For anyone looking: Safari has "Stop The Madness" which has something similar (and much more).

ranger_dangeryesterday at 10:35 PM

Been using this extension to turn shorts back into regular videos for years: https://github.com/raven0230/Remove-Youtube-Shorts

That way not only do you get the seek/pause controls back, but other stuff like volume, comments, keyboard shortcuts etc. now work as usual too.