Video Stream Master

For controlling video playback speed and other features

Video Stream Masterとは何ですか?

Video Stream Masterはtsonglewによって開発されたChromeの拡張機能で、その主な機能は「For controlling video playback speed and other features」です。

拡張機能のスクリーンショット

screenshot

Video Stream Master拡張機能のCRXファイルをダウンロード

Video Stream Master拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Video player master for controlling video playback speed and other features                    

拡張機能の基本情報

名前 Video Stream Master Video Stream Master
ID knnigbekdblcdhjlnmpcfijkeffenhmp
公式URL https://chromewebstore.google.com/detail/video-stream-master/knnigbekdblcdhjlnmpcfijkeffenhmp
説明 For controlling video playback speed and other features
ファイルサイズ 709 KB
インストール数 46
現在のバージョン 1.0
最終更新日 2023-03-01
公開日 2023-03-01
開発者 tsonglew
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/tsonglew/video-stream-master
ヘルプページのURL https://github.com/tsonglew/video-stream-master/issues
対応言語 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"
    }
}