Pinterest Image Downloader
Adds download button to each Pinterest image
Co je Pinterest Image Downloader?
Pinterest Image Downloader je rozšíření Chrome vyvinuté Vanyo Vanev, a jeho hlavní funkcí je „Adds download button to each Pinterest image“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Pinterest Image Downloader
Stáhněte si soubory rozšíření Pinterest Image Downloader ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | |
ID | elnfnoljjefjnldjoilgomncnccjbgaa |
Oficiální URL | https://chrome.google.com/webstore/detail/pinterest-image-downloade/elnfnoljjefjnldjoilgomncnccjbgaa |
Popis | Adds download button to each Pinterest image |
Velikost souboru | 55.9 KB |
Počet instalací | 8,000 |
Aktuální Verze | 1.3 |
Poslední Aktualizace | 2020-10-26 |
Datum Vydání | 2020-10-03 |
Hodnocení | 2.68/5 Celkem 19 Hodnocení |
Vývojář | Vanyo Vanev |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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 } |