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
官方網址 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"
}