Watch Together: Animes, Videos, Movies and +

Watch Together: Animes, Videos, Movies and +

Watch any video content on the web in real time with your friends

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Watch Together: Animes, Videos, Movies and +",
  "description": "Watch any video content on the web in real time with your friends",
  "version": "0.4",
  "manifest_version": 3,
  "icons": {
    "16": "assets/icon16.png",
    "32": "assets/icon32.png",
    "128": "assets/icon128.png"
  },
  "permissions": [
    "background",
    "activeTab",
    "scripting"
  ],
  "host_permissions": [
    "http://*/",
    "https://*/"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "views/popup.html"
  }
}