Meet Protect - microphone & camera protection

A Google Meet protector against the accidental microphone and camera opening.

Meet Protect - microphone & camera protection là gì?

Meet Protect - microphone & camera protection là một tiện ích mở rộng Chrome được phát triển bởi salmanwaelmirza, và tính năng chính của nó là "A Google Meet protector against the accidental microphone and camera opening.".

Ả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 Meet Protect - microphone & camera protection

Tải xuống các tệp mở rộng Meet Protect - microphone & camera protection 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 simple, efficient, and reliable google meet addon safeguards you from the accidental microphone or camera opening on google meet classroom. It accomplishes this by introducing new features to google meet call, such as: 

1. Mutes the microphone once the tab is switched. 

2. Displays a confirmation pop-up every time the google meet video or audio gets turned on.

3. Disables the mute/unmute and camera hotkeys (Ctrl+D) and (Ctrl+E). 

4. Automatically mutes the microphone when it is continuously silent for a specified amount of seconds.

With Meet Protect, you can rest assured.


Disclaimer: 
Please bear in mind that this extension was produced by an independent developer, not by Google. All copyrights are owned by their respective owners. Google does not promote or sponsor this Chrome extension. Google Inc. does not own, license, or is a parent of Meet Protect.                    

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

Tên Meet Protect - microphone & camera protection Meet Protect - microphone & camera protection
ID oiflhingbpdffgddpobdffhemhbcffmo
URL Chính Thức https://chromewebstore.google.com/detail/meet-protect-microphone-c/oiflhingbpdffgddpobdffhemhbcffmo
Mô tả A Google Meet protector against the accidental microphone and camera opening.
Kích Thước Tệp 65.38 KB
Số Lần Cài Đặt 95
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2022-08-07
Ngày Phát Hành 2022-02-23
Đánh Giá 5.00/5 Tổng số 6 Đánh Giá
Nhà Phát Triển salmanwaelmirza
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Meet Protect - microphone & camera protection",
    "short_name": "Meet Protect",
    "version": "1.3",
    "description": "A Google Meet protector against the accidental microphone and camera opening.",
    "manifest_version": 3,
    "author": "Salman",
    "permissions": [
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "match_about_blank": false,
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "\/images\/16.png",
        "24": "\/images\/24.png",
        "32": "\/images\/32.png",
        "48": "\/images\/48.png",
        "128": "\/images\/128.png"
    },
    "action": {
        "default_icon": {
            "48": "\/images\/48.png"
        },
        "default_title": "Mute Google Meet on Tab Switch",
        "default_popup": "popup.html"
    },
    "commands": {
        "disableMic": {
            "suggested_key": {
                "default": "Ctrl+D"
            },
            "description": "Disable Microphone Shortcut Ctrl+D"
        },
        "disableCamera": {
            "suggested_key": {
                "default": "Ctrl+Period"
            },
            "description": "Disable Camera Shortcut Ctrl+E",
            "global": true
        }
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}