Todoist Shortcuts (GMail / vim inspired)

Adds a comprehensive suite of keyboard shortcuts to Todoist. More info: https://github.com/mgsloan/todoist-shortcuts

Todoist Shortcuts (GMail / vim inspired) là gì?

Todoist Shortcuts (GMail / vim inspired) là một tiện ích mở rộng Chrome được phát triển bởi mgsloan, và tính năng chính của nó là "Adds a comprehensive suite of keyboard shortcuts to Todoist. More info: https://github.com/mgsloan/todoist-shortcuts".

Ả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 Todoist Shortcuts (GMail / vim inspired)

Tải xuống các tệp mở rộng Todoist Shortcuts (GMail / vim inspired) 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

                        This extension adds a bunch of keybindings for Todoist.  In particular, it adds a cursor in the task view which can be moved via the arrow keys or j / k / h / l (vim style keys).  Many of the keybindings are inspired by gmail's keyboard shortcuts, so those that are familiar with those will find it very easy to get used to it.

Currently it provides keybindings for most non-premium features you might want to use, including: task completion, archival, deletion, setting priority, setting project, rescheduling, changing ordering, changing indent levels, and more.

If this extension is useful to you, feel free to show your appreciation at https://www.buymeacoffee.com/mgsloan                    

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

Tên Todoist Shortcuts (GMail / vim inspired) Todoist Shortcuts (GMail / vim inspired)
ID dehmghpdcahlffompjagejmgbcfahndp
URL Chính Thức https://chromewebstore.google.com/detail/todoist-shortcuts-gmail-v/dehmghpdcahlffompjagejmgbcfahndp
Mô tả Adds a comprehensive suite of keyboard shortcuts to Todoist. More info: https://github.com/mgsloan/todoist-shortcuts
Kích Thước Tệp 63.67 KB
Số Lần Cài Đặt 2,200
Phiên Bản Hiện Tại 194
Cập Nhật Lần Cuối 2024-01-17
Ngày Phát Hành 2020-07-01
Đánh Giá 4.94/5 Tổng số 35 Đánh Giá
Nhà Phát Triển mgsloan
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/mgsloan/todoist-shortcuts
URL Trang Trợ Giúp https://github.com/mgsloan/todoist-shortcuts/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Todoist Shortcuts (GMail \/ vim inspired)",
    "short_name": "Todoist Keys",
    "author": "Michael Sloan",
    "description": "Adds a comprehensive suite of keyboard shortcuts to Todoist. More info: https:\/\/github.com\/mgsloan\/todoist-shortcuts",
    "version": "194",
    "homepage_url": "https:\/\/github.com\/mgsloan\/todoist-shortcuts",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/todoist.com\/app*",
                "https:\/\/*.todoist.com\/app*"
            ],
            "js": [
                "common.js",
                "inject.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "mousetrap.js",
                "todoist-shortcuts.js",
                "options-page.html"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "icons": {
        "128": "icon128.png"
    },
    "action": {
        "default_icon": {
            "128": "icon128.png"
        }
    },
    "options_ui": {
        "page": "options-page.html",
        "open_in_tab": true
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "{2ff71f49-5a35-4396-89e3-7913a0d12247}",
            "strict_min_version": "109.0"
        }
    },
    "content_security_policy": {
        "script-src": "'self'"
    },
    "manifest_version": 3
}