LeetBrawls

LeetBrawls

The only way to compete with your friends and conquer coding questions

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "LeetBrawls",
  "description": "The only way to compete with your friends and conquer coding questions",
  "version": "1.0.9",
  "manifest_version": 3,
  "action": {
    "default_popup": "index.html"
  },
  "icons": {
    "16": "leetbattles_16.png",
    "48": "leetbattles_48.png",
    "128": "leetbattles_128.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "identity",
    "webRequest"
  ],
  "host_permissions": [
    "*://*.leetcode.com/*"
  ],
  "background": {
    "service_worker": "./static/js/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.leetcode.com/problems/*"
      ],
      "js": [
        "./static/js/content.js"
      ],
      "css": [
        "/static/css/content.css"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "oauth2": {
    "client_id": "243591261919-32v6rnuqnnvp4d07jhu0etu39bri7kju.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/userinfo.profile"
    ]
  }
}