Vimflowy
Vim shortcuts for Workflowy
什么是Vimflowy?
Vimflowy是由Sydney Wojnach开发的Chrome扩展程序,该扩展的主要功能是“Vim shortcuts for Workflowy”。
扩展截图
下载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 |
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" } |