Big Ω - Enhance Leetcode experience

Big Ω - Enhance Leetcode experience

Programming in community gives you wings!!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Big Ω - Enhance Leetcode experience",
  "description": "Programming in community gives you wings!!",
  "version": "1.1.4",
  "icons": {
    "128": "logo128.png"
  },
  "action": {
    "default_icon": "logo128.png",
    "default_title": "Big Ω - Enhance Leetcode, Hackerrank experience"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://leetcode.com/*",
        "http://leetcode.com/*",
        "https://www.leetcode.com/*",
        "http://www.leetcode.com/*"
      ],
      "js": [
        "preinject.js",
        "big-omega-tools.js"
      ],
      "css": [
        "big-omega-tools.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "build/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}