Search Bookmarks, History and Tabs

Browser extension to (fuzzy) search and navigate bookmarks, history and open tabs.
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": "Search Bookmarks, History and Tabs",
  "description": "Browser extension to (fuzzy) search and navigate bookmarks, history and open tabs.",
  "homepage_url": "https://github.com/Fannon/search-bookmarks-history-and-tabs",
  "author": "Simon Heimler",
  "version": "1.10.2",
  "manifest_version": 3,
  "permissions": [
    "tabs",
    "bookmarks",
    "history",
    "storage"
  ],
  "action": {
    "default_popup": "/popup/index.html",
    "default_icon": {
      "16": "/images/logo-16.png",
      "32": "/images/logo-32.png",
      "48": "/images/logo-48.png",
      "128": "/images/logo-128.png"
    }
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+Period",
        "mac": "Command+Shift+Period"
      },
      "description": "Open search popup"
    }
  },
  "icons": {
    "16": "/images/logo-16.png",
    "32": "/images/logo-32.png",
    "48": "/images/logo-48.png",
    "128": "/images/logo-128.png"
  }
}