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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}