LeetCode Timer

LeetCode Timer

Leetcode timer and performance tracking

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "LeetCode Timer",
  "version": "3.9",
  "manifest_version": 3,
  "description": "Leetcode timer and performance tracking",
  "icons": {
    "16": "images/lt16.png",
    "32": "images/lt32.png",
    "48": "images/lt48.png",
    "128": "images/lt128.png"
  },
  "action": {
    "default_icon": {
      "16": "images/lt16.png",
      "32": "images/lt32.png",
      "48": "images/lt48.png",
      "128": "images/lt128.png"
    },
    "default_title": "Leetcode Timer",
    "default_popup": "popup/popup.html"
  },
  "options_page": "options/options.html",
  "permissions": [
    "declarativeContent",
    "storage",
    "scripting",
    "webRequest",
    "webNavigation",
    "tabs",
    "alarms"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "background": {
    "service_worker": "bg.js",
    "type": "module"
  }
}