Enhanced ESPN NBA box score

Enhanced ESPN NBA box score

Improve the ESPN NBA box score viewing experience

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Enhanced ESPN NBA box score",
  "version": "1.1.0",
  "description": "Improve the ESPN NBA box score viewing experience",
  "homepage_url": "https://twitter.com/lenymo",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "action": {
    "default_icon": "icons/icon19.png",
    "default_title": "Enhanced ESPN NBA box score",
    "default_popup": "browser-action/index.html"
  },
  "permissions": [],
  "host_permissions": [
    "https://*/nba/boxscore?gameId=*",
    "https://*/nba/boxscore/_/gameId/*",
    "https://*/nba-summer-league/boxscore?gameId=*",
    "https://*/nba-summer-league/boxscore/_/gameId/*",
    "https://*/wnba/boxscore?gameId=*",
    "https://*/wnba/boxscore/_/gameId/*",
    "https://*/mens-college-basketball/boxscore?gameId=*",
    "https://*/mens-college-basketball/boxscore/_/gameId/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/nba/boxscore?gameId=*",
        "https://*/nba/boxscore/_/gameId/*",
        "https://*/nba-summer-league/boxscore?gameId=*",
        "https://*/nba-summer-league/boxscore/_/gameId/*",
        "https://*/wnba/boxscore?gameId=*",
        "https://*/wnba/boxscore/_/gameId/*",
        "https://*/mens-college-basketball/boxscore?gameId=*",
        "https://*/mens-college-basketball/boxscore/_/gameId/*"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "css": [
        "extension/css/style.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "extension/css/style.css"
      ],
      "matches": []
    }
  ]
}