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.

Hvad er Video Dominator?

Video Dominator er en Chrome-udvidelse udviklet af https://inzk.dev, og dens hovedfunktion er "Hover over any video, hold the right mouse button down, and use mouse wheels or buttons to seek, adjust volume, speed, and more.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot
screenshot

Download Video Dominator-udvidelses-CRX-fil

Download Video Dominator-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Video Dominator Video Dominator
ID npmegcnbapicebebajligpkjdjjbempo
Officiel URL https://chromewebstore.google.com/detail/video-dominator/npmegcnbapicebebajligpkjdjjbempo
Beskrivelse Hover over any video, hold the right mouse button down, and use mouse wheels or buttons to seek, adjust volume, speed, and more.
Filstørrelse 455 KB
Antal Installationer 1,089
Nuværende Version 2.7.0
Senest Opdateret 2023-07-16
Udgivelsesdato 2020-06-10
Bedømmelse 4.68/5 Samlet 34 Bedømmelser
Udvikler https://inzk.dev
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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\/*"
            ]
        }
    ]
}