Omnibox Bookmark

Omnibox Bookmark

Search your bookmarks and open them right from the omnibox!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Omnibox Bookmark",
  "description": "Search your bookmarks and open them right from the omnibox!",
  "version": "0.3",
  "background": {
    "scripts": [
      "Bookmarksearch.js"
    ]
  },
  "commands": {
    "bookmark-active-page": {
      "suggested_key": {
        "windows": "Ctrl+B",
        "mac": "Command+B",
        "chromeos": "Ctrl+B",
        "linux": "Ctrl+B"
      },
      "description": "Bookmark Active page"
    },
    "Remove-bookmark-of-Active-page": {
      "suggested_key": {
        "windows": "Ctrl+X",
        "mac": "Command+X",
        "chromeos": "Ctrl+X",
        "linux": "Ctrl+X"
      },
      "description": "Remove Bookmark from Active page"
    }
  },
  "permissions": [
    "tabs",
    "bookmarks",
    "notifications"
  ],
  "icons": {
    "16": "icon16trans.png",
    "19": "icon19trans.png",
    "38": "icon38trans.png",
    "48": "icon48trans.png",
    "128": "icon128trans.png"
  },
  "omnibox": {
    "keyword": "bkmrk"
  }
}