AliAutomator

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

AliAutomator란 무엇입니까?

AliAutomator은(는) /* no comment */에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Scrape shops and products including images from aliexpress.com as JSON or CSV."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

AliAutomator 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 AliAutomator AliAutomator
ID pkjpogcicelbfhhonkfohgmmbdimikfn
공식 URL https://chrome.google.com/webstore/detail/aliautomator/pkjpogcicelbfhhonkfohgmmbdimikfn
설명 Scrape shops and products including images from aliexpress.com as JSON or CSV.
파일 크기 119 KB
설치 횟수 167
현재 버전 1.0
최근 업데이트 2018-07-17
출시 날짜 2018-07-17
평점 1.00/5 총 1 개의 평점
개발자 /* no comment */
결제 유형 free
지원되는 언어 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"
    ]
}