Zoomcoder Extension
Record your online meetings with Zoomcoder! This will add a button on Google Calendar popup
Zoomcoder Extensionคืออะไร?
Zoomcoder Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.zoomcorder.com และคุณลักษณะหลักของมันคือ "Record your online meetings with Zoomcoder! This will add a button on Google Calendar popup"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Zoomcoder Extension
ดาวน์โหลดไฟล์ส่วนขยาย Zoomcoder Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This simple extension will add a convenient RECORD button on any Google calendar entry which contains a video meeting URL such as Zoom, WebEx, GotoMeeting, Microsoft Teams, Google Meet, etc. Once clicked the meeting details will be sent to Zoomcorder making it one click easy to schedule the Zoomcorder bot to attend, record and send you a copy of the meeting. This extension is free but Zoomcorder may require a paid subscription to record meetings.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | ebhomdageggjbmomenipfbhcjamfkmbl |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/zoomcoder-extension/ebhomdageggjbmomenipfbhcjamfkmbl |
คำอธิบาย | Record your online meetings with Zoomcoder! This will add a button on Google Calendar popup |
ขนาดไฟล์ | 90.29 KB |
จำนวนการติดตั้ง | 90 |
เวอร์ชันปัจจุบัน | 1.2.2 |
อัปเดตครั้งล่าสุด | 2023-04-17 |
วันที่เผยแพร่ | 2023-02-08 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | https://www.zoomcorder.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://zoomcorder.com/ |
URL หน้าช่วยเหลือ | https://zoomcorder.com/support |
URL หน้านโยบายความเป็นส่วนตัว | https://zoomcorder.com/extension/privacy.html |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Zoomcoder Extension", "description": "Record your online meetings with Zoomcoder! This will add a button on Google Calendar popup", "version": "1.2.2", "manifest_version": 3, "content_scripts": [ { "matches": [ "*:\/\/calendar.google.com\/*" ], "js": [ "js\/webinartv.js", "js\/moment.js", "js\/moment.tz.js", "calendar.google.com\/js\/content.js" ], "css": [ "css\/webinartv.css" ] }, { "matches": [ "*:\/\/*.zoom.us\/webinar\/*", "*:\/\/*.zoom.us\/meeting\/*" ], "js": [ "js\/webinartv.js", "zoom.us\/js\/foreground.js" ], "css": [ "css\/webinartv.css" ] }, { "matches": [ "*:\/\/*.teams.microsoft.com\/*" ], "js": [ "js\/webinartv.js", "teams.microsoft.com\/js\/foreground.js" ], "css": [ "css\/webinartv.css" ] }, { "matches": [ "*:\/\/*.meet.google.com\/*" ], "js": [ "js\/webinartv.js", "meet.google.com\/js\/foreground.js" ], "css": [ "css\/webinartv.css" ] }, { "matches": [ "*:\/\/*.webex.com\/*" ], "js": [ "js\/webinartv.js", "webex.com\/js\/foreground.js" ], "css": [ "css\/webinartv.css" ] }, { "matches": [ "*:\/\/meet.goto.com\/*", "*:\/\/gotowebinar.com\/*" ], "js": [ "js\/webinartv.js", "meet.goto.com\/js\/foreground.js" ], "css": [ "css\/webinartv.css" ] }, { "matches": [ "*:\/\/*.linkedin.com\/*" ], "js": [ "js\/webinartv.js", "linkedin.com\/js\/foreground.js" ], "css": [ "css\/webinartv.css" ] } ], "background": { "service_worker": "js\/service_worker.js" }, "web_accessible_resources": [ { "resources": [ "assets\/*" ], "matches": [ "*:\/\/*.google.com\/*", "*:\/\/*.linkedin.com\/*", "*:\/\/*.goto.com\/*", "*:\/\/*.gotowebinar.com\/*", "*:\/\/*.microsoft.com\/*", "*:\/\/*.webex.com\/*", "*:\/\/*.zoom.us\/*" ] } ], "icons": { "16": "icons\/16.png", "32": "icons\/32.png", "64": "icons\/64.png", "128": "icons\/128.png" } } |