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ファイルをダウンロード
Checkvist extended commands拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
# 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 |
Eメール | [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" ] } |