Gearbest Images Downloader

Save Gearbest images in one click.

O que é Gearbest Images Downloader?

Gearbest Images Downloader é uma extensão do Chrome desenvolvida por https://mxnpro.ovh, e sua principal característica é "Save Gearbest images in one click.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Gearbest Images Downloader

Baixe arquivos de extensão Gearbest Images Downloader no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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]!                    

Informações Básicas da Extensão

Nome Gearbest Images Downloader Gearbest Images Downloader
ID jdclbkahonlboaecciolgamomaicjicn
URL Oficial https://chromewebstore.google.com/detail/gearbest-images-downloade/jdclbkahonlboaecciolgamomaicjicn
Descrição Save Gearbest images in one click.
Tamanho do Arquivo 304 KB
Contagem de Instalações 122
Versão Atual 1.0.3
Última Atualização 2022-12-22
Data de Publicação 2020-12-02
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor https://mxnpro.ovh
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://mxnpro.ovh/gearbest
URL da Página de Ajuda https://mxnpro.ovh/gearbest/support
URL da Página de Política de Privacidade https://mxnpro.ovh/privacy
Idiomas Suportados 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\/*"
    ]
}