Chrome Bookmark Search

Chrome Bookmark Search

Use [CTRL] + [L] to search your bookmarks (a version of the omnibox only suggesting bookmarks). Also used on the New Tab page.

Merlin
Additional files are visible only to premium users

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"
  }
}