leetcode cheatsheet

leetcode cheatsheet

刷题小助手,made by 力扣加加

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "leetcode cheatsheet",
  "description": "刷题小助手,made by 力扣加加",
  "version": "0.11.5",
  "browser_action": {
    "default_popup": "index.html",
    "default_title": "力扣加加"
  },
  "homepage_url": "https://leetcode-solution.cn/download",
  "icons": {
    "128": "logo.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://leetcode-cn.com/*",
        "*://leetcode.com/*",
        "*://leetcode.cn/*"
      ],
      "js": [
        "/static/js/inject.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "/static/js/content.js"
  ],
  "permissions": [
    "tabs"
  ],
  "content_security_policy": "script-src 'self' 'sha256-9HcBuUP35aPkU0991A4mASdsuifTkUlifJ7elThz6Ow=' 'sha256-0Jo/EYaXS11i7poc/P9fGcq/o6P0djny2JW6WivTVVw='; object-src 'self'"
}