Download Amazon Orders
Chrome extension that downloads currently viewed Amazon Orders as a CSV
Was ist Download Amazon Orders?
Download Amazon Orders ist eine Chrome-Erweiterung, die von Alex Chapman entwickelt wurde, und ihr Hauptmerkmal ist "Chrome extension that downloads currently viewed Amazon Orders as a CSV".
Download Amazon Orders-Erweiterungs-CRX-Datei herunterladen
Laden Sie Download Amazon Orders-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
Allows you to download a CSV file containing the details of the Amazon Orders that are visible in the current tab. Supports regular orders and digital orders. How to use: 1. Install the Extension 2. Visit the Orders page in your Amazon Account 3. An icon will appear in the search bar 4. Click the icon and a CSV file will be downloaded containing the Order details This extension has only been tested with Amazon.com in the US. It does not download all your orders, only the ones on the current page. Amazon provides an Order Report with similar information, however, that does not include your digital orders.
Grundlegende Informationen zur Erweiterung
Name | Download Amazon Orders |
ID | calkeehfhffaekgmdpllhgnadjbonofc |
Offizielle URL | https://chromewebstore.google.com/detail/download-amazon-orders/calkeehfhffaekgmdpllhgnadjbonofc |
Beschreibung | Chrome extension that downloads currently viewed Amazon Orders as a CSV |
Dateigröße | 5.01 KB |
Installationsanzahl | 24 |
Aktuelle Version | 0.0.0.3 |
Letztes Update | 2018-05-27 |
Veröffentlichungsdatum | 2018-05-27 |
Entwickler | Alex Chapman |
Zahlungsart | free |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Download Amazon Orders", "description": "Chrome extension that downloads currently viewed Amazon Orders as a CSV", "version": "0.0.0.3", "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.amazon.com\/*" ], "js": [ "content.js" ] } ], "page_action": { "default_icon": "order.png", "default_title": "Download Amazon Orders" }, "permissions": [ "declarativeContent" ] } |