Google Meet Push to Talk

Enable push to talk functionality in Google Meet

Google Meet Push to Talk là gì?

Google Meet Push to Talk là một tiện ích mở rộng Chrome được phát triển bởi JCW Services, và tính năng chính của nó là "Enable push to talk functionality in 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 Push to Talk

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

                        This extension is for Google Meet

This will enable simple push to talk functionality to make it easier to only have your microphone on when talk to prevent feedback especially in large meetings

When the spacebar is pressed down it will unmute the microphone and when released it will mute the microphone

Code - https://github.com/jcw-os/google-meet-ptt                    

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

Tên Google Meet Push to Talk Google Meet Push to Talk
ID lmbeadglfeffhemaffjdgfbgmiggafkg
URL Chính Thức https://chromewebstore.google.com/detail/google-meet-push-to-talk/lmbeadglfeffhemaffjdgfbgmiggafkg
Mô tả Enable push to talk functionality in Google Meet
Kích Thước Tệp 95.2 KB
Số Lần Cài Đặt 24,051
Phiên Bản Hiện Tại 1.0.6
Cập Nhật Lần Cuối 2021-05-28
Ngày Phát Hành 2020-05-28
Đánh Giá 3.36/5 Tổng số 28 Đánh Giá
Nhà Phát Triển JCW Services
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Meet Push to Talk",
    "description": "Enable push to talk functionality in Google Meet",
    "version": "1.0.6",
    "icons": {
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png",
        "256": "icons\/icon-256.png",
        "512": "icons\/icon-512.png",
        "1024": "icons\/icon-1024.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "js\/content_script.js"
            ],
            "css": [
                "css\/ptt.css"
            ]
        }
    ]
}