订单导出

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

Cos'è 订单导出?

订单导出 è un'estensione di Chrome sviluppata da Run, e la sua funzione principale è "导出淘宝订单列表为表格,可以直接粘贴到Excel等文件内".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione 订单导出

Scarica i file di estensione 订单导出 in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        导出订单日期、物品名称、实付价格、收货地址、快递公司名、物流号和签收状态。导出结果表格到粘贴板,可以直接粘贴进 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
- 优化获取计件和价格逻辑                    

Informazioni di Base sull'Estensione

Nome 订单导出 订单导出
ID pbibapppdhjgfdlbhnbienoejojehjhc
URL Ufficiale https://chromewebstore.google.com/detail/%E8%AE%A2%E5%8D%95%E5%AF%BC%E5%87%BA/pbibapppdhjgfdlbhnbienoejojehjhc
Descrizione 导出淘宝订单列表为表格,可以直接粘贴到Excel等文件内
Dimensione del File 106 KB
Conteggio Installazioni 1,000
Versione Corrente 1.2.2
Ultimo Aggiornamento 2022-11-09
Data di Pubblicazione 2020-10-14
Valutazione 4.86/5 Totale 7 Valutazioni
Sviluppatore Run
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/herun1988/order-extract-chrome-ext
URL della Pagina di Aiuto https://github.com/herun1988/order-extract-chrome-ext
Lingue Supportate 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"
    }
}