Google Meet Captions Capture
Capture Google Meet captions and save them to a file.
什麼是Google Meet Captions Capture?
Google Meet Captions Capture是由Javier Ailbirt開發的Chrome擴展程式,該擴展的主要功能是“Capture Google Meet captions and save them to a file.”。
擴展截圖
下載Google Meet Captions Capture擴展crx文件
下載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 |
官方網址 | 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" ] } ] } |