Push To Talk For Google Meet

Hold in Google Meet to talk instead of fumbling around trying to mute and unmute

Push To Talk For Google Meet là gì?

Push To Talk For Google Meet là một tiện ích mở rộng Chrome được phát triển bởi https://www.w3technic.com, và tính năng chính của nó là "Hold in Google Meet to talk instead of fumbling around trying to mute and unmute".

Ả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 Push To Talk For Google Meet

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

                        Hold [spacebar] in Google Meet to talk instead of fumbling around trying to mute and unmute
No more unexpected sounds.
Simple add-on that allows you to mute and unmute yourself with a key press instead of fumbling around trying to click the icon.

DOCUMENTATION
Click "Add to Chrome"  button then go to Google Meet page
Mute/unmute: Quick push [spacebar]
Hold [spacebar] (default) to talk, release to go back to mute
Configure your own hotkey if you don't like [spacebar] in settings
Mute will be on by default, but you can disable that feature in settings
This extensions only works on Google Meet

PURPOSE
This extension was made to help all the teachers and students figuring out distance learning together.

PRIVACY POLICY
We don't store your data, period.
Thanks!                    

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

Tên Push To Talk For Google Meet Push To Talk For Google Meet
ID kkijalhkcfebhahlagllhlpocfehbfok
URL Chính Thức https://chromewebstore.google.com/detail/push-to-talk-for-google-m/kkijalhkcfebhahlagllhlpocfehbfok
Mô tả Hold in Google Meet to talk instead of fumbling around trying to mute and unmute
Kích Thước Tệp 35.12 KB
Số Lần Cài Đặt 986
Phiên Bản Hiện Tại 1.1.1
Cập Nhật Lần Cuối 2020-07-25
Ngày Phát Hành 2020-07-21
Đánh Giá 4.29/5 Tổng số 7 Đánh Giá
Nhà Phát Triển https://www.w3technic.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.w3technic.com/
URL Trang Trợ Giúp https://www.w3technic.com/contact.html
URL Trang Chính Sách Bảo Mật https://w3technic.com/privacy-policy
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.1.1",
    "manifest_version": 2,
    "name": "Push To Talk For Google Meet",
    "description": "Hold  in Google Meet to talk instead of fumbling around trying to mute and unmute",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "ptt.bundle.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.bundle.js",
            "update-conf.js",
            "update.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "options.html"
    },
    "options_page": "options.html",
    "permissions": [
        "storage",
        "declarativeContent"
    ],
    "homepage_url": "https:\/\/www.w3technic.com\/p\/push-to-talk-for-google-meet.html"
}