Volume Manager

Control any tab's volume separately

Volume Manager là gì?

Volume Manager là một tiện ích mở rộng Chrome được phát triển bởi coherence, và tính năng chính của nó là "Control any tab's volume separately".

Ả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 Volume Manager

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

                        An open-source plugin to control any tab's volume separately.

Do note that once you started modifying volume:
- You cannot toggle fullscreen of this tab. This is due to the Chrome API limitation.
- Your system may not go into sleep/suspend/monitor off because Chrome will mark the current tab is "capturing" and inhibit doing so.

Source code: https://github.com/cjc7373/chrome-volume-manager                    

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

Tên Volume Manager Volume Manager
ID imhcgcnjkibjikdbdgnhclihigkooeaf
URL Chính Thức https://chromewebstore.google.com/detail/volume-manager/imhcgcnjkibjikdbdgnhclihigkooeaf
Mô tả Control any tab's volume separately
Kích Thước Tệp 171 KB
Số Lần Cài Đặt 617
Phiên Bản Hiện Tại 2.0.0
Cập Nhật Lần Cuối 2023-11-18
Ngày Phát Hành 2021-03-05
Đánh Giá 4.83/5 Tổng số 6 Đánh Giá
Nhà Phát Triển coherence
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/cjc7373/chrome-volume-manager
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Volume Manager",
    "version": "2.0.0",
    "description": "Control any tab's volume separately",
    "permissions": [
        "activeTab",
        "tabCapture",
        "offscreen"
    ],
    "action": {
        "default_icon": "icon.e84ebc53.png",
        "default_popup": "popup.c91b8cbb.html"
    },
    "background": {
        "service_worker": "background.538a6b63.js"
    },
    "icons": {
        "512": "icon.e84ebc53.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "offscreen.html"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        }
    ]
}