AliExpress CSV Export

Export data from AliExpress to .csv file.

AliExpress CSV Exportとは何ですか?

AliExpress CSV Exportはhttps://toriox.devによって開発されたChromeの拡張機能で、その主な機能は「Export data from AliExpress to .csv file.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

AliExpress CSV Export拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        -> Exports product details(image src, title, price/price range, shipping cost, etc) and categories(category names) from AliExpress.com to .csv file. 

-> Export orders from your order list to csv.                    

拡張機能の基本情報

名前 AliExpress CSV Export AliExpress CSV Export
ID odcddcaphojmekhiocnhbckfibpgkdfj
公式URL https://chromewebstore.google.com/detail/aliexpress-csv-export/odcddcaphojmekhiocnhbckfibpgkdfj
説明 Export data from AliExpress to .csv file.
ファイルサイズ 1001 KB
インストール数 4,457
現在のバージョン 0.2.9.3
最終更新日 2023-08-26
公開日 2020-05-28
評価 3.00/5 合計 22 レビュー
開発者 https://toriox.dev
Eメール [email protected]
支払い方法 free
プライバシーポリシーページのURL https://www.toriox.dev/privacy-policy.php
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AliExpress CSV Export",
    "version": "0.2.9.3",
    "manifest_version": 2,
    "description": "Export data from AliExpress to .csv file.",
    "author": "Mladen Markovic",
    "background": {
        "scripts": [
            ".\/vendor\/jquery.min.js",
            ".\/components\/basicVariables.js",
            "background.js"
        ],
        "persistent": true
    },
    "icons": {
        "16": ".\/assets\/logo\/icon16.png",
        "32": ".\/assets\/logo\/icon32.png",
        "48": ".\/assets\/logo\/icon48.png",
        "64": ".\/assets\/logo\/icon64.png",
        "128": ".\/assets\/logo\/icon128.png"
    },
    "browser_action": {
        "default_title": "AliExpress CSV Export",
        "default_icon": ".\/assets\/logo\/icon128.png",
        "default_popup": "popup.html",
        "scripts": "popup.js"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "js": [
                ".\/vendor\/jquery.min.js",
                ".\/components\/basicVariables.js",
                ".\/components\/alertMessages.js",
                ".\/components\/aff.js",
                ".\/components\/basic.js",
                ".\/components\/refund.js",
                ".\/components\/ordersPage.js",
                ".\/components\/orderDetailPage.js",
                ".\/components\/orderLogisticsPage.js"
            ],
            "matches": [
                "*:\/\/*.aliexpress.com\/*",
                "*:\/\/*.aliexpress.ru\/*",
                "*:\/\/*.aliexpress.us\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        "\/*.png",
        "\/*.gif",
        "\/options.html",
        ".\/popup.html",
        "*.*"
    ],
    "permissions": [
        "storage"
    ],
    "optional_permissions": [
        "*:\/\/*.aliexpress.us\/*"
    ]
}