Checkvist extended commands

Adds some more VIM oriented commands to Checkvist

Co je Checkvist extended commands?

Checkvist extended commands je rozšíření Chrome vyvinuté NicoSantangelo, a jeho hlavní funkcí je „Adds some more VIM oriented commands to Checkvist“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Checkvist extended commands

Stáhněte si soubory rozšíření Checkvist extended commands ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        # 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                    

Základní Informace o Rozšíření

Název Checkvist extended commands Checkvist extended commands
ID fofahggocngkjhdjmpplnaebognbkfmo
Oficiální URL https://chromewebstore.google.com/detail/checkvist-extended-comman/fofahggocngkjhdjmpplnaebognbkfmo
Popis Adds some more VIM oriented commands to Checkvist
Velikost souboru 41.83 KB
Počet instalací 28
Aktuální Verze 2.2.0
Poslední Aktualizace 2017-04-24
Datum Vydání 2017-04-23
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář NicoSantangelo
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/NicoSantangelo/checkvist-extended-commands
URL Stránky Nápovědy https://github.com/NicoSantangelo/checkvist-extended-commands
URL Stránky Zásad Ochrany Soukromí https://github.com/nicosantangelo/portfolio/blob/master/PRIVACY.md
Podporované Jazyky 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"
    ]
}