Youtube Transcript AI Summary

Get AI generated summary for Youtube video transcript with ChatGPT, Claude.

Youtube Transcript AI Summary란 무엇입니까?

Youtube Transcript AI Summary은(는) https://mediafreeware.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get AI generated summary for Youtube video transcript with ChatGPT, Claude."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Chrome extensions are a great way to enhance your browsing experience and productivity. One such extension offers several useful features that can help you better understand and summarize long-form content. These features include automatic AI summary, manual summary, text splitting, and customized prompt entry.

The first feature, automatic AI summary, uses the OpenAI API to provide a summary of long-form content. OpenAI is a research laboratory that focuses on developing artificial intelligence in a safe and beneficial manner. The API provides access to powerful algorithms and models that can analyze and summarize large amounts of text. This feature is ideal for those who need to quickly skim through long articles or documents and get a quick summary of their contents.

The manual summary feature allows users to submit text to a ChatGPT, which is a large language model trained by OpenAI. The model can provide a summary of the text submitted by the user. This feature is useful when the automatic AI summary doesn't provide a sufficient summary, or when users need a more personalized summary of the content.

The text splitting feature is designed to help users better navigate long-form content. It allows users to split long pieces of text into smaller, more manageable chunks. This feature is useful for those who have difficulty concentrating or reading for long periods, or for those who prefer to break up their reading into smaller chunks.

Finally, the customized prompt entry feature allows users to enter a custom prompt for the automatic AI summary. This can help the AI algorithm better understand what the user is looking for and provide a more accurate summary. This feature is particularly useful for those who are looking for specific information within a larger piece of content.

Overall, these features make this Chrome extension a valuable tool for anyone who needs to quickly and efficiently summarize long-form content. Whether you're a student, researcher, or just someone who likes to read a lot, this extension can help you get the information you need in a more efficient and manageable way.

Version: 1.1.4
1- Support for GPT4 added.
2- Added more GPT models and removed deprecated ones.
3- Added support to select different subtitle language for summaries.

Version: 1.0.6
Introducing Pro Features and improved ChatGPT integration.

Version: 1.0.2
1- This version now automates ChatGPT via it's Pro version. This breaks long texts into chunks so the limit of ChatGPT isn't breached and you get the accurate summaries.

2- In Pro version, we support getting Captions for Youtube videos and summarize them accordingly.

3- More control on prompts that can be used on both OpenAPI and ChatGPT.                    

확장 프로그램 기본 정보

이름 Youtube Transcript AI Summary Youtube Transcript AI Summary
ID eciiehmejcjnbooihpiljfnklkopkfcj
공식 URL https://chromewebstore.google.com/detail/youtube-transcript-ai-sum/eciiehmejcjnbooihpiljfnklkopkfcj
설명 Get AI generated summary for Youtube video transcript with ChatGPT, Claude.
파일 크기 797 KB
설치 횟수 13,913
현재 버전 1.1.4
최근 업데이트 2023-11-27
출시 날짜 2023-02-20
평점 4.60/5 총 42 개의 평점
개발자 https://mediafreeware.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.mediafreeware.com/youtube-transcript-ai-summary-extension.html
개인정보 보호 정책 페이지 URL https://www.freepdfsolutions.com/privacypolicy.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Youtube Transcript AI Summary",
    "default_locale": "en",
    "description": "__MSG_extDescription__",
    "author": "[email protected]",
    "version": "1.1.4",
    "icons": {
        "128": "images\/icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "all_frames": false,
            "js": [
                "js\/jquery-3.3.1.min.js",
                "contents.js"
            ],
            "css": [
                "css\/style.css"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        },
        {
            "run_at": "document_end",
            "all_frames": false,
            "js": [
                "js\/jquery-3.3.1.min.js",
                "js\/arrive.min.js",
                "chatgpt.js"
            ],
            "css": [
                "css\/chatgpt-style.css"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ]
        },
        {
            "run_at": "document_end",
            "all_frames": false,
            "js": [
                "js\/jquery-3.3.1.min.js",
                "js\/arrive.min.js",
                "claude.js"
            ],
            "css": [
                "css\/chatgpt-style.css"
            ],
            "matches": [
                "https:\/\/claude.ai\/*"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "128": "images\/icon.png"
        },
        "default_title": "Youtube Transcript AI Summary"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "permissions": [
        "storage",
        "webRequest"
    ],
    "host_permissions": [
        "https:\/\/www.youtube.com\/*",
        "https:\/\/chat.openai.com\/*",
        "https:\/\/claude.ai\/*",
        "https:\/\/www.mediafreeware.com\/*",
        "https:\/\/www.google-analytics.com\/*"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/loading.png",
                "options.html"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ]
}