Send to Todoist

Quickly create tasks in Todoist

Τι είναι το Send to Todoist;

Το Send to Todoist είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Hipsterbrown, και η κύρια λειτουργία του είναι "Quickly create tasks in Todoist".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Send to Todoist

Λήψη αρχείων επέκτασης Send to Todoist σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Send to Todoist helps you quickly add tasks to your projects

The official Todoist extension is great for managing your projects and completing tasks, however it is missing useful shortcuts for adding tasks quickly to your various projects.

The API key stays stored in secure browser storage and never leaves your computer. You can find this key here: https://todoist.com/prefs/integrations

This extension adds context menus that appear for highlighted text, links, or just right-clicking on the page.

- Highlighted text will be used as the title for the created task.
- Link text will be used as the content, with the URL for the link appended to the end of the task name.
- The page title will be used as the task title, with the page URL used to make that title a link.

If you have multiple projects, you can use the shortcut keys (numbers next to the project name) to quickly choose a project and due date! See the screenshots for examples.

To quickly add a page as a task in your Inbox, use the keyboard shortcut: Cmd+Shift+I (Ctrl+Shift+I on Linux and Windows)                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Send to Todoist Send to Todoist
ID maidnngmledliojijemaeghecjhhndaf
Επίσημο URL https://chrome.google.com/webstore/detail/maidnngmledliojijemaeghecjhhndaf
Περιγραφή Quickly create tasks in Todoist
Μέγεθος Αρχείου 93.17 KB
Αριθμός Εγκαταστάσεων 68
Τρέχουσα Έκδοση 1.10.1
Τελευταία Ενημέρωση 2021-04-26
Ημερομηνία Δημοσίευσης 2021-02-16
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Hipsterbrown
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/HipsterBrown/send-to-todoist
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/HipsterBrown/send-to-todoist
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Send to Todoist",
    "description": "Quickly create tasks in Todoist",
    "version": "1.10.1",
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "browser_action": {
        "browser_style": true,
        "default_title": "Send to Todoist",
        "default_popup": "build\/popup\/index.html",
        "default_icon": {
            "48": "icons\/SendToTodoist.png",
            "96": "icons\/[email protected]"
        }
    },
    "background": {
        "scripts": [
            "build\/background\/index.js"
        ]
    },
    "commands": {
        "save-page": {
            "suggested_key": {
                "default": "Ctrl+Shift+I"
            },
            "description": "Create an Inbox task for the current page"
        }
    },
    "options_ui": {
        "page": "build\/options\/index.html",
        "open_in_tab": true,
        "browser_style": true
    },
    "icons": {
        "48": "icons\/SendToTodoist.png",
        "96": "icons\/[email protected]"
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "menus",
        "notifications",
        "storage"
    ]
}