Yahoo Timezone Corrector

Yahoo Timezone Corrector

Fix the timezone for Yahoo fantasy baseball

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Yahoo Timezone Corrector",
  "description": "Fix the timezone for Yahoo fantasy baseball",
  "version": "1.3",
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*.yahoo.com/*",
        "https://*.yahoo.com/*"
      ],
      "js": [
        "jquery.min.js",
        "content_script.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "http://*.yahoo.com/*",
    "https://*.yahoo.com/*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "icon.png"
  },
  "minimum_chrome_version": "9",
  "manifest_version": 2
}