Commander

Command palette for Chrome.

Что такое Commander?

Commander - это расширение Chrome, разработанное https://ssundarraj.me, и его основная функция - "Command palette for Chrome.".

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

screenshot
screenshot
screenshot

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

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

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

                        Commander is a command palette for Chrome. You can perform all actions that you would using a mouse or keyboard shortcuts that are impossible to remember. You never have to use the mouse anymore - just use Commander. No more complicated keyboard shortcuts. Just one to open Commander. 

Now you can search Wikipedia, YouTube, IMDB, and Dictionary.com directly from Commander. You can also add custom actions (only for advanced users) - just click the options link in the extensions page!

Install, hit Ctrl+Y or Cmd+J and you're good to go!                    

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

Название Commander Commander
ID bcjcolkhdoiogoclgfaoihpaininobdj
Официальный URL https://chromewebstore.google.com/detail/commander/bcjcolkhdoiogoclgfaoihpaininobdj
Описание Command palette for Chrome.
Размер файла 11.72 KB
Количество установок 248
Текущая Версия 1.3.2
Последнее Обновление 2017-03-27
Дата публикации 2017-03-27
Рейтинг 4.92/5 Всего 12 оценок
Разработчик https://ssundarraj.me
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://ssundarraj.me/commander
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "name": "Commander",
    "description": "Command palette for Chrome.",
    "version": "1.3.2",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Commander"
    },
    "background": {
        "page": "background.html"
    },
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "storage"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Y",
                "mac": "Command+J",
                "chromeos": "Ctrl+Y",
                "linux": "Ctrl+Y"
            }
        }
    }
}