{
  "manifest_version": 3,
  "name": "Flowbar",
  "version": "1.0.0",
  "description": "Fast, minimal tab, bookmark, and history navigation.",
  "permissions": [
    "tabs",
    "history",
    "bookmarks",
    "windows",
    "sessions",
    "clipboardWrite"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": ["content.css"],
      "js": ["content.js"],
      "run_at": "document_idle"
    }
  ],
  "action": {
    "default_title": "Open Flowbar",
    "default_popup": "popup.html"
  },
  "commands": {
    "open-flowbar": {
      "suggested_key": {
        "default": "Ctrl+Shift+Space",
        "mac": "Option+Space"
      },
      "description": "Open the Flowbar command palette"
    }
  }
}
