Leetcode Alarm

Leetcode Alarm

Don't forget to solve Leetcode problems!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Leetcode Alarm",
  "version": "1.1",
  "description": "Don't forget to solve Leetcode problems!",
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "storage",
    "tabs",
    "alarms",
    "webNavigation",
    "webRequest",
    "scripting"
  ],
  "action": {
    "default_popup": "index.html",
    "default_icon": {
      "16": "logo.png",
      "48": "logo.png",
      "128": "logo.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "popup.js"
      ]
    }
  ],
  "background": {
    "service_worker": "scripts/background.js"
  },
  "manifest_version": 3
}