Improved BGA game info

Improved BGA game info

Be able to see more information from a game in Board Game Arena using Board Game Geek information.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Improved BGA game info",
  "description": "Be able to see more information from a game in Board Game Arena using Board Game Geek information.",
  "version": "1.0.0",
  "manifest_version": 2,
  "icons": {
    "16": "icons/extension_toolbar_icon16.png",
    "32": "icons/extension_toolbar_icon32.png",
    "48": "icons/extension_toolbar_icon48.png",
    "128": "icons/extension_toolbar_icon128.png"
  },
  "permissions": [
    "https://boardgamearena.com/gamepanel*",
    "https://www.boardgamegeek.com/xmlapi2/*",
    "webNavigation"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "css": [
        "styles.css"
      ],
      "js": [
        "content.js"
      ],
      "matches": [
        "https://boardgamearena.com/gamepanel*"
      ],
      "run_at": "document_end"
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}