Pinterest Image Downloader
Adds download button to each Pinterest image
¿Qué es Pinterest Image Downloader?
Pinterest Image Downloader es una extensión de Chrome desarrollada por Vanyo Vanev, y su función principal es "Adds download button to each Pinterest image".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Pinterest Image Downloader
Descarga archivos de extensión Pinterest Image Downloader en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | |
ID | elnfnoljjefjnldjoilgomncnccjbgaa |
URL Oficial | https://chrome.google.com/webstore/detail/pinterest-image-downloade/elnfnoljjefjnldjoilgomncnccjbgaa |
Descripción | Adds download button to each Pinterest image |
Tamaño del Archivo | 55.9 KB |
Cantidad de Instalaciones | 8,000 |
Versión Actual | 1.3 |
Última Actualización | 2020-10-26 |
Fecha de Publicación | 2020-10-03 |
Calificación | 2.68/5 Total de 19 Calificaciones |
Desarrollador | Vanyo Vanev |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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 } |