Youtube Video Summary

Get youtube summaries by chatgpt injected automatically if the video has a transcript!

Youtube Video Summary란 무엇입니까?

Youtube Video Summary은(는) tedcbook에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get youtube summaries by chatgpt injected automatically if the video has a transcript!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Youtube Video Summary 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Requires an openai free/plus account. No api key needed.

6/12/23 - Auto summarize longer transcripts
6/3/23 - Now supports more language options for summary.                    

확장 프로그램 기본 정보

이름 Youtube Video Summary Youtube Video Summary
ID ibheopmbegmfgmkjpllifpmbciklaeda
공식 URL https://chromewebstore.google.com/detail/youtube-video-summary/ibheopmbegmfgmkjpllifpmbciklaeda
설명 Get youtube summaries by chatgpt injected automatically if the video has a transcript!
파일 크기 1.25 MB
설치 횟수 457
현재 버전 0.3.4
최근 업데이트 2023-06-30
출시 날짜 2023-03-23
평점 5.00/5 총 1 개의 평점
개발자 tedcbook
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/zhangted/youtube-transcript-gpt
도움말 페이지 URL https://github.com/zhangted/youtube-transcript-gpt
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Video Summary",
    "author": "[email protected]",
    "description": "Get youtube summaries by chatgpt injected automatically if the video has a transcript! ",
    "version": "0.3.4",
    "manifest_version": 3,
    "icons": {
        "16": "img\/logo-16.png",
        "32": "img\/logo-34.png",
        "48": "img\/logo-48.png",
        "128": "img\/logo-128.png"
    },
    "action": {
        "default_popup": "src\/options\/index.html"
    },
    "options_ui": {
        "page": "src\/options\/index.html"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "service-worker-loader.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "js": [
                "assets\/content-script-loader.chunk-73b6477d.ffa62643.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "https:\/\/youtube.com\/*"
            ],
            "css": [
                "assets\/index.ts.98e9d517.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [],
            "resources": [
                "img\/logo-16.png",
                "img\/logo-34.png",
                "img\/logo-48.png",
                "img\/logo-128.png"
            ],
            "use_dynamic_url": false
        },
        {
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "https:\/\/youtube.com\/*"
            ],
            "resources": [
                "assets\/chunk-31abaa59.js",
                "assets\/chunk-f52f09cb.js",
                "assets\/chunk-38da4c65.js",
                "assets\/chunk-98eaf3ac.js",
                "assets\/chunk-73b6477d.js"
            ],
            "use_dynamic_url": true
        }
    ],
    "host_permissions": [
        "https:\/\/*.openai.com\/"
    ],
    "content_security_policy": {
        "extension_pages": "default-src 'self' 'wasm-unsafe-eval'; connect-src https:\/\/* data: blob: filesystem:;"
    }
}