Examine source code of Teleparty Pro

Inspect and view changes in Teleparty Pro 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
{
  "manifest_version": 3,
  "name": "__MSG_name__",
  "version": "1.0.0",
  "default_locale": "en",
  "description": "__MSG_description__",
  "icons": {
    "16": "./img/16.png",
    "32": "./img/32.png",
    "48": "./img/48.png",
    "128": "./img/128.png"
  },
  "action": {
    "default_icon": "./img/128.png",
    "default_title": "__MSG_name__",
    "default_popup": "popup/index.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "content/index.js",
        "content/contentScript.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "https://*.crunchyroll.com/*",
        "http://*.crunchyroll.com/*"
      ],
      "js": [
        "content/crunchyrollScript.js"
      ],
      "run_at": "document_idle",
      "all_frames": true
    },
    {
      "matches": [
        "https://www.tele-party.com/*"
      ],
      "js": [
        "teleparty.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "unlimitedStorage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content/index.js",
        "content/videoController.js",
        "chat/index.html",
        "content/contentScript.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    },
    {
      "resources": [
        "content/crunchyrollScript.js"
      ],
      "matches": [
        "https://*.crunchyroll.com/*",
        "http://*.crunchyroll.com/*"
      ]
    },
    {
      "resources": [
        "teleparty.js"
      ],
      "matches": [
        "https://www.tele-party.com/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}