Examine source code of LeetCollab

Inspect and view changes in LeetCollab 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",
  "name": "LeetCollab",
  "version": "1.0",
  "description": "Collab with other leetcoders!",
  "permissions": [
    "tabs",
    "*://*.leetcode.com/problems/*",
    "webRequest",
    "webRequestBlocking"
  ],
  "externally_connectable": {
    "matches": [
      "*://*.leetcode.com/problems/*"
    ]
  },
  "background": {
    "scripts": [
      "inject.js",
      "idle.js",
      "desktop.js",
      "block.js",
      "style.css"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.leetcode.com/problems/*"
      ],
      "js": [
        "socket.io.js",
        "codemirror.min.js",
        "background.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "inject.js",
    "idle.js",
    "desktop.js",
    "block.js",
    "style.css"
  ],
  "browser_action": {
    "default_popup": "popup.html"
  },
  "manifest_version": 2
}