BGG Enhancer

BGG Enhancer

Take control of the features of BGG.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "BGG Enhancer",
  "version": "1.1",
  "manifest_version": 2,
  "description": "Take control of the features of BGG.com",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon48.png",
    "default_title": "BGG Options",
    "default_popup": "options.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.boardgamegeek.com/*",
        "https://boardgamegeek.com/*"
      ],
      "js": [
        "jquery-1.9.0.min.js",
        "BggEditor.js"
      ],
      "css": [
        "geeklist.css"
      ]
    },
    {
      "matches": [
        "https://www.boardgamegeek.com/geeklist/*",
        "https://boardgamegeek.com/geeklist/*"
      ],
      "js": [
        "BggGeekLists.js"
      ],
      "css": [
        "geeklist.css"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "https://*/*",
    "storage"
  ],
  "web_accessible_resources": [
    "move-top.png",
    "move-bottom.png",
    "move-to.png"
  ]
}