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 擴展基本資訊
| 名稱 | |
| ID | fofahggocngkjhdjmpplnaebognbkfmo |
| 官方網址 | 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"
]
} | |