2018 FIFA World Cup Score Hider

2018 FIFA World Cup Score Hider

Hide scores so they don't spoil the game! The screen will blur while the scores are removed from the screen.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "2018 FIFA World Cup Score Hider",
  "version": "0.0.1",
  "description": "Hide scores so they don't spoil the game! The screen will blur while the scores are removed from the screen.",
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.foxsports.com/soccer/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "scoreHider.css"
      ]
    }
  ]
}