Fantasy Sports Headlines

Fantasy Sports Headlines

This extension fetches the latest Rotoworld Headlines (NBA, NFL, MLB, NHL, BPL, PGA)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Fantasy Sports Headlines",
  "version": "1.2.0",
  "manifest_version": 2,
  "description": "This extension fetches the latest Rotoworld Headlines (NBA, NFL, MLB, NHL, BPL, PGA)",
  "homepage_url": "http://sahilamoli.wordpress.com",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "src/bg/background.js",
      "/js/jquery/jquery.min.js",
      "/js/jquery/jquery.xml2json.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "icons/icon48.png",
    "default_title": "Fantasy Sports Headlines"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "/src/content/content.css"
      ],
      "js": [
        "/js/jquery/jquery.min.js",
        "/src/content/content.js"
      ]
    }
  ],
  "options_page": "options.html",
  "permissions": [
    "background",
    "tabs",
    "http://*/*",
    "https://*/*"
  ]
}