Hockey Scores Viewer

Hockey Scores Viewer

This extension allows you to view what games are going on in a new tab

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Hockey Scores Viewer",
  "description": "This extension allows you to view what games are going on in a new tab",
  "version": "1.3",
  "chrome_url_overrides": {
    "newtab": "src/index.html"
  },
  "permissions": [
    "tabs",
    "http://*.nhle.com/*"
  ],
  "browser_action": {
    "default_icon": "src/assets/logo_48.png"
  },
  "icons": {
    "48": "src/assets/logo_48.png",
    "128": "src/assets/logo_128.png"
  },
  "content_security_policy": "script-src 'self' https://code.jquery.com https://cdnjs.cloudflare.com https://maxcdn.bootstrapcdn.com; object-src 'self'"
}