YT Thumbnail Downloader
Download thumbnail images of youtube videos
Hvad er YT Thumbnail Downloader?
YT Thumbnail Downloader er en Chrome-udvidelse udviklet af Rovalty, og dens hovedfunktion er "Download thumbnail images of youtube videos".
Udvidelsesskærmbilleder
Download YT Thumbnail Downloader-udvidelses-CRX-fil
Download YT Thumbnail Downloader-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
Navn | YT Thumbnail Downloader |
ID | akfikgmhbajiaekdbgchbmhkceclncda |
Officiel URL | https://chromewebstore.google.com/detail/yt-thumbnail-downloader/akfikgmhbajiaekdbgchbmhkceclncda |
Beskrivelse | Download thumbnail images of youtube videos |
Filstørrelse | 58.71 KB |
Antal Installationer | 2,404 |
Nuværende Version | 3.5.4 |
Senest Opdateret | 2020-05-09 |
Udgivelsesdato | 2020-05-09 |
Bedømmelse | 3.97/5 Samlet 30 Bedømmelser |
Udvikler | Rovalty |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://www.saxsos.xyz/ |
Hjælpeside-URL | https://www.saxsos.xyz/p/contact-us.html |
URL til Fortrolighedspolitik Side | https://www.saxsos.xyz/p/policy-privacy-policy.html |
Understøttede Sprog | 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 } |