Pinterest Image Downloader
Adds download button to each Pinterest image
Apa itu Pinterest Image Downloader?
Pinterest Image Downloader adalah ekstensi Chrome yang dikembangkan oleh Vanyo Vanev, dan fitur utamanya adalah "Adds download button to each Pinterest image".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Pinterest Image Downloader
Unduh file ekstensi Pinterest Image Downloader dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | |
ID | elnfnoljjefjnldjoilgomncnccjbgaa |
URL Resmi | https://chrome.google.com/webstore/detail/pinterest-image-downloade/elnfnoljjefjnldjoilgomncnccjbgaa |
Deskripsi | Adds download button to each Pinterest image |
Ukuran File | 55.9 KB |
Jumlah Instalasi | 8,000 |
Versi Saat Ini | 1.3 |
Terakhir Diperbarui | 2020-10-26 |
Tanggal Publikasi | 2020-10-03 |
Penilaian | 2.68/5 Total 19 Penilaian |
Pengembang | Vanyo Vanev |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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 } |