AliExpress Order Extractor

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

AliExpress Order Extractor là gì?

AliExpress Order Extractor là một tiện ích mở rộng Chrome được phát triển bởi https://oxymoron-tech.oxy.co.il, và tính năng chính của nó là "This extension can help small businesses to create purchase order from order page".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng AliExpress Order Extractor

Tải xuống các tệp mở rộng AliExpress Order Extractor dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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 :-)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên AliExpress Order Extractor AliExpress Order Extractor
ID idnfcalokbhljjjlphmknbfpngjgaale
URL Chính Thức https://chromewebstore.google.com/detail/aliexpress-order-extracto/idnfcalokbhljjjlphmknbfpngjgaale
Mô tả This extension can help small businesses to create purchase order from order page
Kích Thước Tệp 22.55 KB
Số Lần Cài Đặt 610
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2019-11-08
Ngày Phát Hành 2019-11-08
Đánh Giá 3.50/5 Tổng số 8 Đánh Giá
Nhà Phát Triển https://oxymoron-tech.oxy.co.il
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}