Elo Live Score

Elo Live Score

Updates FiveThirtyEight Elo Game Page w/~Live Scores

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Elo Live Score",
  "description": "Updates FiveThirtyEight Elo Game Page w/~Live Scores",
  "version": "2.0",
  "permissions": [
    "https://site.api.espn.com/apis/site/v2/sports/football/nfl/scoreboard"
  ],
  "content_scripts": [
    {
      "js": [
        "jquery.min.js",
        "elolive.js"
      ],
      "matches": [
        "https://projects.fivethirtyeight.com/2022-nfl-forecasting-game/results/"
      ]
    }
  ],
  "background": {
    "scripts": [
      "jquery.min.js",
      "background.js"
    ]
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "96": "icon96.png",
    "128": "icon128.png",
    "256": "icon256.png"
  }
}