Checkvist extended commands
Adds some more VIM oriented commands to Checkvist
Checkvist extended commands란 무엇입니까?
Checkvist extended commands은(는) NicoSantangelo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds some more VIM oriented commands to Checkvist"입니다.
확장 프로그램 스크린샷
Checkvist extended commands 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
# What It adds four new commands to Checkvist (https://checkvist.com) Commands: l - Expand node (same as `→`) L - Focus the list item (same as `Shift →`) h - Collapse node (same as `←`) H - Un-focus the list item (same as `Shift ←`) o - Add below (same as `enter`) O - Add above (same as `alt+enter`) G - Go to the last item in the tree (same as `End` or `Fn+Down`) alt+g alt+g - Go to the first item in the tree (same as `Home` or `Fn+Up`) meta+j - macOS users: Move list items down (same as `⌘ ↓`) meta+k - macOS users: Move list items up (same as `⌘ ↑`) You can find the code at https://github.com/NicoSantangelo/checkvist-extended-commands
확장 프로그램 기본 정보
이름 | Checkvist extended commands |
ID | fofahggocngkjhdjmpplnaebognbkfmo |
공식 URL | https://chromewebstore.google.com/detail/checkvist-extended-comman/fofahggocngkjhdjmpplnaebognbkfmo |
설명 | Adds some more VIM oriented commands to Checkvist |
파일 크기 | 41.83 KB |
설치 횟수 | 28 |
현재 버전 | 2.2.0 |
최근 업데이트 | 2017-04-24 |
출시 날짜 | 2017-04-23 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | NicoSantangelo |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/NicoSantangelo/checkvist-extended-commands |
도움말 페이지 URL | https://github.com/NicoSantangelo/checkvist-extended-commands |
개인정보 보호 정책 페이지 URL | https://github.com/nicosantangelo/portfolio/blob/master/PRIVACY.md |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Checkvist extended commands", "description": "Adds some more VIM oriented commands to Checkvist", "short_name": "Checkvist commands", "version": "2.2.0", "icons": { "48": "icons\/48.png", "128": "icons\/128.png" }, "content_scripts": [ { "matches": [ "https:\/\/checkvist.com\/*" ], "js": [ "content.js" ], "run_at": "document_idle" } ], "web_accessible_resources": [ "commands.js" ] } |