Pinterest Image Downloader
Adds download button to each Pinterest image
Wat is Pinterest Image Downloader?
Pinterest Image Downloader is een Chrome-extensie ontwikkeld door Vanyo Vanev, en de belangrijkste functie is "Adds download button to each Pinterest image".
Extensie Screenshots
Download het CRX-bestand van de extensie Pinterest Image Downloader
Download Pinterest Image Downloader-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | elnfnoljjefjnldjoilgomncnccjbgaa |
Officiële URL | https://chrome.google.com/webstore/detail/pinterest-image-downloade/elnfnoljjefjnldjoilgomncnccjbgaa |
Beschrijving | Adds download button to each Pinterest image |
Bestandsgrootte | 55.9 KB |
Aantal Installaties | 8,000 |
Huidige Versie | 1.3 |
Laatst Bijgewerkt | 2020-10-26 |
Publicatiedatum | 2020-10-03 |
Beoordeling | 2.68/5 Totaal 19 Beoordelingen |
Ontwikkelaar | Vanyo Vanev |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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 } |