MTG Price Gatherer

MTG Price Gatherer

Adds Magic card prices to Gatherer

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "MTG Price Gatherer",
  "description": "Adds Magic card prices to Gatherer",
  "version": "1.2.2",
  "permissions": [
    "tabs",
    "http://partner.tcgplayer.com/"
  ],
  "icons": {
    "16": "images/icon_16.png",
    "48": "images/icon_48.png",
    "96": "images/icon_96.png",
    "128": "images/icon_128.png"
  },
  "page_action": {
    "default_icon": "images/default_icon.png",
    "default_title": "Price Gatherer",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://gatherer.wizards.com/Pages/Card/*"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "jquery.js",
        "set_map.js",
        "content.js"
      ]
    }
  ]
}