SummifyYT (Summarize YouTube Comments)

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

Was ist SummifyYT (Summarize YouTube Comments)?

SummifyYT (Summarize YouTube Comments) ist eine Chrome-Erweiterung, die von Dif Industries entwickelt wurde, und ihr Hauptmerkmal ist "SummifyYT is a browser extension that summarizes comments of YouTube videos.".

Erweiterungsscreenshots

screenshot

SummifyYT (Summarize YouTube Comments)-Erweiterungs-CRX-Datei herunterladen

Laden Sie SummifyYT (Summarize YouTube Comments)-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name SummifyYT (Summarize YouTube Comments) SummifyYT (Summarize YouTube Comments)
ID mcjgidambippeaajehcfimmephgholco
Offizielle URL https://chromewebstore.google.com/detail/summifyyt-summarize-youtu/mcjgidambippeaajehcfimmephgholco
Beschreibung SummifyYT is a browser extension that summarizes comments of YouTube videos.
Dateigröße 140 KB
Installationsanzahl 236
Aktuelle Version 0.0.9
Letztes Update 2023-04-15
Veröffentlichungsdatum 2023-03-07
Bewertung 3.25/5 Insgesamt 4 Bewertungen
Entwickler Dif Industries
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    }
}