Watch Remotely

Watch Remotely

Watch Remotely allows you to watch online videos together with friends - without being in the same room. Supported services are:…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "WR",
  "name": "Watch Remotely",
  "manifest_version": 2,
  "browser_action": {
    "default_popup": "index.html",
    "default_title": "Watch Remotely"
  },
  "content_scripts": [
    {
      "matches": [
        "https://play.stan.com.au/programs/*",
        "https://youtube.com/*",
        "https://www.youtube.com/*",
        "https://disneyplus.com/*",
        "https://www.disneyplus.com/*",
        "https://animelab.com/player/*",
        "https://www.animelab.com/player/*",
        "https://binge.com.au/shows/*",
        "https://www.binge.com.au/shows/*",
        "https://binge.com.au/movies/*",
        "https://www.binge.com.au/movies/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.watchremotely.net/*"
      ],
      "js": [
        "content-page.js"
      ]
    }
  ],
  "permissions": [
    "activeTab"
  ],
  "icons": {
    "16": "logo16.png",
    "48": "logo48.png",
    "128": "logo128.png"
  },
  "version": "1.2.0"
}