Pinterest Image Downloader
Adds download button to each Pinterest image
What is Pinterest Image Downloader?
Pinterest Image Downloader is a Chrome extension developed by Vanyo Vanev, and its main feature is "Adds download button to each Pinterest image".
Extension Screenshots
Download Pinterest Image Downloader Extension CRX File
Download Pinterest Image Downloader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | elnfnoljjefjnldjoilgomncnccjbgaa |
Official URL | https://chrome.google.com/webstore/detail/pinterest-image-downloade/elnfnoljjefjnldjoilgomncnccjbgaa |
Description | Adds download button to each Pinterest image |
File Size | 55.9 KB |
Installation Count | 8,000 |
Current Version | 1.3 |
Last Updated | 2020-10-26 |
Publish Date | 2020-10-03 |
Rating | 2.68/5 Total 19 Ratings |
Developer | Vanyo Vanev |
[email protected] | |
Payment Type | free |
Supported Languages | 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 } |