MuteDeck Google Meet Extension
This extension discovers and controls Google Meet calls and passes on the status to MuteDeck. Get MuteDeck from https://mutedeck.com
Что такое MuteDeck Google Meet Extension?
MuteDeck Google Meet Extension - это расширение Chrome, разработанное https://mutedeck.com, и его основная функция - "This extension discovers and controls Google Meet calls and passes on the status to MuteDeck. Get MuteDeck from https://mutedeck.com".
Снимки экрана расширения
Скачать файл CRX расширения MuteDeck Google Meet Extension
Скачайте файлы расширений MuteDeck Google Meet Extension в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Control your Google Meet calls with MuteDeck. Install this extension to make Google Meet available inside MuteDeck. Get more information on: https://mutedeck.com
Основная информация о расширении
Название | MuteDeck Google Meet Extension |
ID | egphpgddoenbpakmaojmnjpjoflmknjk |
Официальный URL | https://chromewebstore.google.com/detail/mutedeck-google-meet-exte/egphpgddoenbpakmaojmnjpjoflmknjk |
Описание | This extension discovers and controls Google Meet calls and passes on the status to MuteDeck. Get MuteDeck from https://mutedeck.com |
Размер файла | 62.03 KB |
Количество установок | 1,785 |
Текущая Версия | 1.4 |
Последнее Обновление | 2023-05-03 |
Дата публикации | 2022-10-19 |
Рейтинг | 2.33/5 Всего 3 оценок |
Разработчик | https://mutedeck.com |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://mutedeck.com |
URL страницы помощи | https://mutedeck.com |
URL страницы политики конфиденциальности | https://mutedeck.com/privacy-policy |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "MuteDeck Google Meet Extension", "version": "1.4", "description": "This extension discovers and controls Google Meet calls and passes on the status to MuteDeck. Get MuteDeck from https:\/\/mutedeck.com", "manifest_version": 3, "permissions": [ "storage", "activeTab" ], "host_permissions": [ "https:\/\/meet.google.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "js": [ "contentScript.js" ], "run_at": "document_idle" } ], "options_ui": { "page": "options.html", "open_in_tab": false }, "action": { "default_icon": { "16": "images\/logo-16.png", "32": "images\/logo-32.png", "48": "images\/logo-48.png", "128": "images\/logo-128.png" }, "default_popup": "popup.html" }, "icons": { "16": "images\/logo-16.png", "32": "images\/logo-32.png", "48": "images\/logo-48.png", "128": "images\/logo-128.png" } } |