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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "SummifyYT is a browser extension that summarizes comments of YouTube videos."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में SummifyYT (Summarize YouTube Comments) एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    }
}