Youtube Thumbnail Downloader

A chrome extension by Jay Alto

ما هو Youtube Thumbnail Downloader؟

Youtube Thumbnail Downloader هو إضافة Chrome تم تطويرها بواسطة https://www.thumbnail.guide، والميزة الرئيسية لها هي "A chrome extension by Jay Alto".

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

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Youtube Thumbnail Downloader

قم بتنزيل ملفات الامتداد Youtube Thumbnail Downloader بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Ever wanted to quickly download a Youtube thumbnail to review or share?

Well, now you can in a single click.

Copying Video ID's, opening up separate websites, renaming the file, managing plugins takes too much time.

The Youtube Thumbnail Downloader lets you download a videos thumbnail in a single click, automatically naming the file with the video title and channel name.                    

معلومات أساسية عن التمديد

الاسم Youtube Thumbnail Downloader Youtube Thumbnail Downloader
ID neefidmpdnfbfkhfakphalpmdiddbkgh
عنوان URL الرسمي https://chrome.google.com/webstore/detail/youtube-thumbnail-downloa/neefidmpdnfbfkhfakphalpmdiddbkgh
الوصف A chrome extension by Jay Alto
حجم الملف 222 KB
عدد التثبيتات 2,664
النسخة الحالية 0.0.4
آخر تحديث 2022-06-25
تاريخ النشر 2022-04-14
تقييم 4.00/5 مجموع تقييمات 12
المطور https://www.thumbnail.guide
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A chrome extension by Jay Alto",
    "version": "0.0.4",
    "manifest_version": 3,
    "name": "Youtube Thumbnail Downloader",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_icon": "icon-34.png"
    },
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/www.youtube.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "mail.svg",
                "twitter.svg",
                "popup.html",
                "download-dark.png",
                "download-light.png",
                "downloadScript.bundle.js",
                "showUiScript.bundle.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ]
}