Checkvist extended commands

Adds some more VIM oriented commands to Checkvist

Что такое Checkvist extended commands?

Checkvist extended commands - это расширение Chrome, разработанное NicoSantangelo, и его основная функция - "Adds some more VIM oriented commands to Checkvist".

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

screenshot

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

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

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

                        # What

It adds four new commands to Checkvist (https://checkvist.com)

Commands:

l - Expand node (same as `→`)
L - Focus the list item (same as `Shift →`)
h - Collapse node (same as `←`)
H - Un-focus the list item (same as `Shift ←`)
o - Add below (same as `enter`)
O - Add above (same as `alt+enter`)
G - Go to the last item in the tree (same as `End` or `Fn+Down`)
alt+g alt+g  - Go to the first item in the tree (same as `Home` or `Fn+Up`)
meta+j  - macOS users: Move list items down (same as `⌘ ↓`)
meta+k  - macOS users: Move list items up (same as `⌘ ↑`)

You can find the code at https://github.com/NicoSantangelo/checkvist-extended-commands                    

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

Название Checkvist extended commands Checkvist extended commands
ID fofahggocngkjhdjmpplnaebognbkfmo
Официальный URL https://chromewebstore.google.com/detail/checkvist-extended-comman/fofahggocngkjhdjmpplnaebognbkfmo
Описание Adds some more VIM oriented commands to Checkvist
Размер файла 41.83 KB
Количество установок 28
Текущая Версия 2.2.0
Последнее Обновление 2017-04-24
Дата публикации 2017-04-23
Рейтинг 5.00/5 Всего 2 оценок
Разработчик NicoSantangelo
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/NicoSantangelo/checkvist-extended-commands
URL страницы помощи https://github.com/NicoSantangelo/checkvist-extended-commands
URL страницы политики конфиденциальности https://github.com/nicosantangelo/portfolio/blob/master/PRIVACY.md
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Checkvist extended commands",
    "description": "Adds some more VIM oriented commands to Checkvist",
    "short_name": "Checkvist commands",
    "version": "2.2.0",
    "icons": {
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/checkvist.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "commands.js"
    ]
}