Vimflowy

Vim shortcuts for Workflowy

Vimflowy क्या है?

Vimflowy Sydney Wojnach द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Vim shortcuts for Workflowy"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Vimflowy एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Vimflowy Vimflowy
ID jhoonlfajlaihdlcocigbpeacapaepng
आधिकारिक URL https://chromewebstore.google.com/detail/vimflowy/jhoonlfajlaihdlcocigbpeacapaepng
विवरण Vim shortcuts for Workflowy
फ़ाइल का आकार 54.58 KB
स्थापना संख्या 213
वर्तमान संस्करण 0.0.5.2
अंतिम अपडेट 2023-05-11
प्रकाशन तिथि 2020-06-12
रेटिंग 4.88/5 कुल 8 रेटिंग्स
डेवलपर Sydney Wojnach
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/Wojnach/vimflowy
सहायता पृष्ठ URL https://github.com/Wojnach/vimflowy/issues
समर्थित भाषाएँ 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"
}