Command Palette
A command palette to navigate in Google Chrome faster.
O que é Command Palette?
Command Palette é uma extensão do Chrome desenvolvida por Chin Leung, e sua principal característica é "A command palette to navigate in Google Chrome faster.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Command Palette
Baixe arquivos de extensão Command Palette no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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).
Informações Básicas da Extensão
Nome | Command Palette |
ID | lfmfhlofoaleegdogpmknfbibciflfek |
URL Oficial | https://chromewebstore.google.com/detail/command-palette/lfmfhlofoaleegdogpmknfbibciflfek |
Descrição | A command palette to navigate in Google Chrome faster. |
Tamanho do Arquivo | 86.21 KB |
Contagem de Instalações | 194 |
Versão Atual | 1.0.1 |
Última Atualização | 2022-08-09 |
Data de Publicação | 2022-03-22 |
Classificação | 4.00/5 Total de 6 Avaliações |
Desenvolvedor | Chin Leung |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Ajuda | https://github.com/chinleung/chrome-command-palette-issues |
Idiomas Suportados | 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" ] } |