LeetFlash

LeetFlash

A simple extension that record your LeetCode performance for everyday.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "LeetFlash",
  "description": "A simple extension that record your LeetCode performance for everyday.",
  "version": "2.1.1",
  "manifest_version": 3,
  "icons": {
    "16": "IconOnly2.png",
    "48": "IconOnly2.png",
    "128": "IconOnly2.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "LeetFlash",
    "default_icon": "IconOnly2.png"
  },
  "permissions": [
    "storage",
    "activeTab",
    "webRequest",
    "alarms",
    "notifications",
    "webNavigation"
  ],
  "host_permissions": [
    "*://*.leetcode.com/*",
    "*://*.leetcode.cn/*"
  ],
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://leetcode.cn/problems/*/",
        "https://leetcode.com/problems/*/"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ]
}