Hulu Click to Play

Hulu Click to Play

Play and pause your show by clicking on the video window itself.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Hulu Click to Play",
  "version": "0.1.0",
  "description": "Play and pause your show by clicking on the video window itself.",
  "permissions": [
    "tabs"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "icons": {
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.hulu.com/*"
      ],
      "js": [
        "js/hulu.js"
      ]
    }
  ]
}