Wix Image Downloader

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

ما هو Wix Image Downloader؟

Wix Image Downloader هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "This is a custom extension to download images from wix website.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Wix Image Downloader

قم بتنزيل ملفات الامتداد Wix Image Downloader بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        This is a wix image downloaded.                    

معلومات أساسية عن التمديد

الاسم Wix Image Downloader Wix Image Downloader
ID phknhncjbkehihhchhllabhlggjlenai
عنوان URL الرسمي https://chromewebstore.google.com/detail/wix-image-downloader/phknhncjbkehihhchhllabhlggjlenai
الوصف This is a custom extension to download images from wix website.
حجم الملف 238 KB
عدد التثبيتات 838
النسخة الحالية 1.1
آخر تحديث 2019-01-19
تاريخ النشر 2019-01-19
تقييم 2.33/5 مجموع تقييمات 9
المطور Unknown
نوع الدفع free
اللغات المدعومة 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"
    }
}