Photo Downloader
Save images from social photo sites.
Qu'est-ce que Photo Downloader ?
Photo Downloader est une extension Chrome développée par Mihai Parparita, et sa fonction principale est "Save images from social photo sites.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Photo Downloader
Téléchargez les fichiers d'extension Photo Downloader au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Photo Downloader |
ID | akgbekdpgegfglbmldaljbeihfcgbofl |
URL Officiel | https://chromewebstore.google.com/detail/photo-downloader/akgbekdpgegfglbmldaljbeihfcgbofl |
Description | Save images from social photo sites. |
Taille du Fichier | 12.23 KB |
Nombre d'Installations | 5,372 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2023-07-20 |
Date de Publication | 2018-01-29 |
Évaluation | 2.00/5 Total 5 Évaluations |
Développeur | Mihai Parparita |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/mihaip/instagram-downloader |
Langues Prises en Charge | 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" } |