Command Palette

A command palette to navigate in Google Chrome faster.

Co to jest Command Palette?

Command Palette to rozszerzenie Chrome opracowane przez Chin Leung, a jego główną funkcją jest „A command palette to navigate in Google Chrome faster.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Command Palette

Pobierz pliki rozszerzeń Command Palette w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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).                    

Podstawowe informacje o rozszerzeniu

Nazwa Command Palette Command Palette
ID lfmfhlofoaleegdogpmknfbibciflfek
Oficjalny URL https://chromewebstore.google.com/detail/command-palette/lfmfhlofoaleegdogpmknfbibciflfek
Opis A command palette to navigate in Google Chrome faster.
Rozmiar pliku 86.21 KB
Liczba instalacji 194
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2022-08-09
Data Publikacji 2022-03-22
Ocena 4.00/5 Łącznie 6 Oceny
Deweloper Chin Leung
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://github.com/chinleung/chrome-command-palette-issues
Obsługiwane Języki 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"
    ]
}