Photo Downloader
Save images from social photo sites.
Apa itu Photo Downloader?
Photo Downloader adalah ekstensi Chrome yang dikembangkan oleh Mihai Parparita, dan fitur utamanya adalah "Save images from social photo sites.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Photo Downloader
Unduh file ekstensi Photo 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
Chrome extension to help with downloading of images from social photo sites. * Uses minimal Chrome extension permissions (by using the activeTab option) * Uses minimal Chrome resources (via the the declarativeContent API) * Generates filenames based on the caption of the image Currently only works on permalink pages.
Informasi Dasar Ekstensi
Nama | Photo Downloader |
ID | akgbekdpgegfglbmldaljbeihfcgbofl |
URL Resmi | https://chromewebstore.google.com/detail/photo-downloader/akgbekdpgegfglbmldaljbeihfcgbofl |
Deskripsi | Save images from social photo sites. |
Ukuran File | 12.23 KB |
Jumlah Instalasi | 5,372 |
Versi Saat Ini | 1.1 |
Terakhir Diperbarui | 2023-07-20 |
Tanggal Publikasi | 2018-01-29 |
Penilaian | 2.00/5 Total 5 Penilaian |
Pengembang | Mihai Parparita |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/mihaip/instagram-downloader |
Bahasa yang Didukung | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "background": { "persistent": false, "scripts": [ "background.js" ] }, "name": "Photo Downloader", "description": "Save images from social photo sites.", "icons": { "128": "icon-128.png" }, "page_action": { "default_icon": { "16": "icon-16.png", "32": "icon-32.png" }, "default_title": "Download Image" }, "permissions": [ "declarativeContent", "activeTab", "downloads" ], "version": "1.1" } |