Wix Image Downloader

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

什麼是Wix Image Downloader?

Wix Image Downloader是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“This is a custom extension to download images from wix website.”。

擴展截圖

screenshot

下載Wix Image Downloader擴展crx文件

下載Wix Image Downloader擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This is a wix image downloaded.                    

擴展基本資訊

名稱 Wix Image Downloader Wix Image Downloader
ID phknhncjbkehihhchhllabhlggjlenai
官方網址 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"
    }
}