Wishlist Total

Wishlist Total

amazon wishlist total chrome extension, totals all items in wishlist and displays the total

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Wishlist Total",
  "version": "1.0",
  "author": "Michael Penhallegon",
  "page_action": {
    "default_icon": "static/wishlist.png",
    "default_popup": "popup.html"
  },
  "background": {
    "script": [
      "./js/background.js"
    ],
    "page": "background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.amazon.com/gp/registry*"
      ],
      "js": [
        "./lib/jquery-2.0.3.js",
        "./js/content.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "http://amazon.com/*",
    "http://www.amazon.com/gp/registry/*"
  ]
}