Checkvist extended commands

Adds some more VIM oriented commands to Checkvist

Checkvist extended commands là gì?

Checkvist extended commands là một tiện ích mở rộng Chrome được phát triển bởi NicoSantangelo, và tính năng chính của nó là "Adds some more VIM oriented commands to Checkvist".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Checkvist extended commands

Tải xuống các tệp mở rộng Checkvist extended commands dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        # 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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Checkvist extended commands Checkvist extended commands
ID fofahggocngkjhdjmpplnaebognbkfmo
URL Chính Thức https://chromewebstore.google.com/detail/checkvist-extended-comman/fofahggocngkjhdjmpplnaebognbkfmo
Mô tả Adds some more VIM oriented commands to Checkvist
Kích Thước Tệp 41.83 KB
Số Lần Cài Đặt 28
Phiên Bản Hiện Tại 2.2.0
Cập Nhật Lần Cuối 2017-04-24
Ngày Phát Hành 2017-04-23
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển NicoSantangelo
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/NicoSantangelo/checkvist-extended-commands
URL Trang Trợ Giúp https://github.com/NicoSantangelo/checkvist-extended-commands
URL Trang Chính Sách Bảo Mật https://github.com/nicosantangelo/portfolio/blob/master/PRIVACY.md
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}