Video Dominator

Hover over any video, hold the right mouse button down, and use mouse wheels or buttons to seek, adjust volume, speed, and more.

What is Video Dominator?

Video Dominator is a Chrome extension developed by https://inzk.dev, and its main feature is "Hover over any video, hold the right mouse button down, and use mouse wheels or buttons to seek, adjust volume, speed, and more.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download Video Dominator Extension CRX File

Download Video Dominator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Hover over different areas of any video, hold the activation key down (right mouse button by default), and use mouse wheels or buttons to perform an unlimited number of custom actions such as:

- play/pause the video
- seek by, seek to (units available: second, frame, %)
- adjust or set playback rate (0x to 16x)
- adjust or set volume
- toggle mute
- toggle picture-in-picture mode
- toggle custom player

On some websites, you can also:

- take a video snapshot (save or copy to clipboard)
- open video in new tab
- download video (requires "Downloads" permission)

------------------------------------------------
Control Modes
------------------------------------------------

Overlay Element
- hover over a video, hold the activation key down and use mouse wheels or buttons
- activation key can be the Right Mouse Button, Ctrl, Alt, or Shift
- available on almost any website

Video Element
- hover over a video and use mouse wheels or buttons
- works only when the video is a top-most element (on websites such as YouTube, Odysee, Nebula, CuriosityStream)

------------------------------------------------
Action Info Overlay
------------------------------------------------

- customizable overlay temporarily shows you info depending on the last action, such as:
  - volume
  - playback rate
  - current time, current time / duration, remaining time
- time can be based on the current playback rate

------------------------------------------------
Custom Player
------------------------------------------------

- a full window or full screen player with minimalist UI and no popups or any other distractions
- you don't need to hold the activation key down while using mouse controls
- unlimited number of custom keyboard shortcuts
- customizable progress bar

------------------------------------------------
Filters
------------------------------------------------

- none - the extension will run on all domains
- blacklist - the extension will not run on listed domains
- whitelist - the extension will run only on listed domains

------------------------------------------------
Permissions
------------------------------------------------

Storage - for storing extension settings
Downloads (optional) - for downloading media files

------------------------------------------------
Privacy Policy
------------------------------------------------

This extension does not collect personal data from users, and it does not send any user data to a remote server. The only data it collects are extension settings, and this is stored locally on your PC.                    

Extension Basic Information

Name Video Dominator Video Dominator
ID npmegcnbapicebebajligpkjdjjbempo
Official URL https://chromewebstore.google.com/detail/video-dominator/npmegcnbapicebebajligpkjdjjbempo
Description Hover over any video, hold the right mouse button down, and use mouse wheels or buttons to seek, adjust volume, speed, and more.
File Size 455 KB
Installation Count 1,089
Current Version 2.7.0
Last Updated 2023-07-16
Publish Date 2020-06-10
Rating 4.68/5 Total 34 Ratings
Developer https://inzk.dev
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "2.7.0",
    "content_scripts": [
        {
            "js": [
                "content.video-dominator.bundle.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "name": "Video Dominator",
    "description": "Hover over any video, hold the right mouse button down, and use mouse wheels or buttons to seek, adjust volume, speed, and more.",
    "icons": {
        "16": "icon-16.png",
        "19": "icon-19.png",
        "24": "icon-24.png",
        "32": "icon-32.png",
        "38": "icon-38.png",
        "48": "icon-48.png",
        "96": "icon-96.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "optional_permissions": [
        "downloads"
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "manifest_version": 3,
    "minimum_chrome_version": "88",
    "action": {
        "default_icon": {
            "16": "icon-16.png",
            "19": "icon-19.png",
            "24": "icon-24.png",
            "32": "icon-32.png",
            "38": "icon-38.png",
            "48": "icon-48.png",
            "96": "icon-96.png"
        },
        "default_popup": "popup.html",
        "default_title": "Video Dominator"
    },
    "background": {
        "service_worker": "background.bundle.js"
    },
    "commands": {
        "_execute_action": {
            "description": "Open Popup"
        }
    },
    "web_accessible_resources": [
        {
            "resources": [
                "content-mw.youtube.bundle.js"
            ],
            "matches": [
                "https:\/\/music.youtube.com\/*",
                "https:\/\/www.youtube.com\/*",
                "https:\/\/www.youtube-nocookie.com\/*",
                "https:\/\/youtube.googleapis.com\/*"
            ]
        }
    ]
}