Chikamichi - Quickly find a page -

Chikamichi - Quickly find a page -

Command pallet for the browser. Enables fuzzy search for histories, tabs and bookmarks.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Chikamichi - Quickly find a page -",
  "version": "3.4.0",
  "description": "Command pallet for the browser. Enables fuzzy search for histories, tabs and bookmarks.",
  "action": {
    "default_icon": "./assets/icon-512.png",
    "default_popup": "./dist/popup/index.html"
  },
  "background": {
    "service_worker": "./dist/background/index.mjs"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+K",
        "mac": "Alt+K"
      }
    }
  },
  "icons": {
    "16": "./assets/icon-512.png",
    "48": "./assets/icon-512.png",
    "128": "./assets/icon-512.png"
  },
  "permissions": [
    "tabs",
    "windows",
    "history",
    "bookmarks",
    "search"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}