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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}