Wix Image Downloader

This is a custom extension to download images from wix website.

Qu'est-ce que Wix Image Downloader ?

Wix Image Downloader est une extension Chrome développée par Unknown, et sa fonction principale est "This is a custom extension to download images from wix website.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Wix Image Downloader

Téléchargez les fichiers d'extension Wix Image 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

                        This is a wix image downloaded.                    

Informations de Base sur l'Extension

Nom Wix Image Downloader Wix Image Downloader
ID phknhncjbkehihhchhllabhlggjlenai
URL Officiel https://chromewebstore.google.com/detail/wix-image-downloader/phknhncjbkehihhchhllabhlggjlenai
Description This is a custom extension to download images from wix website.
Taille du Fichier 238 KB
Nombre d'Installations 838
Version Actuelle 1.1
Dernière Mise à Jour 2019-01-19
Date de Publication 2019-01-19
Évaluation 2.33/5 Total 9 Évaluations
Développeur Unknown
Type de Paiement free
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Wix Image Downloader",
    "version": "1.1",
    "offline_enabled": true,
    "description": "This is a custom extension to download images from wix website.",
    "icons": {
        "16": "icon.png",
        "128": "icon_128.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.wixsite.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "page_action": {
        "default_title": "Wix Image Downloader",
        "default_popup": "popup.html"
    }
}