Ebay Purchase History Downloader

Ebay Purchase History Downloader

Downloads Ebay's purchase history

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Ebay Purchase History Downloader",
  "description": "Downloads Ebay's purchase history ",
  "version": "3.6",
  "permissions": [
    "activeTab",
    "http://*/",
    "https://*/"
  ],
  "content_scripts": [
    {
      "all_frames": false,
      "matches": [
        "*://*.ebay.com/*",
        "*://*.ebay.co.uk/*",
        "*://*.ebay.com.au/*",
        "*://*.ebay.com.ca/*"
      ],
      "exclude_matches": [],
      "js": [
        "/src/jquery.js",
        "/src/sheet-min.js",
        "/src/file-saver-min.js",
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_title": "Download Purchase History.",
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "manifest_version": 2
}