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”。
擴展截圖
下載AliExpress Order Extractor擴展crx文件
下載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 |
官方網址 | 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" ] } |