Easy Mute for Google Meet

A simple extension for mute/unmute Google Meet calls from browser icon. Including options to by default turn microphone/camera off.

Easy Mute for Google Meetคืออะไร?

Easy Mute for Google Meet เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.010pixel.com และคุณลักษณะหลักของมันคือ "A simple extension for mute/unmute Google Meet calls from browser icon. Including options to by default turn microphone/camera off."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Easy Mute for Google Meet

ดาวน์โหลดไฟล์ส่วนขยาย Easy Mute for Google Meet ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Easy Mute for Google Meet

One of the best extensions to work with Google Meet.

✨ FEATURES:
✅ Simply Mute/Unmute (🔇) Google Meet calls directly from the browser icon
✅ Shows how many calls are mute
✅ Shows how many calls are unmute
✅ Mute Microphone by default
✅ Off Camera by default
✅ Toggle mute/unmute Microphone using Spacebar
✅ Toggle on/off Camera using Spacebar

🛠️ TROUBLESHOOTING:
- In case the extension doesn't work, try again after refreshing the page

🦾 HOW DOES IT DECIDE WHICH CALL TO MUTE:

➡ If you have just 1 tab with Google Meet Call (either the join screen or you have already joined the call):
- Pressing the mute button from any tab will toggle mute

➡ If you have more than 1 tab with Google Meet Call and you haven’t joined any of them:
- Pressing the mute button from a tab with the call will only toggle mute for that tab
- Pressing the mute button from any other tab will toggle all of your calls (you haven’t joined any of them so doesn’t matter)

➡ If you have more than 1 tab with Google Meet Call and you have joined only 1 of them
- Pressing the mute button from a tab with the call (joined or not joined yet) will only toggle mute for that tab
- Pressing the mute button from any other tab will ONLY mute that one tab where you have joined the call

➡ If you have more than 1 tab with Google Meet Call and you have joined the call in more than 1 tab
- Pressing the mute button from a tab with the call (joined or not joined yet) will only toggle mute for that tab
- Pressing the mute button from any other tab will make my extension confused coz which active call it should toggle. So it will show you a Red Cross sign and ask you to mute the right one yourself.

🔴 WHAT IF I SEE A RED CROSS BADGE?
- It means you are having multiple calls going on and so the system is confused about which call to toggle mute.

WORKS ON:
✅ Google Meet (https://meet.google.com)

📝 PRIVACY POLICY:
This extension does not track any user data, and therefore does not require a detailed privacy policy. If this is insufficient please email [email protected]
If you click on a third party link, you will be directed to that third party's site. We strongly advise you to review the Privacy Policy of every site you visit. We have no control over and assume no responsibility for the content, privacy policies or practices of any third party sites or services.

Support this extension: https://coffee.010pixel.com                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Easy Mute for Google Meet Easy Mute for Google Meet
ID lgdalbjhcglejepghfomkmngebhaelga
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/easy-mute-for-google-meet/lgdalbjhcglejepghfomkmngebhaelga
คำอธิบาย A simple extension for mute/unmute Google Meet calls from browser icon. Including options to by default turn microphone/camera off.
ขนาดไฟล์ 987 KB
จำนวนการติดตั้ง 14,163
เวอร์ชันปัจจุบัน 1.7.4
อัปเดตครั้งล่าสุด 2023-11-12
วันที่เผยแพร่ 2020-06-10
คะแนน 3.35/5 รวมทั้งหมด 37 คะแนน
ผู้พัฒนา https://www.010pixel.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://www.010pixel.com
URL หน้าช่วยเหลือ http://www.010pixel.com
URL หน้านโยบายความเป็นส่วนตัว https://privacy.010pixel.com/chrome
ภาษาที่รองรับ en,hi
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "default_locale": "en",
    "name": "__MSG_appName__",
    "short_name": "__MSG_appShortName__",
    "description": "__MSG_appDesc__",
    "version": "1.7.4",
    "author": "010 Pixel",
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/meet.google.com\/**-**-**"
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/payment.010pixel.com\/*"
        ]
    },
    "action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png"
        },
        "default_title": "__MSG_appBrowserActionDefaultTitle__"
    },
    "options_ui": {
        "page": "subscriptions\/index.html",
        "open_in_tab": true
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "https:\/\/meet.google.com\/**-**-**"
            ],
            "js": [
                "js\/_myapp.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "19": "images\/icon19.png",
        "24": "images\/icon24.png",
        "32": "images\/icon32.png",
        "38": "images\/icon38.png",
        "48": "images\/icon48.png",
        "64": "images\/icon64.png",
        "96": "images\/icon96.png",
        "128": "images\/icon128.png"
    }
}