Searchable Bookmarks Manager

Searchable Bookmarks Manager

Easily search through your bookmarks, straight from your browser's address bar!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Searchable Bookmarks Manager",
  "description": "Easily search through your bookmarks, straight from your browser's address bar!",
  "version": "4.1.1",
  "short_name": "SBM",
  "commands": {
    "_execute_browser_action": {
      "description": "Searchable Bookmarks Manager"
    }
  },
  "action": {
    "default_popup": "index.html"
  },
  "background": {
    "service_worker": "background/index.js",
    "type": "module"
  },
  "icons": {
    "16": "/images/icon-16-blue.png",
    "32": "/images/icon-32-blue.png",
    "48": "/images/icon-48-blue.png",
    "128": "/images/icon-128.png"
  },
  "permissions": [
    "activeTab",
    "bookmarks",
    "storage",
    "favicon",
    "tabGroups",
    "alarms"
  ]
}