Image Downloader

Download any image on your website page in one click!

Cos'è Image Downloader?

Image Downloader è un'estensione di Chrome sviluppata da tiffanycheck.check, e la sua funzione principale è "Download any image on your website page in one click!".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Image Downloader

Scarica i file di estensione Image 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

                        The extension gives the user the option to download images in different formats: PNG, JPG, SVG, WEBP                    

Informazioni di Base sull'Estensione

Nome Image Downloader Image Downloader
ID fnelomgkbbanddlflhgphgkijfeoehfb
URL Ufficiale https://chrome.google.com/webstore/detail/image-downloader/fnelomgkbbanddlflhgphgkijfeoehfb
Descrizione Download any image on your website page in one click!
Dimensione del File 19.54 KB
Conteggio Installazioni 3,519
Versione Corrente 1.1
Ultimo Aggiornamento 2022-12-05
Data di Pubblicazione 2022-11-28
Sviluppatore tiffanycheck.check
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://home.xcxologyda.xyz/
URL della Pagina di Aiuto https://home.xcxologyda.xyz/contact.html
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "action": {
        "default_icon": "logo.png",
        "default_title": "Image Downloader",
        "default_popup": "popup.html"
    },
    "description": "Download any image on your website page in one click!",
    "icons": {
        "128": "logo.png"
    },
    "manifest_version": 3,
    "name": "Image Downloader",
    "version": "1.1",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/*.svg"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ]
}