Cart History

Cart History

Cart History will help you remember your shopping history - making shopping easier and faster than ever before.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Cart History",
  "description": "Cart History will help you remember your shopping history - making shopping easier and faster than ever before.",
  "version": "2.2.9",
  "browser_action": {
    "default_icon": "img/128.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "img/16.png",
    "32": "img/32.png",
    "48": "img/32.png",
    "64": "img/64.png",
    "128": "img/128.png"
  },
  "background": {
    "scripts": [
      "settings.js",
      "js/background.js"
    ]
  },
  "permissions": [
    "identity",
    "tabs",
    "storage",
    "http://*/*"
  ],
  "content_scripts": [
    {
      "js": [
        "js/jquery-2.1.1.min.js"
      ],
      "matches": [
        "*://*.carthistory.com/*",
        "*://*.amazon.com/*",
        "*://*.bestbuy.com/*",
        "*://*.walmart.com/*",
        "*://*.nordstrom.com/*",
        "*://*.newegg.com/*",
        "*://*.adorama.com/*"
      ]
    }
  ]
}