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文件

下載ChatGPT Summarizer: Pages, Articles, YouTube擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}