mtgtop8 Helper

mtgtop8 Helper

For Magic: The Gathering. On mtgtop8.com/compare, shows the % of decks using each qty of each card.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "mtgtop8 Helper",
  "version": "0.0.1",
  "description": "For Magic: The Gathering.  On mtgtop8.com/compare, shows the % of decks using each qty of each card.",
  "browser_action": {},
  "permissions": [
    "*://*.mtgtop8.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.mtgtop8.com/compare*"
      ],
      "js": [
        "jquery-2.1.4.min.js",
        "script.js"
      ],
      "run_at": "document_end",
      "css": []
    }
  ],
  "icons": {
    "16": "noun_14045_cc_16.png",
    "48": "noun_14045_cc_48.png",
    "128": "noun_14045_cc_128.png"
  }
}