Google Meet Captions Capture
Capture Google Meet captions and save them to a file.
Google Meet Captions Captureคืออะไร?
Google Meet Captions Capture เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Javier Ailbirt และคุณลักษณะหลักของมันคือ "Capture Google Meet captions and save them to a file."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google Meet Captions Capture
ดาวน์โหลดไฟล์ส่วนขยาย Google Meet Captions Capture ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This plugin works with Google Meet captions. It grabs all the subtitles during a google meeting and allows you to download them. This way, you can summarize them using ChatGPT, BARD, or any other LLM chat tool. For getting this app working you MUST OPEN GOOGLE MEET AND ENABLE CAPTIONS AT FIRST
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Google Meet Captions Capture |
ID | efldnnloljnpfjdonmnnhbnckmdmmaip |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/google-meet-captions-capt/efldnnloljnpfjdonmnnhbnckmdmmaip |
คำอธิบาย | Capture Google Meet captions and save them to a file. |
ขนาดไฟล์ | 1.05 MB |
จำนวนการติดตั้ง | 120 |
เวอร์ชันปัจจุบัน | 1.3 |
อัปเดตครั้งล่าสุด | 2023-05-29 |
วันที่เผยแพร่ | 2023-05-19 |
คะแนน | 4.14/5 รวมทั้งหมด 7 คะแนน |
ผู้พัฒนา | Javier Ailbirt |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://theeye.io |
URL หน้าช่วยเหลือ | https://theeye.io |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Google Meet Captions Capture", "version": "1.3", "description": "Capture Google Meet captions and save them to a file.", "action": { "default_popup": "popup.html", "default_icon": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } }, "permissions": [ "activeTab", "storage" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.google.com\/*" ], "js": [ "content.js" ] } ] } |