BuzzerBeater Booster

BuzzerBeater Booster

Provides a few display and usability enhancements for the BuzzerBeater basketball management simulation game.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "version": "0.3.0",
  "name": "BB Booster",
  "author": "Aaron Cox",
  "description": "Provides a few display and usability enhancements for the BuzzerBeater basketball management simulation game.",
  "homepage_url": "https://github.com/aaronmcox/bb-booster",
  "options_ui": {
    "page": "options/options.html",
    "browser_style": true,
    "chrome_style": true
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.buzzerbeater.com/manage/transferlist.aspx"
      ],
      "js": [
        "content-scripts/transfer-list/transfer-list.js"
      ],
      "css": [
        "bbb.css"
      ]
    },
    {
      "matches": [
        "*://*.buzzerbeater.com/*"
      ],
      "js": [
        "content-scripts/global/next-opponent.js"
      ],
      "css": [
        "bbb.css"
      ]
    }
  ],
  "icons": {
    "48": "assets/images/bbb-icon-48.png",
    "96": "assets/images/bbb-icon-96.png"
  },
  "permissions": [
    "storage"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{486fd4c5-ea03-4f97-8617-9c21adb0b429}"
    }
  }
}