Stream Lounge

Stream Lounge

Host a watch party with friends or build an audience with video commentary on Netflix, Disney+, MLB.tv, MotoGP.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "version": "2.3.6",
  "description": "__MSG_extDescription__",
  "manifest_version": 2,
  "default_locale": "en",
  "background": {
    "scripts": [
      "config.js",
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.netflix.com/*"
      ],
      "js": [
        "lib/agora.js",
        "lib/video.js",
        "lib/jquery.js",
        "lib/linkify.js",
        "lib/linkify-jquery.js",
        "lib/pnglib.js",
        "lib/socketio.js",
        "content.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://*.disneyplus.com/*"
      ],
      "js": [
        "lib/agora.js",
        "lib/video.js",
        "lib/jquery.js",
        "lib/linkify.js",
        "lib/linkify-jquery.js",
        "lib/pnglib.js",
        "lib/socketio.js",
        "content.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://*.motogp.com/*/videos/*",
        "*://*.motogp.com/*/video_gallery/*",
        "*://*.motogp.com/*/live*"
      ],
      "js": [
        "lib/agora.js",
        "lib/video.js",
        "lib/jquery.js",
        "lib/linkify.js",
        "lib/linkify-jquery.js",
        "lib/pnglib.js",
        "lib/socketio.js",
        "content.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://*.mlb.com/tv/*"
      ],
      "js": [
        "lib/agora.js",
        "lib/video.js",
        "lib/jquery.js",
        "lib/linkify.js",
        "lib/linkify-jquery.js",
        "lib/pnglib.js",
        "lib/socketio.js",
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "page_action": {
    "default_title": "__MSG_extName__",
    "default_icon": {
      "16": "img/icons/icon16.png",
      "32": "img/icons/icon32.png",
      "48": "img/icons/icon48.png",
      "64": "img/icons/icon64.png"
    }
  },
  "icons": {
    "16": "img/icons/icon16.png",
    "32": "img/icons/icon32.png",
    "48": "img/icons/icon48.png",
    "64": "img/icons/icon64.png",
    "128": "img/icons/icon128.png",
    "512": "img/icons/icon512.png"
  },
  "permissions": [
    "cookies",
    "activeTab",
    "declarativeContent",
    "storage",
    "identity",
    "*://*.streamlounge.io/",
    "*://*.netflix.com/*",
    "*://*.disneyplus.com/*",
    "*://*.motogp.com/*",
    "*://*.mlb.com/*"
  ],
  "content_security_policy": "script-src 'self' 'wasm-eval' https://ssl.google-analytics.com https://www.googletagmanager.com https://stripe.com/ https://js.stripe.com/ https://js.stripe.com/v3/; object-src 'self'",
  "web_accessible_resources": [
    "img/*.svg",
    "style/*.css",
    "img/perks/*",
    "img/badges/*",
    "paymentsFrame.html",
    "lib/hls-player.js"
  ],
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "*://*.streamlounge.io/*"
    ]
  }
}