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ファイルをダウンロード

AliAutomator拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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"
    ]
}