YT Thumbnail Downloader

Download thumbnail images of youtube videos

Vad är YT Thumbnail Downloader?

YT Thumbnail Downloader är en Chrome-tillägg utvecklad av Rovalty, och dess huvudfunktion är "Download thumbnail images of youtube videos".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner YT Thumbnail Downloader-förlängningens CRX-fil

Ladda ner YT Thumbnail Downloader-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

                        YT Thumbnail Downloader is simple tool which will help you to download thumbnail images of any youtube video.
Download free youtube videos thumbnail image in Full HD(1080), HD (720), SD, and also in small size. 
it's currently supported formats: YouTube (HD, HQ, 1080p, 4K)

you can easily download your video-thumbnails. 
Just open any youtube video > click on Download Thumbnail button from extension > Done! Your thumbnails will be ready for saving.

Privacy policy: https://www.saxsos.xyz/p/policy-privacy-policy.html                    

Grundläggande Information om Tillägg

Namn YT Thumbnail Downloader YT Thumbnail Downloader
ID akfikgmhbajiaekdbgchbmhkceclncda
Officiell webbadress https://chromewebstore.google.com/detail/yt-thumbnail-downloader/akfikgmhbajiaekdbgchbmhkceclncda
Beskrivning Download thumbnail images of youtube videos
Filstorlek 58.71 KB
Antal Installationer 2,404
Aktuell Version 3.5.4
Senast Uppdaterad 2020-05-09
Publiceringsdatum 2020-05-09
Betyg 3.97/5 Totalt 30 Betyg
Utvecklare Rovalty
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://www.saxsos.xyz/
Hjälpsida URL https://www.saxsos.xyz/p/contact-us.html
URL till Sekretesspolicy Sidan https://www.saxsos.xyz/p/policy-privacy-policy.html
Stödda Språk en-US
manifest.json
{
    "name": "YT Thumbnail Downloader",
    "description": "Download thumbnail images of youtube videos",
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "3.5.4",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "name": "YT Thumbnail Downloader",
        "default_popup": "popup.html",
        "default_icon": {
            "128": "img\/128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "jquery.js",
                "download.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "img\/16.png",
        "32": "img\/32.png",
        "48": "img\/48.png",
        "128": "img\/128.png"
    },
    "web_accessible_resources": [
        "*.png",
        "*.PNG",
        "*.JPG"
    ],
    "permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "manifest_version": 2
}