Amazon Invoice Downloader
Automated Amazon order invoce downloader, Simply press a start button, and relax while it does the job for you.
什么是Amazon Invoice Downloader?
Amazon Invoice Downloader是由https://extensionsworld.com开发的Chrome扩展程序,该扩展的主要功能是“Automated Amazon order invoce downloader, Simply press a start button, and relax while it does the job for you.”。
扩展截图
下载Amazon Invoice Downloader扩展crx文件
下载Amazon Invoice Downloader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Automated Amazon order invoce downloader, Simply press a start button, and relax while it does the job for you. 扩展基本信息
| 名称 | |
| ID | jibfakcjhhekoolfogeejilflpcnbnel |
| 官方URL | https://chromewebstore.google.com/detail/amazon-invoice-downloader/jibfakcjhhekoolfogeejilflpcnbnel |
| 简介 | Automated Amazon order invoce downloader, Simply press a start button, and relax while it does the job for you. |
| 文件大小 | 85.69 KB |
| 安装次数 | 996 |
| 当前版本 | 2.4 |
| 更新时间 | 2023-03-03 |
| 上架时间 | 2020-06-23 |
| 评分 | 4.20/5 共5次评分 |
| 开发者 | https://extensionsworld.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 隐私政策页面URL | https://extensionsworld.com/legal |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Amazon Invoice Downloader",
"permissions": [
"https:\/\/*.extensionsworld.com\/*",
"storage"
],
"version": "2.4",
"background": {
"scripts": [
"js\/utils.js",
"js\/background.js"
]
},
"content_scripts": [
{
"matches": [
"https:\/\/*.amazon.co.uk\/*",
"https:\/\/*.amazon.com\/*",
"https:\/\/*.amazon.de\/*",
"https:\/\/*.amazon.ca\/*"
],
"js": [
"js\/utils.js",
"js\/privateUtils.js",
"js\/index.js"
]
}
],
"icons": {
"128": "icon128.png",
"64": "icon64.png"
},
"browser_action": {
"default_icon": {
"128": "icon128.png",
"64": "icon64.png"
},
"default_title": "Amazon Invoice Downloader",
"default_popup": "html\/index.html"
}
} | |