Download Amazon Orders

Chrome extension that downloads currently viewed Amazon Orders as a CSV

Qu'est-ce que Download Amazon Orders ?

Download Amazon Orders est une extension Chrome développée par Alex Chapman, et sa fonction principale est "Chrome extension that downloads currently viewed Amazon Orders as a CSV".

Télécharger le fichier CRX de l'extension Download Amazon Orders

Téléchargez les fichiers d'extension Download Amazon Orders au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Download Amazon Orders Download Amazon Orders
ID calkeehfhffaekgmdpllhgnadjbonofc
URL Officiel https://chromewebstore.google.com/detail/download-amazon-orders/calkeehfhffaekgmdpllhgnadjbonofc
Description Chrome extension that downloads currently viewed Amazon Orders as a CSV
Taille du Fichier 5.01 KB
Nombre d'Installations 24
Version Actuelle 0.0.0.3
Dernière Mise à Jour 2018-05-27
Date de Publication 2018-05-27
Développeur Alex Chapman
Type de Paiement free
Langues Prises en Charge 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"
    ]
}