Google Meet ⇔ Slack integration
Real-time Google Meet status on Slack, just like Slack huddles.
Что такое Google Meet ⇔ Slack integration?
Google Meet ⇔ Slack integration - это расширение Chrome, разработанное meetslack3, и его основная функция - "Real-time Google Meet status on Slack, just like Slack huddles.".
Снимки экрана расширения
Скачать файл CRX расширения Google Meet ⇔ Slack integration
Скачайте файлы расширений Google Meet ⇔ Slack integration в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
🚀 Improve workplace communication by connecting Google Meet with Slack!
🌟 Google Meet ⇔ Slack automatically updates your slack status, when you join and exit meetings, even for unscheduled meetings or overflowing meetings.
👉 This is an open source project. View code or please report issues here: https://github.com/vivek-nexus/google-meet-slack-integration/issues Основная информация о расширении
| Название | |
| ID | kddjlbegfaiogihndmglihcgommbjmkc |
| Официальный URL | https://chromewebstore.google.com/detail/google-meet-%E2%87%94-slack-integ/kddjlbegfaiogihndmglihcgommbjmkc |
| Описание | Real-time Google Meet status on Slack, just like Slack huddles. |
| Размер файла | 48.46 KB |
| Количество установок | 322 |
| Текущая Версия | 2.0.0 |
| Последнее Обновление | 2024-01-12 |
| Дата публикации | 2021-11-01 |
| Рейтинг | 4.33/5 Всего 3 оценок |
| Разработчик | meetslack3 |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/vivek-nexus/google-meet-slack-integration |
| URL страницы помощи | https://github.com/vivek-nexus/google-meet-slack-integration |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Google Meet \u21d4 Slack integration",
"version": "2.0.0",
"manifest_version": 3,
"description": "Real-time Google Meet status on Slack, just like Slack huddles.",
"action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"icons": {
"128": "icon.png"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"content_scripts": [
{
"js": [
"content.js"
],
"run_at": "document_end",
"matches": [
"https:\/\/meet.google.com\/*"
],
"exclude_matches": [
"https:\/\/meet.google.com\/"
]
}
],
"permissions": [
"storage"
],
"host_permissions": [
"https:\/\/meet.google.com\/*",
"https:\/\/slack.com\/*",
"https:\/\/www.gstatic.com\/*"
],
"background": {
"service_worker": "background.js"
}
} | |