Vimflowy

Vim shortcuts for Workflowy

Qu'est-ce que Vimflowy ?

Vimflowy est une extension Chrome développée par Sydney Wojnach, et sa fonction principale est "Vim shortcuts for Workflowy".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Vimflowy

Téléchargez les fichiers d'extension Vimflowy 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

                        This extension adds (some) VIM keyboard shortcuts to Workflowy.com.

It allows you to be more efficient in your work by emphasizing a mouse free interaction and placement of hand in the home row. 

It features modal based editing in which you mainly switch between two major modes:
- normal mode: deals exclusively with editing of text and bullets.
- Insert mode: simply takes input from the user. 

These keyboard shortcuts are similar, if not identical, in their behaviour to the ones that can be found in the text editor called VIM. 

All VIM behaviours are not supported yet. New shortcuts are continously added. Please refer to the following page for the full list of the supported shortcuts: https://github.com/Wojnach/vimflowy

Please report any bugs you might find to:
https://github.com/Wojnach/vimflowy/issues                    

Informations de Base sur l'Extension

Nom Vimflowy Vimflowy
ID jhoonlfajlaihdlcocigbpeacapaepng
URL Officiel https://chromewebstore.google.com/detail/vimflowy/jhoonlfajlaihdlcocigbpeacapaepng
Description Vim shortcuts for Workflowy
Taille du Fichier 54.58 KB
Nombre d'Installations 213
Version Actuelle 0.0.5.2
Dernière Mise à Jour 2023-05-11
Date de Publication 2020-06-12
Évaluation 4.88/5 Total 8 Évaluations
Développeur Sydney Wojnach
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/Wojnach/vimflowy
URL de la Page d'Aide https://github.com/Wojnach/vimflowy/issues
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Vimflowy",
    "short_name": "Vimflowy",
    "description": "Vim shortcuts for Workflowy",
    "version": "0.0.5.2",
    "manifest_version": 2,
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/workflowy.com\/*",
                "https:\/\/*.workflowy.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "contentscript_start.js"
            ]
        },
        {
            "matches": [
                "https:\/\/workflowy.com\/*",
                "https:\/\/*.workflowy.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "contentscript_idle.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "state.js",
        "TimeTagCounter.js",
        "easyMotion.js",
        "cursorMovement.js",
        "vimflowyFunctionLibrary.js",
        "keybindings.js",
        "transparentKeybindings.js",
        "vimflowy.js",
        "options.js"
    ],
    "permissions": [
        "https:\/\/workflowy.com\/*",
        "https:\/\/*.workflowy.com\/*",
        "storage"
    ],
    "options_page": "options.html"
}