hulucaster

hulucaster

Make it easy to stream hulu to chromecast

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "hulucaster",
  "version": "0.1.0",
  "description": "Make it easy to stream hulu to chromecast",
  "content_scripts": [
    {
      "matches": [
        "*://*.hulu.com/*",
        "*://hulu.com/*"
      ],
      "js": [
        "jquery.min.js",
        "hulucastable_extension.js"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "jquery.min.map"
  ],
  "permissions": [
    "tabs",
    "*://*/*"
  ],
  "homepage_url": "http://thpcod.es/hulucaster",
  "author": "Todd H. Page",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png",
    "257": "icon257.png"
  }
}