Mute Defaults
This extension lets you set default mute settings for your microphone and camera in google meet.
Mute Defaults क्या है?
Mute Defaults tinyj द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension lets you set default mute settings for your microphone and camera in google meet."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Mute Defaults एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | Mute Defaults |
ID | flmgkolakahfmbefefpeggkhfolpgdoj |
आधिकारिक URL | https://chromewebstore.google.com/detail/mute-defaults/flmgkolakahfmbefefpeggkhfolpgdoj |
विवरण | This extension lets you set default mute settings for your microphone and camera in google meet. |
फ़ाइल का आकार | 31.02 KB |
स्थापना संख्या | 1,702 |
वर्तमान संस्करण | 3.0 |
अंतिम अपडेट | 2022-08-04 |
प्रकाशन तिथि | 2018-01-19 |
रेटिंग | 3.91/5 कुल 11 रेटिंग्स |
डेवलपर | tinyj |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/jjshoe/MuteDefaults |
सहायता पृष्ठ URL | https://github.com/jjshoe/MuteDefaults/issues |
समर्थित भाषाएँ | 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" ] } |