Pinterest Image Downloader
Adds download button to each Pinterest image
O que é Pinterest Image Downloader?
Pinterest Image Downloader é uma extensão do Chrome desenvolvida por Vanyo Vanev, e sua principal característica é "Adds download button to each Pinterest image".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Pinterest Image Downloader
Baixe arquivos de extensão Pinterest Image 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
This extension makes easy to download Pinterest images. The extenstion will look up for the highest available size of the image (the original size) and add a download button at the left top angle of each pin.
Informações Básicas da Extensão
Nome | |
ID | elnfnoljjefjnldjoilgomncnccjbgaa |
URL Oficial | https://chrome.google.com/webstore/detail/pinterest-image-downloade/elnfnoljjefjnldjoilgomncnccjbgaa |
Descrição | Adds download button to each Pinterest image |
Tamanho do Arquivo | 55.9 KB |
Contagem de Instalações | 8,000 |
Versão Atual | 1.3 |
Última Atualização | 2020-10-26 |
Data de Publicação | 2020-10-03 |
Classificação | 2.68/5 Total de 19 Avaliações |
Desenvolvedor | Vanyo Vanev |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Pinterest Image Downloader", "short_name": "Pin Downloader", "version": "1.3", "description": "Adds download button to each Pinterest image", "permissions": [ "activeTab", "declarativeContent", "storage" ], "background": { "scripts": [ "app.js" ], "persistent": true }, "browser_action": { "default_popup": "background.html" }, "icons": { "16": "images\/16.png", "48": "images\/48.png", "128": "images\/128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.pinterest.com\/*" ], "js": [ "jquery-3.5.1.min.js", "downloader.js" ], "run_at": "document_end", "css": [ "downloader.css" ] } ], "manifest_version": 2 } |