Invoices for AliExpress
Bulk download of AliExpress invoices
什么是Invoices for AliExpress?
Invoices for AliExpress是由MXNPro开发的Chrome扩展程序,该扩展的主要功能是“Bulk download of AliExpress invoices”。
扩展截图
下载Invoices for AliExpress扩展crx文件
下载Invoices for AliExpress扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Generate professional invoices from your AliExpress orders.
▬▬▬▬ GETTING STARTED ▬▬▬▬▬
1. Install the extension by clicking the “Add to chrome” button.
2. Login into your aliexpress.com account.
3. Go to your orders and click "Download invoice".
▬▬▬▬▬ FEATURES ▬▬▬▬▬
FREE version:
- Professional invoices
- Customize invoice with your company informations
PRO version:
- Download multiple invoices
- Unlimited invoice downloads
- Select range from calendar
- All future premium updates 扩展基本信息
| 名称 | |
| ID | njdklcfihmapemcehhideapoiglohdnh |
| 官方URL | https://chromewebstore.google.com/detail/invoices-for-aliexpress/njdklcfihmapemcehhideapoiglohdnh |
| 简介 | Bulk download of AliExpress invoices |
| 文件大小 | 476 KB |
| 安装次数 | 1,578 |
| 当前版本 | 3.0.2 |
| 更新时间 | 2023-06-20 |
| 上架时间 | 2021-03-11 |
| 评分 | 3.30/5 共10次评分 |
| 开发者 | MXNPro |
| 电子邮箱 | [email protected] |
| 付费类型 | in_app |
| 隐私政策页面URL | https://mxnpro.ovh/privacy |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "__MSG_appName__",
"short_name": "Invoices for AliExpress",
"version": "3.0.2",
"description": "__MSG_appDesc__",
"default_locale": "en",
"icons": {
"16": "public\/icons\/icon-16.png",
"48": "public\/icons\/icon-48.png",
"96": "public\/icons\/icon-96.png",
"128": "public\/icons\/icon-128.png"
},
"content_security_policy": {
"extensions_pages": "script-src 'self'; object-src 'self'"
},
"permissions": [
"declarativeNetRequest",
"webRequest",
"downloads",
"storage",
"activeTab"
],
"host_permissions": [
"*:\/\/*.aliexpress.com\/*"
],
"background": {
"service_worker": "background.js"
},
"action": [],
"content_scripts": [
{
"matches": [
"*:\/\/*.aliexpress.com\/p\/order*",
"*:\/\/*.aliexpress.com\/*"
],
"js": [
"content.js"
],
"all_frames": true
},
{
"matches": [
"https:\/\/account.mxnpro.ovh\/invoices-for-aliexpress\/*"
],
"js": [
"account.js"
],
"all_frames": true
}
]
} | |