Take clutter-free screenshots with video controls automatically hidden. Save and organize captures into folders by channel, playlist, or video title for easy access.
A browser extension that hides player controls, captures the current frame, and stores the result locally or in connected cloud storage. It includes configurable shortcuts, optional previews, and per-site enablement to fit most workflows without cluttering the UI.
- One-tap capture from the popup, keyboard shortcut, or fullscreen overlay
- Optional hiding of on-screen controls before capture
- Templated filenames and optional folder organization inside Downloads
- Optional annotation workflow with drawing tools, text, and undo/redo
- Google Drive and OneDrive upload flows (Chromium-based browsers)
- Configurable screenshot quality, capture delay, and notification behavior
- Clone or download the repository and extract it locally.
- Open
chrome://extensions
and enable Developer Mode. - Choose Load unpacked and select the
chrome
directory inside this repo.
- Install from Microsoft Edge Add-ons, or load the
edge
directory using the same Developer Mode flow as Chrome.
Heads-up: The Edge Add-ons store still serves an older build with known bugs. A fixed release is pending review by Microsoft; use the unpacked install above for the latest code until the listing updates.
- Open
about:debugging#/runtime/this-firefox
. - Click Load Temporary Add-on and choose
firefox/manifest.json
. - Repeat after browser restarts unless the build is signed through AMO.
Heads-up: Mozilla Add-ons currently hosts an outdated build with bugs. A corrected version is awaiting AMO review; prefer the temporary load flow above until the listing is refreshed.
Firefox uses a Manifest V2 background page. Cloud uploads remain disabled until browser.identity
supports Manifest V3 OAuth flows.
- Navigate to any supported video site (YouTube, Vimeo, Twitch, or your configured custom domains).
- Start playback.
- Capture a frame by:
- Pressing the configured shortcut (defaults to
Ctrl+Shift+S
orShift+Enter
in fullscreen). - Clicking the extension icon and choosing Capture Screenshot.
- Using the fullscreen overlay action if the popup is pinned.
- Pressing the configured shortcut (defaults to
The extension pauses the video if necessary, hides controls when configured, captures the frame, then resumes playback and restores the UI.
- Screenshot quality and delay: Adjust JPEG/PNG quality and debounce capture on slower hardware.
- Auto-hide controls: Toggle per site to ensure overlays are hidden before capture.
- Folder organization: Select built-in patterns or create templates such as
{channel}/{date}
. Chromium browsers support nested folders; Edge may fall back to simplified paths. - Filename variables: Insert title, channel, playlist, timestamp, site, date, or time tokens.
- Annotation mode: Enable an editable preview with drawing, text, crop, and undo actions. Final output can be saved locally or uploaded to configured cloud targets.
- Notifications and silent downloads: Control download shelf visibility and toast notifications per capture.
Configure credentials in utils/cloudConfig.js
for each browser bundle:
window.CLOUD_CONFIG = {
GOOGLE_DRIVE_CLIENT_ID: 'replace-with-client-id',
ONEDRIVE_CLIENT_ID: 'replace-with-client-id',
GOOGLE_DRIVE: {
scopes: ['https://www.googleapis.com/auth/drive.file']
},
ONEDRIVE: {
scopes: ['Files.ReadWrite']
}
};
Chromium builds rely on chrome.identity.getRedirectURL()
for OAuth redirects. Firefox currently disables the identity-based paths. Store secrets outside the repository and inject them during packaging.
activeTab
for capturing the current pagedownloads
for saving frames and managing optional silent modenotifications
for capture resultsscripting
for injecting capture scriptsstorage
for user preferencesidentity
(Chromium only) for OAuth-powered cloud uploads
Issue | Possible cause | Recommended action |
---|---|---|
Video not detected | Player loads slowly or uses a custom wrapper | Wait for playback to start, then retry. Add the domain under custom sites if needed. |
Blank captures | Hardware acceleration or DRM blocking | Disable hardware acceleration temporarily or capture in fullscreen. |
Shortcut conflicts | Page or browser reserves the key combination | Change shortcuts in the options page or use the popup capture button. |
Edge folder templates ignored | Edge restricts complex download paths | Use simple templates or rely on filenames only. |
Firefox lacks cloud uploads | browser.identity OAuth flow unavailable |
Enable cloud uploads only in Chromium-based builds until APIs stabilize. |
Enable debug mode from Settings > Advanced to expose detailed console logging when investigating capture or download issues.
chrome/
,edge/
, andfirefox/
contain browser-specific manifests while sharing core logic acrosscontent
,background
,popup
,options
, andutils
directories.- The build scripts are placeholders; add bundling, linting, or packaging steps as needed for your workflow.
- Empty folders such as
scripts/
are safe to remove if unused.
The repository hosts annotated screenshots that illustrate the popup UI, settings, and annotation workflow:
This project is licensed under the MIT License. See the LICENSE file for details.