NFL Timezone 18/19

NFL Timezone 18/19

This extension converts the upcoming game time on the top banner of all pages on NFL.com to your own timezone.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "author": "Mike Spitz",
  "name": "NFL Timezone 18/19",
  "short_name": "NFL Timezone",
  "description": "This extension converts the upcoming game time on the top banner of all pages on NFL.com to your own timezone.",
  "version": "1.70",
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "content_scripts": [
    {
      "js": [
        "lib/jquery/jquery.min.js",
        "lib/momentjs/moment-with-locales.min.js",
        "lib/momentjs/moment-timezone-with-data.min.js",
        "content_scripts.js"
      ],
      "matches": [
        "*://*.nfl.com/*"
      ]
    }
  ],
  "icons": {
    "32": "icons/icon_32.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png",
    "250": "icons/icon_250.png"
  },
  "options_page": "options.html",
  "permissions": [
    "activeTab",
    "storage",
    "*://*.nfl.com/*"
  ]
}