Examine source code of No Empty History——更好的隐私模式

Inspect and view changes in No Empty History——更好的隐私模式 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
{
  "name": "No Empty History——更好的隐私模式",
  "description": "帮助用户更好的管理历史记录,针对特定网站自动删除历史浏览记录",
  "version": "1.0",
  "manifest_version": 3,
  "permissions": [
    "history",
    "sessions",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "lib/jquery.js",
        "content.js"
      ]
    }
  ],
  "action": {
    "default_icon": "icon.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}