订单导出
导出淘宝订单列表为表格,可以直接粘贴到Excel等文件内
Wat is 订单导出?
订单导出 is een Chrome-extensie ontwikkeld door Run, en de belangrijkste functie is "导出淘宝订单列表为表格,可以直接粘贴到Excel等文件内".
Extensie Screenshots
Download het CRX-bestand van de extensie 订单导出
Download 订单导出-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
导出订单日期、物品名称、实付价格、收货地址、快递公司名、物流号和签收状态。导出结果表格到粘贴板,可以直接粘贴进 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 - 优化获取计件和价格逻辑
Basisinformatie over de Extensie
Naam | 订单导出 |
ID | pbibapppdhjgfdlbhnbienoejojehjhc |
Officiële URL | https://chromewebstore.google.com/detail/%E8%AE%A2%E5%8D%95%E5%AF%BC%E5%87%BA/pbibapppdhjgfdlbhnbienoejojehjhc |
Beschrijving | 导出淘宝订单列表为表格,可以直接粘贴到Excel等文件内 |
Bestandsgrootte | 106 KB |
Aantal Installaties | 1,000 |
Huidige Versie | 1.2.2 |
Laatst Bijgewerkt | 2022-11-09 |
Publicatiedatum | 2020-10-14 |
Beoordeling | 4.86/5 Totaal 7 Beoordelingen |
Ontwikkelaar | Run |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/herun1988/order-extract-chrome-ext |
Help Pagina-URL | https://github.com/herun1988/order-extract-chrome-ext |
Ondersteunde Talen | 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" } } |