Photo Downloader

Save images from social photo sites.

Cos'è Photo Downloader?

Photo Downloader è un'estensione di Chrome sviluppata da Mihai Parparita, e la sua funzione principale è "Save images from social photo sites.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Photo Downloader

Scarica i file di estensione Photo Downloader in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Photo Downloader Photo Downloader
ID akgbekdpgegfglbmldaljbeihfcgbofl
URL Ufficiale https://chromewebstore.google.com/detail/photo-downloader/akgbekdpgegfglbmldaljbeihfcgbofl
Descrizione Save images from social photo sites.
Dimensione del File 12.23 KB
Conteggio Installazioni 5,372
Versione Corrente 1.1
Ultimo Aggiornamento 2023-07-20
Data di Pubblicazione 2018-01-29
Valutazione 2.00/5 Totale 5 Valutazioni
Sviluppatore Mihai Parparita
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/mihaip/instagram-downloader
Lingue Supportate 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"
}