A lightweight browser extension designed for mouse only HTPC (Home Theater PC) setups. SkipBar adds a simple, auto-hiding quick-skip toolbar to the top of the screen when watching fullscreen video. Built for my own personal use.
If you control your PC from the couch with just a mouse, scrubbing through long-form content or skipping sponsors can be a pain. SkipBar gives you massive, easy-to-click buttons to jump forward or backward in set increments.
- Built for Fullscreen: Only activates when a video is in fullscreen mode.
- Auto-Hiding UI: Move your mouse to the top edge of the screen to reveal the toolbar. It hides automatically after 15 seconds or when you move the mouse away.
- Smart Video Detection: Pierces through Shadow DOMs to find the underlying
<video>element, making it compatible with complex custom web players. - One-Click Skips: Buttons for
-60s,-30s,-10s,-5sand+5s,+10s,+30s,+60s. - Adding more skip buttons or changing the time increments is as simple as adding or changing the values in this code in content.js:
const backSkips = [-60, -30, -10, -5];
const fwdSkips = [5, 10, 30, 60];Since this is a personal extension, you can install it manually in Chromium-based browsers (Chrome, Edge, Brave, etc.):
- Download or clone this repository to your local machine.
- Open your browser and go to the extensions page (
chrome://extensions/oredge://extensions/). - Turn on Developer mode (usually a toggle in the top right corner).
- Click Load unpacked.
- Select the
SkipBarfolder containing themanifest.json.
- Play a video on any website and enter Fullscreen mode.
- Move your cursor to the top of the screen to reveal the SkipBar toolbar.
- Click to skip around!
MIT License. Feel free to fork, modify, and use it however you like.