Google Meet ⇔ Slack integration
Real-time Google Meet status on Slack, just like Slack huddles.
Wat is Google Meet ⇔ Slack integration?
Google Meet ⇔ Slack integration is een Chrome-extensie ontwikkeld door meetslack3, en de belangrijkste functie is "Real-time Google Meet status on Slack, just like Slack huddles.".
Extensie Screenshots
Download het CRX-bestand van de extensie Google Meet ⇔ Slack integration
Download Google Meet ⇔ Slack integration-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
🚀 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
Basisinformatie over de Extensie
Naam | Google Meet ⇔ Slack integration |
ID | kddjlbegfaiogihndmglihcgommbjmkc |
Officiële URL | https://chromewebstore.google.com/detail/google-meet-%E2%87%94-slack-integ/kddjlbegfaiogihndmglihcgommbjmkc |
Beschrijving | Real-time Google Meet status on Slack, just like Slack huddles. |
Bestandsgrootte | 48.46 KB |
Aantal Installaties | 322 |
Huidige Versie | 2.0.0 |
Laatst Bijgewerkt | 2024-01-12 |
Publicatiedatum | 2021-11-01 |
Beoordeling | 4.33/5 Totaal 3 Beoordelingen |
Ontwikkelaar | meetslack3 |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/vivek-nexus/google-meet-slack-integration |
Help Pagina-URL | https://github.com/vivek-nexus/google-meet-slack-integration |
Ondersteunde Talen | 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" } } |