Vimflowy

Vim shortcuts for Workflowy

Vimflowyとは何ですか?

VimflowyはSydney Wojnachによって開発されたChromeの拡張機能で、その主な機能は「Vim shortcuts for Workflowy」です。

拡張機能のスクリーンショット

screenshot

Vimflowy拡張機能のCRXファイルをダウンロード

Vimflowy拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
}