Vimflowy
Vim shortcuts for Workflowy
Vimflowy란 무엇입니까?
Vimflowy은(는) Sydney Wojnach에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Vim shortcuts for Workflowy"입니다.
확장 프로그램 스크린샷
Vimflowy 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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" } |