NHL.com Hide Scores

NHL.com Hide Scores

Hides the scores on NHL.com, past and present.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "NHL.com Hide Scores",
  "version": "1.5",
  "description": "Hides the scores on NHL.com, past and present.",
  "manifest_version": 2,
  "permissions": [
    "activeTab",
    "declarativeContent",
    "storage",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.nhl.com/*"
      ],
      "css": [
        "contentscript.css"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "page_action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/16.png",
    "32": "images/32.png",
    "48": "images/48.png",
    "128": "images/128.png"
  }
}