AliExpress Order Extractor

This extension can help small businesses to create purchase order from order page

什么是AliExpress Order Extractor?

AliExpress Order Extractor是由https://oxymoron-tech.oxy.co.il开发的Chrome扩展程序,该扩展的主要功能是“This extension can help small businesses to create purchase order from order page”。

扩展截图

screenshot
screenshot
screenshot

下载AliExpress Order Extractor扩展crx文件

下载AliExpress Order Extractor扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        There is a problem that AliExpress not sending any invoice or purchase order. And there is many micro-orders and micro-transactions. But many people buy stuff for their business via AliExpress and they need invoices for taxes.
This extension can help to compose invoice-like page from AliExpress order details page (https://trade.aliexpress.com/order_detail.htm) and print it.
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Version 1.1:
- fix bugs for unfinished orders
- improve UI changes
- bonus: hide annoying chat :-)                    

扩展基本信息

名称 AliExpress Order Extractor AliExpress Order Extractor
ID idnfcalokbhljjjlphmknbfpngjgaale
官方URL https://chromewebstore.google.com/detail/aliexpress-order-extracto/idnfcalokbhljjjlphmknbfpngjgaale
简介 This extension can help small businesses to create purchase order from order page
文件大小 22.55 KB
安装次数 610
当前版本 1.1
更新时间 2019-11-08
上架时间 2019-11-08
评分 3.50/5 共8次评分
开发者 https://oxymoron-tech.oxy.co.il
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "author": "Oxymoron Technique",
    "name": "AliExpress Order Extractor",
    "short_name": "AliExpress Order",
    "version": "1.1",
    "description": "This extension can help small businesses to create purchase order from order page",
    "icons": {
        "16": "icon_S_16.png",
        "32": "icon_S_32.png",
        "96": "icon_S_96.png",
        "128": "icon_s_128.png"
    },
    "background": {
        "scripts": [
            "bg.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": "icon_s_128.png",
        "default_title": "AliExpress Order Extractor",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/trade.aliexpress.com\/*",
                "https:\/\/home.aliexpress.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "declarativeContent"
    ]
}