Video Speed Control HTML5

Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons.

Video Speed Control HTML5 là gì?

Video Speed Control HTML5 là một tiện ích mở rộng Chrome được phát triển bởi admin, và tính năng chính của nó là "Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons.".

Ả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 Speed Control HTML5

Tải xuống các tệp mở rộng Video Speed Control HTML5 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

                        Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons.                    

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

Tên Video Speed Control HTML5 Video Speed Control HTML5
ID pgeeiieaichainfdhpdanloeimnpofhl
URL Chính Thức https://chrome.google.com/webstore/detail/video-speed-control-html5/pgeeiieaichainfdhpdanloeimnpofhl
Mô tả Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons.
Kích Thước Tệp 60.54 KB
Số Lần Cài Đặt 884
Phiên Bản Hiện Tại 1.1.2
Cập Nhật Lần Cuối 2022-10-23
Ngày Phát Hành 2022-10-23
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển admin
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video Speed Control HTML5",
    "version": "1.1.2",
    "manifest_version": 3,
    "minimum_chrome_version": "89",
    "description": "Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons.",
    "icons": {
        "128": "images\/icon128.png"
    },
    "background": {
        "service_worker": "bg.js"
    },
    "permissions": [
        "storage",
        "webRequest",
        "tabs"
    ],
    "options_ui": {
        "page": "html5\/options.html",
        "open_in_tab": true
    },
    "action": {
        "default_icon": {
            "64": "images\/icon64.png"
        },
        "default_popup": "html5\/popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "match_about_blank": true,
            "exclude_matches": [
                "https:\/\/plus.google.com\/hangouts\/*",
                "https:\/\/hangouts.google.com\/*",
                "https:\/\/meet.google.com\/*"
            ],
            "css": [
                "inject\/inject.css"
            ],
            "js": [
                "inject\/inject.js"
            ]
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "ct.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ]
        }
    ]
}