Mute Defaults
This extension lets you set default mute settings for your microphone and camera in google meet.
Wat is Mute Defaults?
Mute Defaults is een Chrome-extensie ontwikkeld door tinyj, en de belangrijkste functie is "This extension lets you set default mute settings for your microphone and camera in google meet.".
Extensie Screenshots
Download het CRX-bestand van de extensie Mute Defaults
Download Mute Defaults-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | flmgkolakahfmbefefpeggkhfolpgdoj |
| Officiële URL | https://chromewebstore.google.com/detail/mute-defaults/flmgkolakahfmbefefpeggkhfolpgdoj |
| Beschrijving | This extension lets you set default mute settings for your microphone and camera in google meet. |
| Bestandsgrootte | 31.02 KB |
| Aantal Installaties | 1,702 |
| Huidige Versie | 3.0 |
| Laatst Bijgewerkt | 2022-08-04 |
| Publicatiedatum | 2018-01-19 |
| Beoordeling | 3.91/5 Totaal 11 Beoordelingen |
| Ontwikkelaar | tinyj |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/jjshoe/MuteDefaults |
| Help Pagina-URL | https://github.com/jjshoe/MuteDefaults/issues |
| Ondersteunde Talen | 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"
]
} | |