AliExpress Order Extractor
This extension can help small businesses to create purchase order from order page
Что такое AliExpress Order Extractor?
AliExpress Order Extractor - это расширение Chrome, разработанное https://oxymoron-tech.oxy.co.il, и его основная функция - "This extension can help small businesses to create purchase order from order page".
Снимки экрана расширения
Скачать файл CRX расширения AliExpress Order Extractor
Скачайте файлы расширений 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 |
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" ] } |