SummifyYT (Summarize YouTube Comments)

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

SummifyYT (Summarize YouTube Comments) là gì?

SummifyYT (Summarize YouTube Comments) là một tiện ích mở rộng Chrome được phát triển bởi Dif Industries, và tính năng chính của nó là "SummifyYT is a browser extension that summarizes comments of YouTube videos.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng SummifyYT (Summarize YouTube Comments)

Tải xuống các tệp mở rộng SummifyYT (Summarize YouTube Comments) dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên SummifyYT (Summarize YouTube Comments) SummifyYT (Summarize YouTube Comments)
ID mcjgidambippeaajehcfimmephgholco
URL Chính Thức https://chromewebstore.google.com/detail/summifyyt-summarize-youtu/mcjgidambippeaajehcfimmephgholco
Mô tả SummifyYT is a browser extension that summarizes comments of YouTube videos.
Kích Thước Tệp 140 KB
Số Lần Cài Đặt 236
Phiên Bản Hiện Tại 0.0.9
Cập Nhật Lần Cuối 2023-04-15
Ngày Phát Hành 2023-03-07
Đánh Giá 3.25/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Dif Industries
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}