Mute Defaults
This extension lets you set default mute settings for your microphone and camera in google meet.
Cos'è Mute Defaults?
Mute Defaults è un'estensione di Chrome sviluppata da tinyj, e la sua funzione principale è "This extension lets you set default mute settings for your microphone and camera in google meet.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Mute Defaults
Scarica i file di estensione Mute Defaults in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Annoyed having to click mute on both your camera and microphone when joining a google meet? You can use this extension to automatically mute your camera or microphone automatically before you click join.
Informazioni di Base sull'Estensione
Nome | Mute Defaults |
ID | flmgkolakahfmbefefpeggkhfolpgdoj |
URL Ufficiale | https://chromewebstore.google.com/detail/mute-defaults/flmgkolakahfmbefefpeggkhfolpgdoj |
Descrizione | This extension lets you set default mute settings for your microphone and camera in google meet. |
Dimensione del File | 31.02 KB |
Conteggio Installazioni | 1,702 |
Versione Corrente | 3.0 |
Ultimo Aggiornamento | 2022-08-04 |
Data di Pubblicazione | 2018-01-19 |
Valutazione | 3.91/5 Totale 11 Valutazioni |
Sviluppatore | tinyj |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/jjshoe/MuteDefaults |
URL della Pagina di Aiuto | https://github.com/jjshoe/MuteDefaults/issues |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Mute Defaults", "short_name": "Mute Defaults", "description": "This extension lets you set default mute settings for your microphone and camera in google meet.", "version": "3.0", "homepage_url": "http:\/\/github.com\/jjshoe\/MuteDefaults", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "action": { "default_icon": "icon128.png", "default_popup": "settings.html", "default_title": "Manage microphone and camera settings on google meet" }, "content_scripts": [ { "run_at": "document_end", "matches": [ "*:\/\/meet.google.com\/*" ], "js": [ "hook_hangouts.js" ] } ], "permissions": [ "storage" ] } |