Checkvist extended commands

Adds some more VIM oriented commands to Checkvist

Was ist Checkvist extended commands?

Checkvist extended commands ist eine Chrome-Erweiterung, die von NicoSantangelo entwickelt wurde, und ihr Hauptmerkmal ist "Adds some more VIM oriented commands to Checkvist".

Erweiterungsscreenshots

screenshot

Checkvist extended commands-Erweiterungs-CRX-Datei herunterladen

Laden Sie Checkvist extended commands-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        # 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                    

Grundlegende Informationen zur Erweiterung

Name Checkvist extended commands Checkvist extended commands
ID fofahggocngkjhdjmpplnaebognbkfmo
Offizielle URL https://chromewebstore.google.com/detail/checkvist-extended-comman/fofahggocngkjhdjmpplnaebognbkfmo
Beschreibung Adds some more VIM oriented commands to Checkvist
Dateigröße 41.83 KB
Installationsanzahl 28
Aktuelle Version 2.2.0
Letztes Update 2017-04-24
Veröffentlichungsdatum 2017-04-23
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler NicoSantangelo
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/NicoSantangelo/checkvist-extended-commands
Hilfeseite URL https://github.com/NicoSantangelo/checkvist-extended-commands
URL der Datenschutzrichtlinien-Seite https://github.com/nicosantangelo/portfolio/blob/master/PRIVACY.md
Unterstützte Sprachen 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"
    ]
}