sflp

sflp

Provides a calendar of basketball games, and links to watch them. Upon selecting a game the user is redirected to the League Pass…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "browser_action": {
    "default_icon": "bball.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "css": [
        "nbapage.css"
      ],
      "js": [
        "jquery191.js",
        "jquery111.js",
        "obj.js",
        "popup.js"
      ],
      "matches": [
        "http://www.nba.com/*",
        "https://www.nba.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "bball.png",
    "48": "bball.png",
    "128": "bball.png"
  },
  "manifest_version": 2,
  "name": "sflp",
  "permissions": [
    "activeTab"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.13"
}