Todoist Shortcuts (GMail / vim inspired)

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

Qu'est-ce que Todoist Shortcuts (GMail / vim inspired) ?

Todoist Shortcuts (GMail / vim inspired) est une extension Chrome développée par mgsloan, et sa fonction principale est "Adds a comprehensive suite of keyboard shortcuts to Todoist. More info: https://github.com/mgsloan/todoist-shortcuts".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Todoist Shortcuts (GMail / vim inspired)

Téléchargez les fichiers d'extension Todoist Shortcuts (GMail / vim inspired) au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Todoist Shortcuts (GMail / vim inspired) Todoist Shortcuts (GMail / vim inspired)
ID dehmghpdcahlffompjagejmgbcfahndp
URL Officiel https://chromewebstore.google.com/detail/todoist-shortcuts-gmail-v/dehmghpdcahlffompjagejmgbcfahndp
Description Adds a comprehensive suite of keyboard shortcuts to Todoist. More info: https://github.com/mgsloan/todoist-shortcuts
Taille du Fichier 63.67 KB
Nombre d'Installations 2,200
Version Actuelle 194
Dernière Mise à Jour 2024-01-17
Date de Publication 2020-07-01
Évaluation 4.94/5 Total 35 Évaluations
Développeur mgsloan
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/mgsloan/todoist-shortcuts
URL de la Page d'Aide https://github.com/mgsloan/todoist-shortcuts/issues
Langues Prises en Charge 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
}