Examine source code of Chrome Bookmark Search

Inspect and view changes in Chrome Bookmark 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",
  "name": "Chrome Bookmark Search",
  "version": "1.2.0",
  "description": "Use [CTRL] + [L] to search your bookmarks (a version of the omnibox only suggesting bookmarks). Also used on the New Tab page.",
  "manifest_version": 2,
  "permissions": [
    "bookmarks"
  ],
  "background": {
    "scripts": [
      "background-script.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "chrome_url_overrides": {
    "newtab": "load-new-tab.html"
  },
  "icons": {
    "16": "icon-16-16.png",
    "48": "icon-48-48.png",
    "128": "icon-128-128.png"
  }
}