Sangoma Meet
This extension adds Sangoma Meet button to Google Calendar UI to simplify adding Sangoma meeting details into a calendar invite.
Sangoma Meetคืออะไร?
Sangoma Meet เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sangoma-cloud-apps และคุณลักษณะหลักของมันคือ "This extension adds Sangoma Meet button to Google Calendar UI to simplify adding Sangoma meeting details into a calendar invite."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Sangoma Meet
ดาวน์โหลดไฟล์ส่วนขยาย Sangoma Meet ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Sangoma Meet is a multi-platform video conferencing service, based on WebRTC, which provides the best in video conferencing security and experience, whether on a mobile device or desktop computer. Sangoma Meet enables anyone to start a video conference on any device they want. Collaborate with co-workers on projects, keep in touch with your whole family, share some screen-time with your team or meet their family and pets and feel like you’re there with them. Extension supports several ways to create a new meeting in Google Calendar and share Sangoma Meet connection info with participants 1. Clicking Sangoma Meet button on Chrome toolbar will open a new Google Calendar event form and will insert Sangoma Meet connection info automatically. 2. While in Google Calendar UI, click a free spot to show a Quick meeting add panel. Use Add a Sangoma Meet button to insert Sangoma Meet connection info. 3. While in Google Calendar event editor, use Add a Sangoma Meet button to insert Sangoma Meet connection info. Once Sangoma meeting details are inserted, add the meeting title, participants, set the time to meet and send invite. You are now ready to host your video conference. Simple!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Sangoma Meet |
ID | kcceflnmljlefienlljlndciijmpcpnf |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/sangoma-meet/kcceflnmljlefienlljlndciijmpcpnf |
คำอธิบาย | This extension adds Sangoma Meet button to Google Calendar UI to simplify adding Sangoma meeting details into a calendar invite. |
ขนาดไฟล์ | 196 KB |
จำนวนการติดตั้ง | 826 |
เวอร์ชันปัจจุบัน | 5.4.7 |
อัปเดตครั้งล่าสุด | 2024-02-01 |
วันที่เผยแพร่ | 2020-06-04 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | sangoma-cloud-apps |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://meet.sangoma.com |
URL หน้านโยบายความเป็นส่วนตัว | https://www.sangoma.com/privacy-policy |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Sangoma Meet", "description": "This extension adds Sangoma Meet button to Google Calendar UI to simplify adding Sangoma meeting details into a calendar invite.", "version": "5.4.7", "icons": { "16": "icon-16x16.png", "48": "icon-48x48.png", "128": "icon-128x128.png" }, "background": { "scripts": [ "jquery.js", "util\/inject.js", "auth\/auth.js", "conference.js", "background-alt.js", "resources.js" ] }, "options_page": "options.html", "permissions": [ "background", "notifications", "https:\/\/meet.sangoma.com\/*", "https:\/\/*.meet.sangoma.com\/*", "https:\/\/calendar.google.com\/calendar\/*" ], "content_scripts": [ { "matches": [ "https:\/\/calendar.google.com\/calendar\/*" ], "js": [ "jquery.js", "RandomUtil.js", "RoomnameNumeric.js", "meet-calendar.js" ], "css": [ "sangoma.css" ], "all_frames": false, "run_at": "document_end" }, { "matches": [ "https:\/\/dev-next.meet.sangoma.com\/", "https:\/\/staging.meet.sangoma.com\/", "https:\/\/meet.sangoma.com\/" ], "js": [ "auth\/auth_content_script.js" ], "all_frames": true, "run_at": "document_start" }, { "matches": [ "https:\/\/dev-next.meet.sangoma.com\/static\/msredirect.html*", "https:\/\/staging.meet.sangoma.com\/static\/msredirect.html*", "https:\/\/meet.sangoma.com\/static\/msredirect.html*" ], "js": [ "util\/inject.js", "auth\/auth_content_script.js" ], "all_frames": true, "run_at": "document_end" } ], "web_accessible_resources": [ "auth\/msal-browser.min.js", "cpaas-pkce-auth\/index.js", "auth\/auth_lib.js", "img\/check.svg", "img\/copy.svg", "img\/config.svg", "img\/expand.svg", "img\/collapse.svg", "img\/delete.svg", "img\/drop.svg", "icon-48x48.png", "icon-white-48x48.png", "icon-blue.svg", "icon-grey.svg" ], "browser_action": { "default_title": "Create Sangoma Meeting", "default_popup": "popup.html" } } |