Fantasy bench score

Fantasy bench score

Lets you see your bench score without having to open each player

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Fantasy bench score",
  "description": "Lets you see your bench score without having to open each player",
  "version": "1.0",
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "include_globs": [
        "*://fantasy.premierleague.com/*"
      ],
      "js": [
        "myscript.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "http://*/*",
    "https://*/*"
  ]
}