Card Finder For Gwent

Card Finder For Gwent

Detects Gwent cards and adds tooltips, mouseover for a preview or click for more information.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en_US",
  "version": "0.1.6",
  "icons": {
    "128": "icon.png"
  },
  "permissions": [
    "*://*/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {},
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "css": [
        "finder.css"
      ],
      "js": [
        "finder.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "extention_cards.json",
    "tooltip.css"
  ]
}