Leet Xt

Leet Xt

Supercharge your LeetCode practice - Add to Friends, Premium Features, per Contest Friends Rating, and more!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Leet Xt",
  "version": "0.3.6",
  "description": "Supercharge your LeetCode practice - Add to Friends, Premium Features, per Contest Friends Rating, and more!",
  "icons": {
    "16": "/icons/logo_16.png",
    "32": "/icons/logo_32.png",
    "48": "/icons/logo_48.png",
    "128": "/icons/logo_128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://leetcode.com/*"
      ],
      "js": [
        "js/lx_html.js",
        "js/lx_utils.js",
        "js/lx_contest.js",
        "js/lx_premium.js",
        "js/lx_friends.js",
        "js/lx.js"
      ],
      "css": [
        "css/lx.css"
      ]
    }
  ],
  "permissions": [
    "downloads",
    "storage",
    "unlimitedStorage"
  ]
}