LC Predictor

LC Predictor

Browser extension for predicting leetcode contest rating. It shows approximate rating delta after contests on leetcode itself.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "LC Predictor",
  "version": "1.0.2",
  "short_name": "LC Predictor",
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "./popup.html",
    "icons": {
      "16": "/icons/icon16.png",
      "32": "/icons/icon32.png",
      "48": "/icons/icon48.png",
      "64": "/icons/icon64.png",
      "128": "/icons/icon128.png"
    }
  },
  "description": "Browser extension for predicting leetcode contest rating. It shows approximate rating delta after contests on leetcode itself.",
  "icons": {
    "16": "/icons/icon16.png",
    "32": "/icons/icon32.png",
    "48": "/icons/icon48.png",
    "64": "/icons/icon64.png",
    "128": "/icons/icon128.png"
  },
  "options_page": "./options.html",
  "permissions": [
    "tabs",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "https://leetcode.com/*",
    "https://lcpredictor.onrender.com/*"
  ]
}