Examine source code of VideoTogether

Inspect and view changes in VideoTogether source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "VideoTogether",
  "description": "Watch video together",
  "version": "3.0.14",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "extension.chrome.user.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "pre.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "preInjected.js"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "world": "MAIN"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "load.en-us.js",
        "load.zh-cn.js",
        "load.ja-jp.js",
        "vt.en-us.user.js",
        "vt.zh-cn.user.js",
        "vt.ja-jp.user.js",
        "preInjected.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "background.chrome.js",
    "mode": "module"
  },
  "icons": {
    "192": "./icon/android-icon-192x192.png"
  },
  "permissions": [
    "storage",
    "unlimitedStorage"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}