Mute Defaults
This extension lets you set default mute settings for your microphone and camera in google meet.
What is Mute Defaults?
Mute Defaults is a Chrome extension developed by tinyj, and its main feature is "This extension lets you set default mute settings for your microphone and camera in google meet.".
Extension Screenshots
Download Mute Defaults Extension CRX File
Download Mute Defaults extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Mute Defaults |
ID | flmgkolakahfmbefefpeggkhfolpgdoj |
Official URL | https://chromewebstore.google.com/detail/mute-defaults/flmgkolakahfmbefefpeggkhfolpgdoj |
Description | This extension lets you set default mute settings for your microphone and camera in google meet. |
File Size | 31.02 KB |
Installation Count | 1,702 |
Current Version | 3.0 |
Last Updated | 2022-08-04 |
Publish Date | 2018-01-19 |
Rating | 3.91/5 Total 11 Ratings |
Developer | tinyj |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/jjshoe/MuteDefaults |
Help Page URL | https://github.com/jjshoe/MuteDefaults/issues |
Supported Languages | 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" ] } |