Google Meet ⇔ Slack integration
Real-time Google Meet status on Slack, just like Slack huddles.
Co je Google Meet ⇔ Slack integration?
Google Meet ⇔ Slack integration je rozšíření Chrome vyvinuté meetslack3, a jeho hlavní funkcí je „Real-time Google Meet status on Slack, just like Slack huddles.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Google Meet ⇔ Slack integration
Stáhněte si soubory rozšíření Google Meet ⇔ Slack integration ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
🚀 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 Základní Informace o Rozšíření
| Název | |
| ID | kddjlbegfaiogihndmglihcgommbjmkc |
| Oficiální URL | https://chromewebstore.google.com/detail/google-meet-%E2%87%94-slack-integ/kddjlbegfaiogihndmglihcgommbjmkc |
| Popis | Real-time Google Meet status on Slack, just like Slack huddles. |
| Velikost souboru | 48.46 KB |
| Počet instalací | 322 |
| Aktuální Verze | 2.0.0 |
| Poslední Aktualizace | 2024-01-12 |
| Datum Vydání | 2021-11-01 |
| Hodnocení | 4.33/5 Celkem 3 Hodnocení |
| Vývojář | meetslack3 |
| [email protected] | |
| Typ Platby | free |
| Webové stránky Rozšíření | https://github.com/vivek-nexus/google-meet-slack-integration |
| URL Stránky Nápovědy | https://github.com/vivek-nexus/google-meet-slack-integration |
| Podporované Jazyky | 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"
}
} | |