SummifyYT (Summarize YouTube Comments)

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

Vad är SummifyYT (Summarize YouTube Comments)?

SummifyYT (Summarize YouTube Comments) är en Chrome-tillägg utvecklad av Dif Industries, och dess huvudfunktion är "SummifyYT is a browser extension that summarizes comments of YouTube videos.".

Tilläggsskärmbilder

screenshot

Ladda ner SummifyYT (Summarize YouTube Comments)-förlängningens CRX-fil

Ladda ner SummifyYT (Summarize YouTube Comments)-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn SummifyYT (Summarize YouTube Comments) SummifyYT (Summarize YouTube Comments)
ID mcjgidambippeaajehcfimmephgholco
Officiell webbadress https://chromewebstore.google.com/detail/summifyyt-summarize-youtu/mcjgidambippeaajehcfimmephgholco
Beskrivning SummifyYT is a browser extension that summarizes comments of YouTube videos.
Filstorlek 140 KB
Antal Installationer 236
Aktuell Version 0.0.9
Senast Uppdaterad 2023-04-15
Publiceringsdatum 2023-03-07
Betyg 3.25/5 Totalt 4 Betyg
Utvecklare Dif Industries
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}