AliExpress Order Extractor
This extension can help small businesses to create purchase order from order page
Was ist AliExpress Order Extractor?
AliExpress Order Extractor ist eine Chrome-Erweiterung, die von https://oxymoron-tech.oxy.co.il entwickelt wurde, und ihr Hauptmerkmal ist "This extension can help small businesses to create purchase order from order page".
Erweiterungsscreenshots
AliExpress Order Extractor-Erweiterungs-CRX-Datei herunterladen
Laden Sie AliExpress Order Extractor-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 :-) Grundlegende Informationen zur Erweiterung
| Name | |
| ID | idnfcalokbhljjjlphmknbfpngjgaale |
| Offizielle URL | https://chromewebstore.google.com/detail/aliexpress-order-extracto/idnfcalokbhljjjlphmknbfpngjgaale |
| Beschreibung | This extension can help small businesses to create purchase order from order page |
| Dateigröße | 22.55 KB |
| Installationsanzahl | 610 |
| Aktuelle Version | 1.1 |
| Letztes Update | 2019-11-08 |
| Veröffentlichungsdatum | 2019-11-08 |
| Bewertung | 3.50/5 Insgesamt 8 Bewertungen |
| Entwickler | https://oxymoron-tech.oxy.co.il |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
]
} | |