Meet Mute Toggle

Toggle mute on/off for Google Meets with a browser button or hotkey.

Τι είναι το Meet Mute Toggle;

Το Meet Mute Toggle είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Rob Cortez, και η κύρια λειτουργία του είναι "Toggle mute on/off for Google Meets with a browser button or hotkey.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Meet Mute Toggle

Λήψη αρχείων επέκτασης Meet Mute Toggle σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Toggle mute on or off in a Google Meet from anywhere! 
Open source: https://github.com/robcortez/meetmutetoggle

No more hunting for the meeting tab. 

- Monitor mute status with an easy to identify green or red icon 
- Toggle mute status by clicking the icon, no matter what tab you are on
- Global hotkey support allows you to toggle mute even if your browser is not in focus (default: CMD+Shift+0 on MacOS and CTRL+Shift+0 on Windows and Linux)

**UPDATED: Now supports new Meet UI and URL scheme** 

You're in a Google Meet. Maybe you're passively paying attention while getting some work done or catching up on the news. Suddenly, you hear your name and a question directed at you. The meeting grinds to a halt while you struggle to find the tab in the sea of 50 you have open. Finally, you find it only to start with, "sorry I was muted." 

Yea. We know. 

Save your colleagues from 10 seconds of uncomfortable silence.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Meet Mute Toggle Meet Mute Toggle
ID dehgflebhpbjkeiokaipakaeblanmmce
Επίσημο URL https://chromewebstore.google.com/detail/meet-mute-toggle/dehgflebhpbjkeiokaipakaeblanmmce
Περιγραφή Toggle mute on/off for Google Meets with a browser button or hotkey.
Μέγεθος Αρχείου 175 KB
Αριθμός Εγκαταστάσεων 235
Τρέχουσα Έκδοση 1.1
Τελευταία Ενημέρωση 2021-06-26
Ημερομηνία Δημοσίευσης 2020-08-13
Αξιολόγηση 4.43/5 Συνολικά 7 Αξιολογήσεις
Προγραμματιστής Rob Cortez
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://robcortez.com
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Meet Mute Toggle",
    "version": "1.1",
    "description": "Toggle mute on\/off for Google Meets with a browser button or hotkey.",
    "commands": {
        "toggle-mute": {
            "suggested_key": {
                "default": "Ctrl+Shift+0"
            },
            "description": "Toggle mute",
            "global": true
        }
    },
    "background": {
        "scripts": [
            "lib\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/meet.google.com\/*"
            ],
            "js": [
                "lib\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "https:\/\/meet.google.com\/"
    ],
    "icons": {
        "16": "img\/micoff-light16.png",
        "32": "img\/micoff-light32.png",
        "48": "img\/micoff-light48.png",
        "64": "img\/micoff-light64.png",
        "128": "img\/micoff-light128.png"
    },
    "browser_action": {
        "default_icon": "img\/micdisabled-light128.png",
        "default_title": "Toggle Mute in Meet"
    },
    "manifest_version": 2
}