Youtube video summaries - Powered by ChatGPT

Get Youtube video summaries before watching them, so you know instantly if they're worth watching.

Youtube video summaries - Powered by ChatGPT란 무엇입니까?

Youtube video summaries - Powered by ChatGPT은(는) YoutubeSummaries에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get Youtube video summaries before watching them, so you know instantly if they're worth watching."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Youtube video summaries - Powered by ChatGPT 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension lets you view a brief summary of a youtube video before watching it, so you can avoid clickbait content or quickly get the gist of a video.

These summaries are generated by ChatGPT and anyone logged into their ChatGPT account can generate a summary - completely free!

Simply mouse over any video title to view its summary. Right click on a title to view options to generate or downvote a summary in the pop-up menu that appears.                    

확장 프로그램 기본 정보

이름 Youtube video summaries - Powered by ChatGPT Youtube video summaries - Powered by ChatGPT
ID bajbfiocljodaddcdfkndlmgjbjbmjkf
공식 URL https://chromewebstore.google.com/detail/youtube-video-summaries-p/bajbfiocljodaddcdfkndlmgjbjbmjkf
설명 Get Youtube video summaries before watching them, so you know instantly if they're worth watching.
파일 크기 36.1 KB
설치 횟수 40
현재 버전 0.2.3
최근 업데이트 2023-07-21
출시 날짜 2023-06-18
평점 5.00/5 총 1 개의 평점
개발자 YoutubeSummaries
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Youtube video summaries - Powered by ChatGPT",
    "version": "0.2.3",
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "description": "Get Youtube video summaries before watching them, so you know instantly if they're worth watching.",
    "background": {
        "service_worker": "background.js"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "permissions": [
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "contentscripts\/content.bundle.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "contentscripts\/ytContent.bundle.js"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "48": "images\/icon48.png"
        }
    }
}