MLS Live: Already Watched

MLS Live: Already Watched

In schedule view on live.mlssoccer.com, indicate which games you've already watched. STUNNING TECHNOLOGY.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "MLS Live: Already Watched",
  "description": "In schedule view on live.mlssoccer.com, indicate which games you've already watched. STUNNING TECHNOLOGY.",
  "version": "0.0.2",
  "manifest_version": 2,
  "icons": {
    "128": "icon.png"
  },
  "permissions": [
    "history"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://live.mlssoccer.com/*"
      ],
      "js": [
        "inject.js"
      ]
    }
  ]
}