BoradGameGeek Image Viewer

BoradGameGeek Image Viewer

Browse BGG image by a popup image viewer.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "BoradGameGeek Image Viewer",
  "version": "1.2",
  "manifest_version": 2,
  "description": "Browse BGG image by a popup image viewer. ",
  "background": {
    "page": "main.html"
  },
  "page_action": {
    "default_icon": "icon-19.png",
    "default_title": "BGGIV"
  },
  "permissions": [
    "tabs"
  ],
  "icons": {
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "update_url": "http://clients2.google.com/service/update2/crx",
  "content_scripts": [
    {
      "matches": [
        "http://boardgamegeek.com/*",
        "https://boardgamegeek.com/*",
        "http://www.boardgamegeek.com/*",
        "https://www.boardgamegeek.com/*"
      ],
      "js": [
        "js/jquery.min.js",
        "js/bggiv.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ]
}