Image Downloader

Download any image on your website page in one click!

Was ist Image Downloader?

Image Downloader ist eine Chrome-Erweiterung, die von tiffanycheck.check entwickelt wurde, und ihr Hauptmerkmal ist "Download any image on your website page in one click!".

Erweiterungsscreenshots

screenshot
screenshot

Image Downloader-Erweiterungs-CRX-Datei herunterladen

Laden Sie Image 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

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

Grundlegende Informationen zur Erweiterung

Name Image Downloader Image Downloader
ID fnelomgkbbanddlflhgphgkijfeoehfb
Offizielle URL https://chrome.google.com/webstore/detail/image-downloader/fnelomgkbbanddlflhgphgkijfeoehfb
Beschreibung Download any image on your website page in one click!
Dateigröße 19.54 KB
Installationsanzahl 3,519
Aktuelle Version 1.1
Letztes Update 2022-12-05
Veröffentlichungsdatum 2022-11-28
Entwickler tiffanycheck.check
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://home.xcxologyda.xyz/
Hilfeseite URL https://home.xcxologyda.xyz/contact.html
Unterstützte Sprachen 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": [
        "*:\/\/*\/*"
    ]
}