YouTube Summarizer

Display ChatGPT summary on Youtube

ما هو YouTube Summarizer؟

YouTube Summarizer هو إضافة Chrome تم تطويرها بواسطة Itamar Cohen، والميزة الرئيسية لها هي "Display ChatGPT summary on Youtube".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة YouTube Summarizer

قم بتنزيل ملفات الامتداد YouTube Summarizer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
            ]
        }
    ]
}