YT Thumbnail Downloader
Download thumbnail images of youtube videos
O que é YT Thumbnail Downloader?
YT Thumbnail Downloader é uma extensão do Chrome desenvolvida por Rovalty, e sua principal característica é "Download thumbnail images of youtube videos".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão YT Thumbnail Downloader
Baixe arquivos de extensão YT Thumbnail Downloader no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | YT Thumbnail Downloader |
ID | akfikgmhbajiaekdbgchbmhkceclncda |
URL Oficial | https://chromewebstore.google.com/detail/yt-thumbnail-downloader/akfikgmhbajiaekdbgchbmhkceclncda |
Descrição | Download thumbnail images of youtube videos |
Tamanho do Arquivo | 58.71 KB |
Contagem de Instalações | 2,404 |
Versão Atual | 3.5.4 |
Última Atualização | 2020-05-09 |
Data de Publicação | 2020-05-09 |
Classificação | 3.97/5 Total de 30 Avaliações |
Desenvolvedor | Rovalty |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://www.saxsos.xyz/ |
URL da Página de Ajuda | https://www.saxsos.xyz/p/contact-us.html |
URL da Página de Política de Privacidade | https://www.saxsos.xyz/p/policy-privacy-policy.html |
Idiomas Suportados | 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 } |