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)?

Todoist Shortcuts (GMail / vim inspired)是由mgsloan开发的Chrome扩展程序,该扩展的主要功能是“Adds a comprehensive suite of keyboard shortcuts to Todoist. More info: https://github.com/mgsloan/todoist-shortcuts”。

扩展截图

screenshot

下载Todoist Shortcuts (GMail / vim inspired)扩展crx文件

下载Todoist Shortcuts (GMail / vim inspired)扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Todoist Shortcuts (GMail / vim inspired) Todoist Shortcuts (GMail / vim inspired)
ID dehmghpdcahlffompjagejmgbcfahndp
官方URL https://chromewebstore.google.com/detail/todoist-shortcuts-gmail-v/dehmghpdcahlffompjagejmgbcfahndp
简介 Adds a comprehensive suite of keyboard shortcuts to Todoist. More info: https://github.com/mgsloan/todoist-shortcuts
文件大小 63.67 KB
安装次数 2,200
当前版本 194
更新时间 2024-01-17
上架时间 2020-07-01
评分 4.94/5 共35次评分
开发者 mgsloan
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/mgsloan/todoist-shortcuts
帮助页面URL https://github.com/mgsloan/todoist-shortcuts/issues
支持的语言 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
}