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.

Wat is Video Dominator?

Video Dominator is een Chrome-extensie ontwikkeld door https://inzk.dev, en de belangrijkste functie is "Hover over any video, hold the right mouse button down, and use mouse wheels or buttons to seek, adjust volume, speed, and more.".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Video Dominator

Download Video Dominator-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Video Dominator Video Dominator
ID npmegcnbapicebebajligpkjdjjbempo
Officiële URL https://chromewebstore.google.com/detail/video-dominator/npmegcnbapicebebajligpkjdjjbempo
Beschrijving Hover over any video, hold the right mouse button down, and use mouse wheels or buttons to seek, adjust volume, speed, and more.
Bestandsgrootte 455 KB
Aantal Installaties 1,089
Huidige Versie 2.7.0
Laatst Bijgewerkt 2023-07-16
Publicatiedatum 2020-06-10
Beoordeling 4.68/5 Totaal 34 Beoordelingen
Ontwikkelaar https://inzk.dev
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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\/*"
            ]
        }
    ]
}