YouTube Summarizer

Display ChatGPT summary on Youtube

YouTube Summarizer क्या है?

YouTube Summarizer Itamar Cohen द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Display ChatGPT summary on Youtube"।

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

screenshot
screenshot

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

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

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

                        Get a summary for a YouTube video in one click - Powered by OpenAI's ChatGPT AI technology.
The summary will generate in real time, embedded in the YouTube video page.                    

एक्सटेंशन की मूल जानकारी

नाम YouTube Summarizer YouTube Summarizer
ID cmdffcgfpcmloddheiojdnbnimhgochk
आधिकारिक URL https://chromewebstore.google.com/detail/youtube-summarizer/cmdffcgfpcmloddheiojdnbnimhgochk
विवरण Display ChatGPT summary on Youtube
फ़ाइल का आकार 302 KB
स्थापना संख्या 788
वर्तमान संस्करण 1.1.4
अंतिम अपडेट 2023-06-12
प्रकाशन तिथि 2023-02-03
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर Itamar Cohen
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Summarizer",
    "description": "Display ChatGPT summary on Youtube",
    "version": "1.1.4",
    "manifest_version": 3,
    "icons": {
        "16": "logo.png",
        "32": "logo.png",
        "48": "logo.png",
        "128": "logo.png"
    },
    "host_permissions": [
        "https:\/\/*.openai.com\/"
    ],
    "background": {
        "service_worker": "background\/index.js"
    },
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content-script\/index.js"
            ],
            "css": [
                "github-markdown.css",
                "styles.css"
            ]
        }
    ]
}