YT Thumbnail Downloader
Download thumbnail images of youtube videos
Cos'è YT Thumbnail Downloader?
YT Thumbnail Downloader è un'estensione di Chrome sviluppata da Rovalty, e la sua funzione principale è "Download thumbnail images of youtube videos".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione YT Thumbnail Downloader
Scarica i file di estensione YT Thumbnail Downloader in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | YT Thumbnail Downloader |
ID | akfikgmhbajiaekdbgchbmhkceclncda |
URL Ufficiale | https://chromewebstore.google.com/detail/yt-thumbnail-downloader/akfikgmhbajiaekdbgchbmhkceclncda |
Descrizione | Download thumbnail images of youtube videos |
Dimensione del File | 58.71 KB |
Conteggio Installazioni | 2,404 |
Versione Corrente | 3.5.4 |
Ultimo Aggiornamento | 2020-05-09 |
Data di Pubblicazione | 2020-05-09 |
Valutazione | 3.97/5 Totale 30 Valutazioni |
Sviluppatore | Rovalty |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://www.saxsos.xyz/ |
URL della Pagina di Aiuto | https://www.saxsos.xyz/p/contact-us.html |
URL della Pagina della Politica sulla Privacy | https://www.saxsos.xyz/p/policy-privacy-policy.html |
Lingue Supportate | 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 } |