BGG Search

BGG Search

View BGG ratings right away!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "BGG Search",
  "description": "View BGG ratings right away!",
  "version": "0.2",
  "permissions": [
    "notifications",
    "background",
    "<all_urls>"
  ],
  "browser_action": {
    "default_icon": "chess.png",
    "default_title": "BGG Search"
  },
  "background": {
    "scripts": [
      "jquery.js",
      "main.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery.js",
        "jquery.textselect.js",
        "inject.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "chess.png"
  ]
}