Media Controller

Control video/audio in the webpage with keyboard shortcuts

Media Controller là gì?

Media Controller là một tiện ích mở rộng Chrome được phát triển bởi jsh9.github, và tính năng chính của nó là "Control video/audio in the webpage with keyboard shortcuts".

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

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Media Controller 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

                        A Chrome extension that lets you control video/audio in the webpage with keyboard shortcuts. Supported controls are: pause/play, volume up/down, seek backwards/forwards, speed up, slow down, and mute/unmute.                    

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

Tên Media Controller Media Controller
ID eaecmocjfoffkdgcgmjfipbnfmakeane
URL Chính Thức https://chromewebstore.google.com/detail/media-controller/eaecmocjfoffkdgcgmjfipbnfmakeane
Mô tả Control video/audio in the webpage with keyboard shortcuts
Kích Thước Tệp 11.74 KB
Số Lần Cài Đặt 108
Phiên Bản Hiện Tại 0.0.2
Cập Nhật Lần Cuối 2023-06-22
Ngày Phát Hành 2023-05-02
Nhà Phát Triển jsh9.github
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/jsh9/chrome-media-controller
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Media Controller",
    "description": "Control video\/audio in the webpage with keyboard shortcuts",
    "version": "0.0.2",
    "icons": {
        "48": "icon.png"
    },
    "permissions": [
        "activeTab"
    ],
    "action": {
        "default_popup": "",
        "default_icon": {
            "48": "icon.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}