eZ Elite Creator

eZ Elite Creator

Easily create eZ Elites from your Amazon and eBay shipments

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "eZ Elite Creator",
  "description": "Easily create eZ Elites from your Amazon and eBay shipments",
  "version": "1.9.6",
  "icons": {
    "128": "www/images/icon128.png"
  },
  "background": {
    "scripts": [
      "www/js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.ebay.com/*"
      ],
      "js": [
        "www/js/scrapeEbayContent.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "19": "www/images/icon19.png",
      "38": "www/images/icon38.png",
      "128": "www/images/icon128.png"
    },
    "default_popup": "www/index.html"
  },
  "permissions": [
    "alarms",
    "notifications",
    "storage",
    "tabs",
    "webNavigation",
    "unlimitedStorage",
    "https://*.getezone.com/",
    "https://*.amazon.com/",
    "https://amazon.com/",
    "https://*.ebay.com/*",
    "https://ebay.com/"
  ]
}