Command Palette by Single Dispatch

Command Palette by Single Dispatch

Command palette for any website. Manage tabs and bookmarks, open links, or trigger button clicks just with your keyboard.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Command Palette by Single Dispatch",
  "version": "0.4.4",
  "manifest_version": 3,
  "description": "Command palette for any website. Manage tabs and bookmarks, open links, or trigger button clicks just with your keyboard.",
  "action": {
    "default_title": "Single Dispatch - The Command Palette for Chrome"
  },
  "icons": {
    "16": "/assets/16x16.png",
    "48": "/assets/48x48.png",
    "128": "/assets/128x128.png"
  },
  "background": {
    "service_worker": "service_worker.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/128x128.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-scripts/main.js"
      ],
      "css": [
        "content-scripts/main.54290e49.css"
      ]
    }
  ],
  "commands": {
    "activate_extension": {
      "suggested_key": {
        "default": "Ctrl+K",
        "mac": "Command+K"
      },
      "description": "Launch the command palette"
    }
  },
  "externally_connectable": {
    "matches": [
      "http://localhost:3000/*",
      "https://singledispatch.web.app/*",
      "https://singledispatch.com/*",
      "https://www.singledispatch.com/*"
    ]
  },
  "permissions": [
    "tabs",
    "search",
    "bookmarks",
    "storage"
  ]
}