Crosshair

Crosshair

Provides additional functionality when playing Spot The Ball at botb.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Crosshair",
  "description": "Provides additional functionality when playing Spot The Ball at botb.com",
  "version": "1.6",
  "permissions": [
    "activeTab"
  ],
  "icons": {
    "16": "/assets/icons/icon_16.png",
    "19": "/assets/icons/icon_19.png",
    "38": "/assets/icons/icon_38.png",
    "48": "/assets/icons/icon_48.png",
    "128": "/assets/icons/icon_128.png",
    "256": "/assets/icons/icon_256.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/assets/icons/icon_16.png",
      "19": "/assets/icons/icon_19.png",
      "38": "/assets/icons/icon_38.png",
      "48": "/assets/icons/icon_48.png",
      "128": "/assets/icons/icon_128.png",
      "256": "/assets/icons/icon_256.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.botb.com/spot-the-ball*",
        "https://botb.com/spot-the-ball*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "host_permissions": [
    "https://www.botb.com/spot-the-ball*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/assets/images/bigredmarker.png",
        "/assets/images/bigpurplemarker.png",
        "/assets/images/bigyellowmarker.png",
        "/assets/images/bigcyanmarker.png",
        "/assets/images/biggreenmarker.png",
        "/assets/images/Targetwithcrosshair_cropped.png",
        "/assets/fonts/LTWave-Regular.ttf",
        "/assets/images/winnercross.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}