HBO Sync

HBO Sync

Watch HBO GO/NOW videos with a friend.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "HBO Sync",
  "version": "1.6",
  "description": "Watch HBO GO/NOW videos with a friend.",
  "manifest_version": 2,
  "permissions": [
    "storage",
    "activeTab",
    "declarativeContent"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icons/logo16.png",
      "32": "icons/logo32.png",
      "48": "icons/logo48.png",
      "128": "icons/logo128.png"
    }
  },
  "icons": {
    "16": "icons/logo16.png",
    "32": "icons/logo32.png",
    "48": "icons/logo48.png",
    "128": "icons/logo128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://play.hbonow.com/*",
        "https://play.hbogo.com/*",
        "https://hbogo.ro/*"
      ],
      "css": [
        "main.css",
        "loading.css"
      ],
      "js": [
        "peer.min.js",
        "overlay.js",
        "videoStream.js",
        "peerConnection.js"
      ]
    }
  ]
}