Gearbest Images Downloader

Save Gearbest images in one click.

Gearbest Images Downloader란 무엇입니까?

Gearbest Images Downloader은(는) https://mxnpro.ovh에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Save Gearbest images in one click."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Gearbest Images Downloader 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Easily save Gearbest images to your computer.
Save hundred of hours downloading Gearbest product's images in one click!

▬▬▬▬▬ FEATURES ▬▬▬▬▬

FREE version:
- Download main images 
- Download description images
- Get the best image quality

PRO version:
- Remove image watermarks
- Download all variants images in one click
- Organise downloads with subdirectories
- Open download directory after download
- Download as .ZIP file

▬▬▬▬▬ CONTACT ▬▬▬▬▬

If you have any questions, or suggestions to improve the app, please let us know at [email protected]!                    

확장 프로그램 기본 정보

이름 Gearbest Images Downloader Gearbest Images Downloader
ID jdclbkahonlboaecciolgamomaicjicn
공식 URL https://chromewebstore.google.com/detail/gearbest-images-downloade/jdclbkahonlboaecciolgamomaicjicn
설명 Save Gearbest images in one click.
파일 크기 304 KB
설치 횟수 122
현재 버전 1.0.3
최근 업데이트 2022-12-22
출시 날짜 2020-12-02
평점 5.00/5 총 1 개의 평점
개발자 https://mxnpro.ovh
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://mxnpro.ovh/gearbest
도움말 페이지 URL https://mxnpro.ovh/gearbest/support
개인정보 보호 정책 페이지 URL https://mxnpro.ovh/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "short_name": "Gearbest DL",
    "version": "1.0.3",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "icons": {
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png",
        "96": "icons\/icon-96.png",
        "128": "icons\/icon-128.png"
    },
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "permissions": [
        "storage",
        "downloads",
        "activeTab",
        "*:\/\/*.gearbest.com\/*",
        "*:\/\/*.gbtcdn.com\/*",
        "*:\/\/mxnpro.ovh\/gearbest\/checkout",
        "http:\/\/localhost:3000\/*"
    ],
    "options_ui": {
        "page": "index.html?route=options",
        "open_in_tab": true
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_popup": "index.html?route=popup"
    },
    "content_scripts": [
        {
            "run_at": "document_idle",
            "matches": [
                "*:\/\/*.gearbest.com\/*"
            ],
            "js": [
                "content.js"
            ]
        },
        {
            "run_at": "document_idle",
            "matches": [
                "*:\/\/mxnpro.ovh\/gearbest\/checkout",
                "http:\/\/localhost:3000\/*"
            ],
            "js": [
                "checkoutContent.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "icons\/*",
        "images\/*"
    ]
}