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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension can help small businesses to create purchase order from order page"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में AliExpress Order Extractor एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" ] } |