Bookmarks Quick Search

Bookmarks Quick Search

Search bookmarks quickly and easily, with a search popup, which can be opened by a click on the extension logo (or by cmd+E/ctrl+W).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Bookmarks Quick Search",
  "version": "0.0.16",
  "description": "Search bookmarks quickly and easily, with a search popup, which can be opened by a click on the extension logo (or by cmd+E/ctrl+W).",
  "permissions": [
    "bookmarks",
    "declarativeContent",
    "favicon",
    "activeTab"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "index.html",
    "default_icon": {
      "16": "images/bookmarks-searcher16.png",
      "32": "images/bookmarks-searcher32.png",
      "48": "images/bookmarks-searcher48.png",
      "128": "images/bookmarks-searcher128.png"
    }
  },
  "icons": {
    "16": "images/bookmarks-searcher16.png",
    "32": "images/bookmarks-searcher32.png",
    "48": "images/bookmarks-searcher48.png",
    "128": "images/bookmarks-searcher128.png"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+W",
        "mac": "Command+E"
      }
    }
  },
  "manifest_version": 3
}