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."입니다.

확장 프로그램 스크린샷

screenshot

Google Meet Captions Capture 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
            ]
        }
    ]
}