Download Amazon Orders

Chrome extension that downloads currently viewed Amazon Orders as a CSV

¿Qué es Download Amazon Orders?

Download Amazon Orders es una extensión de Chrome desarrollada por Alex Chapman, y su función principal es "Chrome extension that downloads currently viewed Amazon Orders as a CSV".

Descargar Archivo CRX de la Extensión Download Amazon Orders

Descarga archivos de extensión Download Amazon Orders en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Download Amazon Orders Download Amazon Orders
ID calkeehfhffaekgmdpllhgnadjbonofc
URL Oficial https://chromewebstore.google.com/detail/download-amazon-orders/calkeehfhffaekgmdpllhgnadjbonofc
Descripción Chrome extension that downloads currently viewed Amazon Orders as a CSV
Tamaño del Archivo 5.01 KB
Cantidad de Instalaciones 24
Versión Actual 0.0.0.3
Última Actualización 2018-05-27
Fecha de Publicación 2018-05-27
Desarrollador Alex Chapman
Tipo de Pago free
Idiomas Soportados 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"
    ]
}