Google Meet ⇔ Slack integration
Real-time Google Meet status on Slack, just like Slack huddles.
Google Meet ⇔ Slack integrationคืออะไร?
Google Meet ⇔ Slack integration เป็นส่วนขยายของ Chrome ที่พัฒนาโดย meetslack3 และคุณลักษณะหลักของมันคือ "Real-time Google Meet status on Slack, just like Slack huddles."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google Meet ⇔ Slack integration
ดาวน์โหลดไฟล์ส่วนขยาย 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"
}
} | |