Google Meet ⇔ Slack integration
Real-time Google Meet status on Slack, just like Slack huddles.
Google Meet ⇔ Slack integration là gì?
Google Meet ⇔ Slack integration là một tiện ích mở rộng Chrome được phát triển bởi meetslack3, và tính năng chính của nó là "Real-time Google Meet status on Slack, just like Slack huddles.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Google Meet ⇔ Slack integration
Tải xuống các tệp mở rộng Google Meet ⇔ Slack integration dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
🚀 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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Google Meet ⇔ Slack integration |
ID | kddjlbegfaiogihndmglihcgommbjmkc |
URL Chính Thức | https://chromewebstore.google.com/detail/google-meet-%E2%87%94-slack-integ/kddjlbegfaiogihndmglihcgommbjmkc |
Mô tả | Real-time Google Meet status on Slack, just like Slack huddles. |
Kích Thước Tệp | 48.46 KB |
Số Lần Cài Đặt | 322 |
Phiên Bản Hiện Tại | 2.0.0 |
Cập Nhật Lần Cuối | 2024-01-12 |
Ngày Phát Hành | 2021-11-01 |
Đánh Giá | 4.33/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | meetslack3 |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/vivek-nexus/google-meet-slack-integration |
URL Trang Trợ Giúp | https://github.com/vivek-nexus/google-meet-slack-integration |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |