HBO Enhanced

HBO Enhanced

A light-weight extension that enhances the HBO Now and HBO Go streaming services to their full potentials.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "HBO Enhanced",
  "description": "A light-weight extension that enhances the HBO Now and HBO Go streaming services to their full potentials.",
  "version": "0.4",
  "icons": {
    "128": "icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://play.hbonow.com/*",
        "https://play.hbogo.com/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "permissions": [
    "tabs"
  ]
}