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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    }
}