MLB Baseball Tracker

MLB Baseball Tracker

Adds an icon with your selected MLB team's game information with real-time score and in-game data.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "MLB Baseball Tracker",
  "short_name": "MlbBaseballTracker",
  "version": "3.1",
  "description": "Adds an icon with your selected MLB team's game information with real-time score and in-game data.",
  "offline_enabled": false,
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "alarms",
    "storage",
    "contextMenus"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "logos/*",
        "numbers/*"
      ],
      "matches": [
        "*://*/*"
      ],
      "extension_ids": [
        "ojihcoimmhapanmaglfhjfddoniigjpg",
        "pbhopjnalckkgcigcfohmiinmhaamldl"
      ]
    }
  ],
  "action": {
    "128": "logos/mlb.png"
  },
  "icons": {
    "128": "logos/mlb.png"
  }
}