Video Stream Master

For controlling video playback speed and other features

What is Video Stream Master?

Video Stream Master is a Chrome extension developed by tsonglew, and its main feature is "For controlling video playback speed and other features".

Extension Screenshots

screenshot

Download Video Stream Master Extension CRX File

Download Video Stream Master 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

                        Video player master for controlling video playback speed and other features                    

Extension Basic Information

Name Video Stream Master Video Stream Master
ID knnigbekdblcdhjlnmpcfijkeffenhmp
Official URL https://chromewebstore.google.com/detail/video-stream-master/knnigbekdblcdhjlnmpcfijkeffenhmp
Description For controlling video playback speed and other features
File Size 709 KB
Installation Count 46
Current Version 1.0
Last Updated 2023-03-01
Publish Date 2023-03-01
Developer tsonglew
Email [email protected]
Payment Type free
Extension Website https://github.com/tsonglew/video-stream-master
Help Page URL https://github.com/tsonglew/video-stream-master/issues
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Video Stream Master",
    "description": "For controlling video playback speed and other features",
    "version": "1.0",
    "icons": {
        "16": "logo.ico",
        "32": "logo.ico",
        "48": "logo.ico",
        "128": "logo.ico"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "static\/js\/content.js"
            ]
        }
    ],
    "options_page": "options.html",
    "content_security_policy": {
        "script-src": "self",
        "object-src": "self"
    },
    "commands": {
        "speedup": {
            "suggested_key": {
                "default": "Ctrl+Shift+W",
                "mac": "MacCtrl+Shift+W"
            },
            "description": "increase playspeed rate"
        },
        "speeddown": {
            "suggested_key": {
                "default": "Ctrl+Shift+S",
                "mac": "MacCtrl+Shift+S"
            },
            "description": "decrease playspeed rate"
        }
    },
    "background": {
        "service_worker": "static\/js\/background.js"
    }
}