Checkvist extended commands

Adds some more VIM oriented commands to Checkvist

What is Checkvist extended commands?

Checkvist extended commands is a Chrome extension developed by NicoSantangelo, and its main feature is "Adds some more VIM oriented commands to Checkvist".

Extension Screenshots

screenshot

Download Checkvist extended commands Extension CRX File

Download Checkvist extended commands extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        # 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                    

Extension Basic Information

Name Checkvist extended commands Checkvist extended commands
ID fofahggocngkjhdjmpplnaebognbkfmo
Official URL https://chromewebstore.google.com/detail/checkvist-extended-comman/fofahggocngkjhdjmpplnaebognbkfmo
Description Adds some more VIM oriented commands to Checkvist
File Size 41.83 KB
Installation Count 28
Current Version 2.2.0
Last Updated 2017-04-24
Publish Date 2017-04-23
Rating 5.00/5 Total 2 Ratings
Developer NicoSantangelo
Email [email protected]
Payment Type free
Extension Website https://github.com/NicoSantangelo/checkvist-extended-commands
Help Page URL https://github.com/NicoSantangelo/checkvist-extended-commands
Privacy Policy Page URL https://github.com/nicosantangelo/portfolio/blob/master/PRIVACY.md
Supported Languages 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"
    ]
}