Download Amazon Orders

Chrome extension that downloads currently viewed Amazon Orders as a CSV

什麼是Download Amazon Orders?

Download Amazon Orders是由Alex Chapman開發的Chrome擴展程式,該擴展的主要功能是“Chrome extension that downloads currently viewed Amazon Orders as a CSV”。

下載Download Amazon Orders擴展crx文件

下載Download Amazon Orders擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Download Amazon Orders Download Amazon Orders
ID calkeehfhffaekgmdpllhgnadjbonofc
官方網址 https://chromewebstore.google.com/detail/download-amazon-orders/calkeehfhffaekgmdpllhgnadjbonofc
簡介 Chrome extension that downloads currently viewed Amazon Orders as a CSV
檔案大小 5.01 KB
安裝次數 24
目前版本 0.0.0.3
更新時間 2018-05-27
上架時間 2018-05-27
開發者 Alex Chapman
付費類型 free
支援的語言 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"
    ]
}