Pinterest Image Downloader
Adds download button to each Pinterest image
Was ist Pinterest Image Downloader?
Pinterest Image Downloader ist eine Chrome-Erweiterung, die von Vanyo Vanev entwickelt wurde, und ihr Hauptmerkmal ist "Adds download button to each Pinterest image".
Erweiterungsscreenshots
Pinterest Image Downloader-Erweiterungs-CRX-Datei herunterladen
Laden Sie Pinterest Image Downloader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | elnfnoljjefjnldjoilgomncnccjbgaa |
Offizielle URL | https://chrome.google.com/webstore/detail/pinterest-image-downloade/elnfnoljjefjnldjoilgomncnccjbgaa |
Beschreibung | Adds download button to each Pinterest image |
Dateigröße | 55.9 KB |
Installationsanzahl | 8,000 |
Aktuelle Version | 1.3 |
Letztes Update | 2020-10-26 |
Veröffentlichungsdatum | 2020-10-03 |
Bewertung | 2.68/5 Insgesamt 19 Bewertungen |
Entwickler | Vanyo Vanev |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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 } |