Examine source code of highlight-sidepanel

Inspect and view changes in highlight-sidepanel source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "highlight-sidepanel",
  "version": "0.1.0",
  "description": "页面划线高亮导入侧栏笔记,Alt+N一键开启侧栏笔记记录和管理",
  "action": {
    "default_icon": {
      "16": "img/icon16.png",
      "48": "img/icon48.png",
      "128": "img/icon128.png"
    },
    "default_popup": "src/popup/index.html"
  },
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "src/content-scripts/main.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "img/*"
      ]
    },
    {
      "resources": [
        "assets/src/content-scripts/main-CIfoXgKC.js",
        "assets/eventType-B50xgHbq.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "use_dynamic_url": true
    }
  ],
  "background": {
    "service_worker": "serviceWorker.js",
    "type": "module"
  },
  "side_panel": {
    "default_path": "side-pannel/dist/index.html"
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "activeTab",
    "tabs",
    "sidePanel"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}