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 |
| Eメール | [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"
}
} | |