Command Palette
A command palette to navigate in Google Chrome faster.
What is Command Palette?
Command Palette is a Chrome extension developed by Chin Leung, and its main feature is "A command palette to navigate in Google Chrome faster.".
Extension Screenshots
Download Command Palette Extension CRX File
Download Command Palette extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
An extension that allows you to quickly switch between active tabs, open new tabs, execute commands and more. Open the command palette by pressing CTRL/COMMAND + SHIFT + K at anytime. The shortcut is editable in the Chrome's shortcuts settings (chrome://extensions/shortcuts).
Extension Basic Information
Name | Command Palette |
ID | lfmfhlofoaleegdogpmknfbibciflfek |
Official URL | https://chromewebstore.google.com/detail/command-palette/lfmfhlofoaleegdogpmknfbibciflfek |
Description | A command palette to navigate in Google Chrome faster. |
File Size | 86.21 KB |
Installation Count | 194 |
Current Version | 1.0.1 |
Last Updated | 2022-08-09 |
Publish Date | 2022-03-22 |
Rating | 4.00/5 Total 6 Ratings |
Developer | Chin Leung |
[email protected] | |
Payment Type | free |
Help Page URL | https://github.com/chinleung/chrome-command-palette-issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Command Palette", "description": "A command palette to navigate in Google Chrome faster.", "version": "1.0.1", "manifest_version": 3, "background": { "service_worker": "background.js" }, "commands": { "toggle-palette": { "suggested_key": { "default": "Ctrl+Shift+K" }, "description": "Toggle the command palette." } }, "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "permissions": [ "activeTab", "scripting", "search", "tabs" ] } |