Command Palette

A command palette to navigate in Google Chrome faster.

Что такое Command Palette?

Command Palette - это расширение Chrome, разработанное Chin Leung, и его основная функция - "A command palette to navigate in Google Chrome faster.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Command Palette

Скачайте файлы расширений Command Palette в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

Основная информация о расширении

Название Command Palette Command Palette
ID lfmfhlofoaleegdogpmknfbibciflfek
Официальный URL https://chromewebstore.google.com/detail/command-palette/lfmfhlofoaleegdogpmknfbibciflfek
Описание A command palette to navigate in Google Chrome faster.
Размер файла 86.21 KB
Количество установок 194
Текущая Версия 1.0.1
Последнее Обновление 2022-08-09
Дата публикации 2022-03-22
Рейтинг 4.00/5 Всего 6 оценок
Разработчик Chin Leung
Электронная почта [email protected]
Тип оплаты free
URL страницы помощи https://github.com/chinleung/chrome-command-palette-issues
Поддерживаемые языки 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"
    ]
}