Wix Image Downloader

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

Wix Image Downloader là gì?

Wix Image Downloader là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "This is a custom extension to download images from wix website.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Wix Image Downloader

Tải xuống các tệp mở rộng Wix Image Downloader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This is a wix image downloaded.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Wix Image Downloader Wix Image Downloader
ID phknhncjbkehihhchhllabhlggjlenai
URL Chính Thức https://chromewebstore.google.com/detail/wix-image-downloader/phknhncjbkehihhchhllabhlggjlenai
Mô tả This is a custom extension to download images from wix website.
Kích Thước Tệp 238 KB
Số Lần Cài Đặt 838
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2019-01-19
Ngày Phát Hành 2019-01-19
Đánh Giá 2.33/5 Tổng số 9 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}