订单导出

导出淘宝订单列表为表格,可以直接粘贴到Excel等文件内

What is 订单导出?

订单导出 is a Chrome extension developed by Run, and its main feature is "导出淘宝订单列表为表格,可以直接粘贴到Excel等文件内".

Extension Screenshots

screenshot
screenshot

Download 订单导出 Extension CRX File

Download 订单导出 extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        导出订单日期、物品名称、实付价格、收货地址、快递公司名、物流号和签收状态。导出结果表格到粘贴板,可以直接粘贴进 Excel 等文件内。
- 同一订单多个物品,显示第一个,同时提示其他物品件数
- 同一订单多个包裹,由于限制,只能自动获取到第一个

欢迎任何反馈、建议,可以点击Chrome 拓展页上的“联系开发者”按钮,或者到 GitHub 中提 Issue。欢迎写码拓展其他网站,比如京东、当当、等等。

GitHub地址: https://github.com/herun1988/order-extract-chrome-ext

V1.2.2
- 优化收货地址获取,解决偶尔获取出错的问题

V1.2
- 物流信息和收货地址可选,默认全选
- 可检测疑似额外包裹订单

V1.0.3
- 更新到最新Chrome Manifest V3(V2 Chrome即将不再支持)
- 添加订单日期到导出数据

V1.0.2
- 优化获取计件和价格逻辑                    

Extension Basic Information

Name 订单导出 订单导出
ID pbibapppdhjgfdlbhnbienoejojehjhc
Official URL https://chromewebstore.google.com/detail/%E8%AE%A2%E5%8D%95%E5%AF%BC%E5%87%BA/pbibapppdhjgfdlbhnbienoejojehjhc
Description 导出淘宝订单列表为表格,可以直接粘贴到Excel等文件内
File Size 106 KB
Installation Count 1,000
Current Version 1.2.2
Last Updated 2022-11-09
Publish Date 2020-10-14
Rating 4.86/5 Total 7 Ratings
Developer Run
Email [email protected]
Payment Type free
Extension Website https://github.com/herun1988/order-extract-chrome-ext
Help Page URL https://github.com/herun1988/order-extract-chrome-ext
Supported Languages zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "\u8ba2\u5355\u5bfc\u51fa",
    "version": "1.2.2",
    "description": "\u5bfc\u51fa\u6dd8\u5b9d\u8ba2\u5355\u5217\u8868\u4e3a\u8868\u683c\uff0c\u53ef\u4ee5\u76f4\u63a5\u7c98\u8d34\u5230Excel\u7b49\u6587\u4ef6\u5185",
    "manifest_version": 3,
    "permissions": [
        "clipboardWrite",
        "declarativeContent",
        "activeTab"
    ],
    "host_permissions": [
        "https:\/\/buyertrade.taobao.com\/"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/buyertrade.taobao.com\/*"
            ],
            "js": [
                "extract\/taobao.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon-16.png",
            "32": "images\/icon-32.png",
            "48": "images\/icon-48.png",
            "128": "images\/icon-128.png"
        }
    },
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    }
}