Photo Downloader

Save images from social photo sites.

Wat is Photo Downloader?

Photo Downloader is een Chrome-extensie ontwikkeld door Mihai Parparita, en de belangrijkste functie is "Save images from social photo sites.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Photo Downloader

Download Photo Downloader-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Photo Downloader Photo Downloader
ID akgbekdpgegfglbmldaljbeihfcgbofl
Officiële URL https://chromewebstore.google.com/detail/photo-downloader/akgbekdpgegfglbmldaljbeihfcgbofl
Beschrijving Save images from social photo sites.
Bestandsgrootte 12.23 KB
Aantal Installaties 5,372
Huidige Versie 1.1
Laatst Bijgewerkt 2023-07-20
Publicatiedatum 2018-01-29
Beoordeling 2.00/5 Totaal 5 Beoordelingen
Ontwikkelaar Mihai Parparita
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/mihaip/instagram-downloader
Ondersteunde Talen 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"
}