AliAutomator

Scrape shops and products including images from aliexpress.com as JSON or CSV.

O que é AliAutomator?

AliAutomator é uma extensão do Chrome desenvolvida por /* no comment */, e sua principal característica é "Scrape shops and products including images from aliexpress.com as JSON or CSV.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão AliAutomator

Baixe arquivos de extensão AliAutomator 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

                        AliAutomator scrapes shop and product data including shipping from aliexpress.com. Open a shop or product url, click the red icon and everything important gets scraped from the page.

Features
- Export as JSON
- Export as CSV
- Image bulk download
- Reverse image search.
- Product ratings by country

The following infos are picked from the settings you've choosen on the website. Change them there.
- Shipping destination
- Language
- Currency

Bugs, Feedback, whatever
https://docs.google.com/forms/d/e/1FAIpQLSdUF0P_H-a7rECUsfC5PtpsIAfpUpx-7bO2Yylx5pUiZKPWpA/viewform                    

Informações Básicas da Extensão

Nome AliAutomator AliAutomator
ID pkjpogcicelbfhhonkfohgmmbdimikfn
URL Oficial https://chrome.google.com/webstore/detail/aliautomator/pkjpogcicelbfhhonkfohgmmbdimikfn
Descrição Scrape shops and products including images from aliexpress.com as JSON or CSV.
Tamanho do Arquivo 119 KB
Contagem de Instalações 167
Versão Atual 1.0
Última Atualização 2018-07-17
Data de Publicação 2018-07-17
Classificação 1.00/5 Total de 1 Avaliações
Desenvolvedor /* no comment */
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AliAutomator",
    "short_name": "AliAutomator",
    "author": "AliAutomator",
    "version": "1.0",
    "description": "Scrape shops and products including images from aliexpress.com as JSON or CSV.",
    "manifest_version": 2,
    "options_page": "pages\/options.html",
    "icons": {
        "16": "img\/16x16.png",
        "48": "img\/48x48.png",
        "128": "img\/128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.aliexpress.com\/*"
            ],
            "js": [
                "js\/helper.js",
                "js\/content.js"
            ]
        }
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "js\/helper.js",
            "js\/background.js",
            "js\/searchbyimage.js"
        ]
    },
    "permissions": [
        "tabs",
        "downloads",
        "contextMenus",
        "storage",
        "https:\/\/*.aliexpress.com\/*",
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "browser_action": {
        "default_popup": "pages\/popup.html"
    },
    "web_accessible_resources": [
        "js\/inject.js"
    ]
}