SummifyYT (Summarize YouTube Comments)

SummifyYT is a browser extension that summarizes comments of YouTube videos.

什么是SummifyYT (Summarize YouTube Comments)?

SummifyYT (Summarize YouTube Comments)是由Dif Industries开发的Chrome扩展程序,该扩展的主要功能是“SummifyYT is a browser extension that summarizes comments of YouTube videos.”。

扩展截图

screenshot

下载SummifyYT (Summarize YouTube Comments)扩展crx文件

下载SummifyYT (Summarize YouTube Comments)扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        SummifyYT is a browser extension that helps you quickly and easily summarize comments on YouTube videos. It's perfect for users who want to get a quick overview of the comments without reading through all of them. Try SummifyYT now and see the difference it makes!

Developer updates:
- Bug fixing
- Added setting to enable GPT-4
- Added setting to disable auto-start
- UI look overhaul (Align extension's UI with YouTube's web page style)
- Fixed chat removing from chatGPT history
- Added setting for summary language

P.S. You need to be logged in ChatGPT.                    

扩展基本信息

名称 SummifyYT (Summarize YouTube Comments) SummifyYT (Summarize YouTube Comments)
ID mcjgidambippeaajehcfimmephgholco
官方URL https://chromewebstore.google.com/detail/summifyyt-summarize-youtu/mcjgidambippeaajehcfimmephgholco
简介 SummifyYT is a browser extension that summarizes comments of YouTube videos.
文件大小 140 KB
安装次数 236
当前版本 0.0.9
更新时间 2023-04-15
上架时间 2023-03-07
评分 3.25/5 共4次评分
开发者 Dif Industries
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "SummifyYT (Summarize YouTube Comments)",
    "version": "0.0.9",
    "description": "SummifyYT is a browser extension that summarizes comments of YouTube videos.",
    "host_permissions": [
        "https:\/\/*.openai.com\/"
    ],
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*",
                "https:\/\/youtu.be\/*"
            ],
            "run_at": "document_end",
            "js": [
                "content.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*",
                "icons\/*"
            ],
            "matches": [
                "https:\/\/*.youtube.com\/*",
                "https:\/\/youtu.be\/*"
            ]
        }
    ],
    "icons": {
        "16": "icons\/logo16.png",
        "32": "icons\/logo32.png",
        "48": "icons\/logo48.png",
        "64": "icons\/logo64.png",
        "128": "icons\/logo128.png"
    }
}