Google Meet ⇔ Slack integration
Real-time Google Meet status on Slack, just like Slack huddles.
什么是Google Meet ⇔ Slack integration?
Google Meet ⇔ Slack integration是由meetslack3开发的Chrome扩展程序,该扩展的主要功能是“Real-time Google Meet status on Slack, just like Slack huddles.”。
扩展截图
下载Google Meet ⇔ Slack integration扩展crx文件
下载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"
    }
}  |  |