Command Palette

Speed up your productivity without having to learn keyboard shortcuts.

O que é Command Palette?

Command Palette é uma extensão do Chrome desenvolvida por athal7, e sua principal característica é "Speed up your productivity without having to learn keyboard shortcuts.".

Capturas de Tela da Extensão

screenshot
screenshot

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

                        Want to improve your productivity, but don't want to learn keyboard shortcuts? With Command Palette, you can become a power user instantly, with a single command.

Supported Websites:
- Gmail

Vote for more sites here: https://github.com/sponsors/athal7                    

Informações Básicas da Extensão

Nome Command Palette Command Palette
ID cpnjadnfdpmdfplhnfjbgngcokgmkmpd
URL Oficial https://chromewebstore.google.com/detail/command-palette/cpnjadnfdpmdfplhnfjbgngcokgmkmpd
Descrição Speed up your productivity without having to learn keyboard shortcuts.
Tamanho do Arquivo 105 KB
Contagem de Instalações 31
Versão Atual 0.3.0
Última Atualização 2020-07-25
Data de Publicação 2020-07-24
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor athal7
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Command Palette",
    "description": "Speed up your productivity without having to learn keyboard shortcuts.",
    "version": "0.3.0",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "browser_action": {
        "default_icon": {
            "16": "icon-16.png",
            "32": "icon-32.png",
            "48": "icon-48.png",
            "128": "icon-128.png"
        },
        "default_popup": "options.html"
    },
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "manifest_version": 2
}