Checkvist extended commands

Adds some more VIM oriented commands to Checkvist

Checkvist extended commandsคืออะไร?

Checkvist extended commands เป็นส่วนขยายของ Chrome ที่พัฒนาโดย NicoSantangelo และคุณลักษณะหลักของมันคือ "Adds some more VIM oriented commands to Checkvist"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Checkvist extended commands

ดาวน์โหลดไฟล์ส่วนขยาย 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 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"
    ]
}