Examine source code of Chrome 书签搜索 | Chrome Bookmarks Search

Inspect and view changes in Chrome 书签搜索 | Chrome Bookmarks Search 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",
  "manifest_version": 3,
  "name": "Chrome 书签搜索 | Chrome Bookmarks Search",
  "description": "快速搜索Chrome书签、标签页、历史记录和下载内容",
  "version": "1.3.3",
  "permissions": [
    "bookmarks",
    "tabs",
    "history",
    "downloads",
    "storage",
    "favicon"
  ],
  "host_permissions": [
    "https://www.google.com/s2/*"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icons/icon16.png",
      "48": "icons/icon48.png",
      "128": "icons/icon128.png"
    }
  },
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+B",
        "mac": "Alt+B"
      },
      "description": "打开搜索窗口"
    }
  }
}