Download Amazon Orders

Chrome extension that downloads currently viewed Amazon Orders as a CSV

Download Amazon Orders क्या है?

Download Amazon Orders Alex Chapman द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chrome extension that downloads currently viewed Amazon Orders as a CSV"।

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Download Amazon Orders एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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"
    ]
}