Google Meet ⇔ Slack integration
Real-time Google Meet status on Slack, just like Slack huddles.
Vad är Google Meet ⇔ Slack integration?
Google Meet ⇔ Slack integration är en Chrome-tillägg utvecklad av meetslack3, och dess huvudfunktion är "Real-time Google Meet status on Slack, just like Slack huddles.".
Tilläggsskärmbilder
Ladda ner Google Meet ⇔ Slack integration-förlängningens CRX-fil
Ladda ner Google Meet ⇔ Slack integration-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
🚀 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
Grundläggande Information om Tillägg
Namn | Google Meet ⇔ Slack integration |
ID | kddjlbegfaiogihndmglihcgommbjmkc |
Officiell webbadress | https://chromewebstore.google.com/detail/google-meet-%E2%87%94-slack-integ/kddjlbegfaiogihndmglihcgommbjmkc |
Beskrivning | Real-time Google Meet status on Slack, just like Slack huddles. |
Filstorlek | 48.46 KB |
Antal Installationer | 322 |
Aktuell Version | 2.0.0 |
Senast Uppdaterad | 2024-01-12 |
Publiceringsdatum | 2021-11-01 |
Betyg | 4.33/5 Totalt 3 Betyg |
Utvecklare | meetslack3 |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/vivek-nexus/google-meet-slack-integration |
Hjälpsida URL | https://github.com/vivek-nexus/google-meet-slack-integration |
Stödda Språk | 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" } } |