Leetcode-Premium-X

Leetcode-Premium-X

Leetcode-Premium-X is a Firefox addon which can be used by anyone who are preparing for technical interviews or improving their coding skills on the LeetCode platform.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Leetcode-Premium-X",
  "version": "0.0.1",
  "description": "Get Premium feature of leetcode",
  "permissions": [],
  "action": {
    "default_popup": "dist/index.html",
    "default_icon": {
      "16": "images/favicon-16x16.png",
      "48": "images/android-chrome-512x512.png",
      "128": "images/android-chrome-192x192.png"
    }
  },
  "manifest_version": 3,
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "42.0"
    }
  },
  "content_scripts": [
    {
      "css": [
        "dist/style.css"
      ],
      "js": [
        "/dist/main.js"
      ],
      "matches": [
        "https://leetcode.com/*"
      ]
    }
  ],
  "icons": {
    "16": "/images/favicon-16x16.png",
    "48": "/images/android-chrome-512x512.png",
    "128": "/images/android-chrome-192x192.png"
  }
}