Google Meet ⇔ Slack integration
Real-time Google Meet status on Slack, just like Slack huddles.
What is Google Meet ⇔ Slack integration?
Google Meet ⇔ Slack integration is a Chrome extension developed by meetslack3, and its main feature is "Real-time Google Meet status on Slack, just like Slack huddles.".
Extension Screenshots
Download Google Meet ⇔ Slack integration Extension CRX File
Download Google Meet ⇔ Slack integration extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
                        🚀 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                     Extension Basic Information
| Name |   |  
| ID | kddjlbegfaiogihndmglihcgommbjmkc | 
| Official URL | https://chromewebstore.google.com/detail/google-meet-%E2%87%94-slack-integ/kddjlbegfaiogihndmglihcgommbjmkc | 
| Description | Real-time Google Meet status on Slack, just like Slack huddles. | 
| File Size | 48.46 KB | 
| Installation Count | 322 | 
| Current Version | 2.0.0 | 
| Last Updated | 2024-01-12 | 
| Publish Date | 2021-11-01 | 
| Rating | 4.33/5 Total 3 Ratings | 
| Developer | meetslack3 | 
| [email protected] | |
| Payment Type | free | 
| Extension Website | https://github.com/vivek-nexus/google-meet-slack-integration | 
| Help Page URL | https://github.com/vivek-nexus/google-meet-slack-integration | 
| Supported Languages | 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"
    }
}  |  |