Photo Downloader
Save images from social photo sites.
Was ist Photo Downloader?
Photo Downloader ist eine Chrome-Erweiterung, die von Mihai Parparita entwickelt wurde, und ihr Hauptmerkmal ist "Save images from social photo sites.".
Erweiterungsscreenshots
Photo Downloader-Erweiterungs-CRX-Datei herunterladen
Laden Sie Photo Downloader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Photo Downloader |
ID | akgbekdpgegfglbmldaljbeihfcgbofl |
Offizielle URL | https://chromewebstore.google.com/detail/photo-downloader/akgbekdpgegfglbmldaljbeihfcgbofl |
Beschreibung | Save images from social photo sites. |
Dateigröße | 12.23 KB |
Installationsanzahl | 5,372 |
Aktuelle Version | 1.1 |
Letztes Update | 2023-07-20 |
Veröffentlichungsdatum | 2018-01-29 |
Bewertung | 2.00/5 Insgesamt 5 Bewertungen |
Entwickler | Mihai Parparita |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/mihaip/instagram-downloader |
Unterstützte Sprachen | 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" } |