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是由https://inzk.dev开发的Chrome扩展程序,该扩展的主要功能是“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

下载Video Dominator扩展crx文件

下载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\/*"
            ]
        }
    ]
}