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.”。
扩展截图
下载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.                     扩展基本信息
| 名称 |   |  
| 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 | 
| 电子邮箱 | [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\/*"
    ]
}  |  |