VIM typer
Use VIM keys in browser
VIM typer란 무엇입니까?
VIM typer은(는) sculpt0r에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Use VIM keys in browser"입니다.
확장 프로그램 스크린샷
VIM typer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension allows use vim keys for text editing. Other vim plugins allows you to navigate in browser or webpage. This extension allows you to use vim keys while typing in input fields. Enable vim keys Plugins functionality can be toggled with special key combination: - `alt` + `v` on windows / linux - `right option` + `left cmd` on macOS It is because, sometimes you may don't want to `VIM typer` interfere with other vim like plugins. Please look at the indicator (small red square in top left corner). When it becomes green: the plugin functions are available. # supported keys Currently, `vim-typer` supports: - `h`,`j`,`k`,`l` - `e` - `w` has early support - more are planned
확장 프로그램 기본 정보
이름 | VIM typer |
ID | cmepghbdejbphecnknahlhmkfjfcllki |
공식 URL | https://chromewebstore.google.com/detail/vim-typer/cmepghbdejbphecnknahlhmkfjfcllki |
설명 | Use VIM keys in browser |
파일 크기 | 5.62 KB |
설치 횟수 | 106 |
현재 버전 | 1.1.0 |
최근 업데이트 | 2023-11-03 |
출시 날짜 | 2021-06-01 |
평점 | 4.00/5 총 4 개의 평점 |
개발자 | sculpt0r |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/sculpt0r/vim-browser-extension |
도움말 페이지 URL | https://github.com/sculpt0r/vim-browser-extension/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "VIM typer", "version": "1.1.0", "description": "Use VIM keys in browser", "manifest_version": 3, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*", "file:\/\/*\/*" ], "js": [ ".\/plugin.js" ], "run_at": "document_start", "all_frames": true } ] } |