NHL Playoffs Bracket - Series Scores

NHL Playoffs Bracket - Series Scores

See series scores next to team names on the NHL Bracket Challenge website. Also, see series scores in your browser toolbar.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "NHL Playoffs Bracket - Series Scores",
  "description": "See series scores next to team names on the NHL Bracket Challenge website. Also, see series scores in your browser toolbar.",
  "version": "1.0.2",
  "action": {
    "default_popup": "popup/popup.html",
    "default_icon": "images/icon-48.png"
  },
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "content_scripts": [
    {
      "js": [
        "scripts/add_scores.js"
      ],
      "matches": [
        "https://bracketchallenge.nhl.com/*"
      ]
    }
  ]
}