Examine source code of 简搜 - 聚合搜索

Inspect and view changes in 简搜 - 聚合搜索 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "简搜 - 聚合搜索",
  "description": "聚合搜索工具。一键切换搜索引擎",
  "manifest_version": 3,
  "version": "0.0.0.1",
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon_128.png"
  },
  "homepage_url": "https://www.9so.org/",
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "*://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "css": [
        "/static/css/index.bundle.min.css"
      ],
      "js": [
        "/static/js/index.bundle.min.js"
      ]
    },
    {
      "matches": [
        "*://*/*"
      ],
      "css": [
        "/static/css/search.bundle.min.css"
      ],
      "js": [
        "/static/js/search.bundle.min.js"
      ]
    },
    {
      "matches": [
        "https://*.9so.org/*",
        "http://localhost:3000/*"
      ],
      "css": [],
      "js": [
        "/static/js/domainregister.bundle.min.js"
      ]
    }
  ]
}