Google Meet Volume Control

Client side volume control for Google Meet

Google Meet Volume Control là gì?

Google Meet Volume Control là một tiện ích mở rộng Chrome được phát triển bởi https://matthew-cash.com, và tính năng chính của nó là "Client side volume control for Google Meet".

Ả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 Google Meet Volume Control

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

                        Set a global volume for all Meet participants (client side).

Click the extension's icon while in Google Meet to adjust the volume using a simple slider.                    

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

Tên Google Meet Volume Control Google Meet Volume Control
ID nkbnlgonoekhmldnihfdpakhhjhmdkbd
URL Chính Thức https://chromewebstore.google.com/detail/google-meet-volume-contro/nkbnlgonoekhmldnihfdpakhhjhmdkbd
Mô tả Client side volume control for Google Meet
Kích Thước Tệp 14.06 KB
Số Lần Cài Đặt 54,008
Phiên Bản Hiện Tại 1.2.0
Cập Nhật Lần Cuối 2023-06-29
Ngày Phát Hành 2020-09-15
Đánh Giá 4.56/5 Tổng số 136 Đánh Giá
Nhà Phát Triển https://matthew-cash.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/MatthewCash/google-meet-volume-control
URL Trang Trợ Giúp https://github.com/MatthewCash/google-meet-volume-control/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Meet Volume Control",
    "description": "Client side volume control for Google Meet",
    "version": "1.2.0",
    "short_name": "Meet Volume",
    "manifest_version": 3,
    "action": {
        "default_popup": "src\/popup\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/meet.google.com\/*"
            ],
            "js": [
                "src\/js\/meet.js"
            ]
        }
    ],
    "background": {
        "service_worker": "src\/js\/background.js"
    },
    "permissions": [
        "storage",
        "background",
        "declarativeContent"
    ]
}