Couch Potato

Couch Potato

Watch Hulu with your friends from the comfort of your own couch with Couch Potato!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Couch Potato",
  "description": "Watch Hulu with your friends from the comfort of your own couch with Couch Potato!",
  "version": "1.2.0",
  "permissions": [
    "activeTab",
    "declarativeContent",
    "notifications"
  ],
  "page_action": {
    "default_icon": {
      "19": "popcorn-icon.png",
      "38": "popcorn-icon.png"
    },
    "default_title": "Couch Potato",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.hulu.com/",
        "https://www.hulu.com/"
      ],
      "js": [
        "notification.js"
      ]
    }
  ],
  "icons": {
    "16": "popcorn-icon.png",
    "48": "popcorn-icon.png",
    "128": "popcorn-icon.png"
  }
}