Checkvist extended commands

Adds some more VIM oriented commands to Checkvist

Qu'est-ce que Checkvist extended commands ?

Checkvist extended commands est une extension Chrome développée par NicoSantangelo, et sa fonction principale est "Adds some more VIM oriented commands to Checkvist".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Checkvist extended commands

Téléchargez les fichiers d'extension Checkvist extended commands au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        # 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                    

Informations de Base sur l'Extension

Nom Checkvist extended commands Checkvist extended commands
ID fofahggocngkjhdjmpplnaebognbkfmo
URL Officiel https://chromewebstore.google.com/detail/checkvist-extended-comman/fofahggocngkjhdjmpplnaebognbkfmo
Description Adds some more VIM oriented commands to Checkvist
Taille du Fichier 41.83 KB
Nombre d'Installations 28
Version Actuelle 2.2.0
Dernière Mise à Jour 2017-04-24
Date de Publication 2017-04-23
Évaluation 5.00/5 Total 2 Évaluations
Développeur NicoSantangelo
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/NicoSantangelo/checkvist-extended-commands
URL de la Page d'Aide https://github.com/NicoSantangelo/checkvist-extended-commands
URL de la Page de Politique de Confidentialité https://github.com/nicosantangelo/portfolio/blob/master/PRIVACY.md
Langues Prises en Charge 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"
    ]
}