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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}