Amazon Invoice Downloader
Automated Amazon order invoce downloader, Simply press a start button, and relax while it does the job for you.
Was ist Amazon Invoice Downloader?
Amazon Invoice Downloader ist eine Chrome-Erweiterung, die von https://extensionsworld.com entwickelt wurde, und ihr Hauptmerkmal ist "Automated Amazon order invoce downloader, Simply press a start button, and relax while it does the job for you.".
Erweiterungsscreenshots
Amazon Invoice Downloader-Erweiterungs-CRX-Datei herunterladen
Laden Sie Amazon Invoice Downloader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Automated Amazon order invoce downloader, Simply press a start button, and relax while it does the job for you. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | jibfakcjhhekoolfogeejilflpcnbnel |
| Offizielle URL | https://chromewebstore.google.com/detail/amazon-invoice-downloader/jibfakcjhhekoolfogeejilflpcnbnel |
| Beschreibung | Automated Amazon order invoce downloader, Simply press a start button, and relax while it does the job for you. |
| Dateigröße | 85.69 KB |
| Installationsanzahl | 996 |
| Aktuelle Version | 2.4 |
| Letztes Update | 2023-03-03 |
| Veröffentlichungsdatum | 2020-06-23 |
| Bewertung | 4.20/5 Insgesamt 5 Bewertungen |
| Entwickler | https://extensionsworld.com |
| [email protected] | |
| Zahlungsart | free |
| URL der Datenschutzrichtlinien-Seite | https://extensionsworld.com/legal |
| Unterstützte Sprachen | 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"
}
} | |