Google Meet - Auto Meeting Notes
A privacy first auto notes taker for Google Meet/Hangouts meetings.
Google Meet - Auto Meeting Notesคืออะไร?
Google Meet - Auto Meeting Notes เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Helper Functions และคุณลักษณะหลักของมันคือ "A privacy first auto notes taker for Google Meet/Hangouts meetings."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google Meet - Auto Meeting Notes
ดาวน์โหลดไฟล์ส่วนขยาย Google Meet - Auto Meeting Notes ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Google Meets/Hangouts has this really cool live captions feature. This extension saves those captions as meeting notes. No meeting text or voice data is sent to any servers from this extension. All the processing happens on the client( your) end.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Google Meet - Auto Meeting Notes |
ID | dcbhlmadhngmgbnjlegflhpbijcbbdde |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/google-meet-auto-meeting/dcbhlmadhngmgbnjlegflhpbijcbbdde |
คำอธิบาย | A privacy first auto notes taker for Google Meet/Hangouts meetings. |
ขนาดไฟล์ | 213 KB |
จำนวนการติดตั้ง | 3,770 |
เวอร์ชันปัจจุบัน | 1.0.7 |
อัปเดตครั้งล่าสุด | 2020-12-04 |
วันที่เผยแพร่ | 2020-06-04 |
คะแนน | 2.14/5 รวมทั้งหมด 7 คะแนน |
ผู้พัฒนา | Helper Functions |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Google Meet - Auto Meeting Notes", "description": "A privacy first auto notes taker for Google Meet\/Hangouts meetings.", "author": "Aditya Kumar", "version": "1.0.7", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "browser_action": { "default_icon": "images\/icon128.png" }, "permissions": [], "content_scripts": [ { "matches": [ "*:\/\/meet.google.com\/*" ], "js": [ "scripts\/jquery.min.js", "scripts\/jquery-ui.js", "scripts\/extension.js" ], "css": [ "notes.css" ] } ], "manifest_version": 2, "web_accessible_resources": [ "scripts\/script.js", "scripts\/script_post.js", "scripts\/print.jpg", "scripts\/print.css", "scripts\/edit.png" ], "content_security_policy": "script-src 'self' https:\/\/code.jquery.com; object-src 'self'" } |