LeetCode Video Solutions

LeetCode Video Solutions

Watch free LeetCode video ▶ solutions on the problem page itself.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "LeetCode Video Solutions",
  "description": "Watch free LeetCode video ▶ solutions on the problem page itself.",
  "version": "5.0.3",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "*://leetcode.com/*",
    "*://youtube-scrape.soumyaranjanra2.repl.co/",
    "*://*.soumya.dev",
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://leetcode.com/problems/*"
      ],
      "css": [
        "vendor/lite-yt-embed.css",
        "app.css"
      ],
      "js": [
        "vendor/webcomponents.js",
        "vendor/lite-yt-embed.js",
        "app.js"
      ],
      "run_at": "document_end"
    }
  ],
  "manifest_version": 3,
  "content_security_policy": {},
  "host_permissions": [
    "*://leetcode.com/*",
    "*://youtube-scrape.soumyaranjanra2.repl.co/",
    "*://*.soumya.dev"
  ]
}