Video Stream Master

For controlling video playback speed and other features

Video Stream Master là gì?

Video Stream Master là một tiện ích mở rộng Chrome được phát triển bởi tsonglew, và tính năng chính của nó là "For controlling video playback speed and other features".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Video Stream Master

Tải xuống các tệp mở rộng Video Stream Master dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Video player master for controlling video playback speed and other features                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Video Stream Master Video Stream Master
ID knnigbekdblcdhjlnmpcfijkeffenhmp
URL Chính Thức https://chromewebstore.google.com/detail/video-stream-master/knnigbekdblcdhjlnmpcfijkeffenhmp
Mô tả For controlling video playback speed and other features
Kích Thước Tệp 709 KB
Số Lần Cài Đặt 46
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2023-03-01
Ngày Phát Hành 2023-03-01
Nhà Phát Triển tsonglew
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/tsonglew/video-stream-master
URL Trang Trợ Giúp https://github.com/tsonglew/video-stream-master/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}