ChatGPT Summarizer: Pages, Articles, YouTube

Summarize YouTube videos, web pages, and articles with the help of ChatGPT (OpenAI).

ChatGPT Summarizer: Pages, Articles, YouTube란 무엇입니까?

ChatGPT Summarizer: Pages, Articles, YouTube은(는) Practical AI에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Summarize YouTube videos, web pages, and articles with the help of ChatGPT (OpenAI)."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

ChatGPT Summarizer: Pages, Articles, YouTube 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Save time by creating text summaries of YouTube videos, all kinds of articles and web pages.

This is a great productivity tool, ideal for online learning or other cases when you need to grasp information fast. It adds a small panel to YouTube where you can read the text transcript of the video you're watching. It also adds timestamps to the transcript sections, clicking on witch you'll be taken to this specific time in the video, in case you would like to listen to that particular paragraph. Alternatively, you can also open the transcript on ChatGPT website and keep working with the text.
Moreover, this extension adds a small button to the corner of every webpage you're on. Clicking on the icon will take you to ChatGPT web site where you'll see a short transcript of the article you've been reading or the web page you've been browsing.                    

확장 프로그램 기본 정보

이름 ChatGPT Summarizer: Pages, Articles, YouTube ChatGPT Summarizer: Pages, Articles, YouTube
ID kohnaafkmaaphpjmpjjlbmljfmjmeglg
공식 URL https://chromewebstore.google.com/detail/chatgpt-summarizer-pages/kohnaafkmaaphpjmpjjlbmljfmjmeglg
설명 Summarize YouTube videos, web pages, and articles with the help of ChatGPT (OpenAI).
파일 크기 265 KB
설치 횟수 45
현재 버전 2.0.7
최근 업데이트 2023-08-16
출시 날짜 2023-08-08
평점 5.00/5 총 1 개의 평점
개발자 Practical AI
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://linktr.ee/practical.ai
도움말 페이지 URL https://linktr.ee/practical.ai
개인정보 보호 정책 페이지 URL https://medium.com/@Practical.AI/our-google-chrome-extensions-301c21ad48d3
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChatGPT Summarizer: Pages, Articles, YouTube",
    "version": "2.0.7",
    "manifest_version": 3,
    "description": "Summarize YouTube videos, web pages, and articles with the help of ChatGPT (OpenAI).",
    "background": {
        "service_worker": "background.bundle.js",
        "type": "module"
    },
    "action": {
        "default_icon": {
            "48": "images\/48.png"
        }
    },
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentscript\/sumindex.bundle.js"
            ],
            "css": [
                "css\/sum_summary.css"
            ],
            "all_frames": false
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "icons": {
        "48": "images\/48.png"
    }
}