Warhead Basketball

Warhead Basketball

Embed stats in your favorite basketball news stories

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Warhead Basketball",
  "manifest_version": 2,
  "version": "0.4",
  "description": "Embed stats in your favorite basketball news stories",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.theathletic.com/*",
        "*://*.espn.com/*",
        "*://*.si.com/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "tabs"
  ]
}