Google Meet Captions Capture
Capture Google Meet captions and save them to a file.
Google Meet Captions Capture là gì?
Google Meet Captions Capture là một tiện ích mở rộng Chrome được phát triển bởi Javier Ailbirt, và tính năng chính của nó là "Capture Google Meet captions and save them to a file.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Google Meet Captions Capture
Tải xuống các tệp mở rộng Google Meet Captions Capture dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Google Meet Captions Capture |
ID | efldnnloljnpfjdonmnnhbnckmdmmaip |
URL Chính Thức | https://chromewebstore.google.com/detail/google-meet-captions-capt/efldnnloljnpfjdonmnnhbnckmdmmaip |
Mô tả | Capture Google Meet captions and save them to a file. |
Kích Thước Tệp | 1.05 MB |
Số Lần Cài Đặt | 120 |
Phiên Bản Hiện Tại | 1.3 |
Cập Nhật Lần Cuối | 2023-05-29 |
Ngày Phát Hành | 2023-05-19 |
Đánh Giá | 4.14/5 Tổng số 7 Đánh Giá |
Nhà Phát Triển | Javier Ailbirt |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://theeye.io |
URL Trang Trợ Giúp | https://theeye.io |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |