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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
🚀 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"
}
} | |