Mute Defaults
This extension lets you set default mute settings for your microphone and camera in google meet.
Что такое Mute Defaults?
Mute Defaults - это расширение Chrome, разработанное tinyj, и его основная функция - "This extension lets you set default mute settings for your microphone and camera in google meet.".
Снимки экрана расширения
Скачать файл CRX расширения Mute Defaults
Скачайте файлы расширений Mute Defaults в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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. Основная информация о расширении
| Название | |
| 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"
]
} | |