NFL Live Hub: Scores, Stats & Fan Chat

NFL Live Hub: Scores, Stats & Fan Chat

NFL Live Hub: Real-time NFL scores, stats, game recaps, standings, and fan chat in one extension.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "description": "__MSG_description__",
  "version": "2.10.1",
  "default_locale": "en",
  "manifest_version": 3,
  "action": {
    "default_popup": "index.html",
    "default_title": "Open the popup"
  },
  "permissions": [
    "notifications",
    "alarms"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://blank.org/*"
      ],
      "run_at": "document_end",
      "js": [
        "./index.global.js"
      ],
      "css": [
        "./style.css"
      ]
    }
  ],
  "background": {
    "service_worker": "./background.global.js"
  },
  "icons": {
    "16": "nfl-16.png",
    "32": "nfl-32.png",
    "48": "nfl-48.png",
    "128": "nfl-128.png"
  }
}