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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a comprehensive suite of keyboard shortcuts to Todoist. More info: https://github.com/mgsloan/todoist-shortcuts"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Todoist Shortcuts (GMail / vim inspired) एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
}