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.

Τι είναι το Video Dominator;

Το Video Dominator είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://inzk.dev, και η κύρια λειτουργία του είναι "Hover over any video, hold the right mouse button down, and use mouse wheels or buttons to seek, adjust volume, speed, and more.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Video Dominator

Λήψη αρχείων επέκτασης Video Dominator σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Video Dominator Video Dominator
ID npmegcnbapicebebajligpkjdjjbempo
Επίσημο URL https://chromewebstore.google.com/detail/video-dominator/npmegcnbapicebebajligpkjdjjbempo
Περιγραφή Hover over any video, hold the right mouse button down, and use mouse wheels or buttons to seek, adjust volume, speed, and more.
Μέγεθος Αρχείου 455 KB
Αριθμός Εγκαταστάσεων 1,089
Τρέχουσα Έκδοση 2.7.0
Τελευταία Ενημέρωση 2023-07-16
Ημερομηνία Δημοσίευσης 2020-06-10
Αξιολόγηση 4.68/5 Συνολικά 34 Αξιολογήσεις
Προγραμματιστής https://inzk.dev
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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\/*"
            ]
        }
    ]
}