Command Palette

Speed up your productivity without having to learn keyboard shortcuts.

Hvad er Command Palette?

Command Palette er en Chrome-udvidelse udviklet af athal7, og dens hovedfunktion er "Speed up your productivity without having to learn keyboard shortcuts.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Command Palette-udvidelses-CRX-fil

Download Command Palette-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Command Palette Command Palette
ID cpnjadnfdpmdfplhnfjbgngcokgmkmpd
Officiel URL https://chromewebstore.google.com/detail/command-palette/cpnjadnfdpmdfplhnfjbgngcokgmkmpd
Beskrivelse Speed up your productivity without having to learn keyboard shortcuts.
Filstørrelse 105 KB
Antal Installationer 31
Nuværende Version 0.3.0
Senest Opdateret 2020-07-25
Udgivelsesdato 2020-07-24
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler athal7
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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
}