Examine source code of Scener

Inspect and view changes in Scener 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Scener",
  "short_name": "Scener",
  "description": "Watch shows and movies in sync with friends around the world",
  "version": "7.1.2",
  "minimum_chrome_version": "88",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAn482yZ9C/Ce0QW6DaJVgjzmUBxgl9x7hT2BuegbKeWOLEb2OrWOtVlc6VczGdDxJVdNCwzDWLEB77zhPgwgb9bFXtmJCZrU4/N4zNlVnU7nM1j7CmWByK/DcbrBrMMpty7s9GNgOU9hXfE6IAHYXwFB4tD1Us2LZzvhKTQrWkhPnIswf/pUf3zHzF6RrWAAAWOGrcL570LQhc6ftyhccaeC378wGCZ/gMQWyH3JIXLXzIaLgX1e+9aJx586oTFHo2DmRay6FlX57q0ehzqw8WZ9efbXIhvKGmFqGHZlhCNqLGdO96cB8XJClyFiuJQrdK/klLpb3soWwgVnEibaGewIDAQAB",
  "homepage_url": "https://scener.com",
  "icons": {
    "16": "ScenerIcon_16.png",
    "32": "ScenerIcon_32.png",
    "48": "ScenerIcon_48.png",
    "128": "ScenerIcon_128.png"
  },
  "permissions": [
    "cookies",
    "system.display",
    "activeTab",
    "storage",
    "alarms",
    "scripting"
  ],
  "optional_permissions": [
    "tabs",
    "notifications"
  ],
  "host_permissions": [
    "https://*.scener.com/*"
  ],
  "optional_host_permissions": [
    "*://*/*",
    "https://*.netflix.com/*"
  ],
  "content_security_policy": {
    "extension_pages": "default-src 'self'; object-src 'self'; script-src 'self'; connect-src https://sentry.io https://scener.com https://*.scener.com https://*.amazonaws.com https://*.googleapis.com;"
  },
  "action": {
    "default_icon": {
      "16": "ScenerIcon_Default_16.png",
      "32": "ScenerIcon_Default_32.png",
      "48": "ScenerIcon_Default_48.png",
      "128": "ScenerIcon_Default_128.png"
    },
    "default_title": "Virtual Movie Theater"
  },
  "background": {
    "service_worker": "background/index.js",
    "type": "module",
    "matches": [
      "https://*.netflix.com/*",
      "https://*.scener.com/*"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "scener_content/index.js"
      ],
      "matches": [
        "https://*.scener.com/*"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.html",
        "*.png",
        "*.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://*.netflix.com/*",
      "*://*.disneyplus.com/*",
      "*://*.crunchyroll.com/*",
      "*://*.hbogo.com/*",
      "*://*.shudder.com/*",
      "*://*.tubitv.com/*",
      "*://*.roku.com/*",
      "*://*.gizmoplex.com/*",
      "*://*.hbonow.com/*",
      "*://*.hbomax.com/*",
      "*://*.max.com/*",
      "*://*.drafthouse.com/*",
      "*://*.funimation.com/*",
      "*://*.pluto.tv/*",
      "*://*.rifftrax.com/*",
      "*://*.youtube.com/*",
      "*://*.scener.com/*",
      "*://*.hulu.com/*",
      "*://*.amazon.com/*",
      "*://*.vimeo.com/*",
      "*://*.hotstar.com/*",
      "*://*.primevideo.com/*",
      "*://*.amazon.co.uk/*",
      "*://*.indee.tv/*"
    ]
  }
}