Send to Todoist

Send to Todoist

Quickly create tasks in Todoist using a context menu shortcut and access keys.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Send to Todoist",
  "description": "Quickly create tasks in Todoist",
  "version": "1.11.1",
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "browser_action": {
    "browser_style": true,
    "default_title": "Send to Todoist",
    "default_popup": "popup/index.html",
    "default_icon": {
      "48": "icons/SendToTodoist.svg",
      "96": "icons/SendToTodoist.svg"
    }
  },
  "background": {
    "scripts": [
      "background_scripts/background.js"
    ]
  },
  "commands": {
    "save-page": {
      "suggested_key": {
        "default": "Ctrl+Shift+I"
      },
      "description": "Create an Inbox task for the current page"
    }
  },
  "options_ui": {
    "page": "options/index.html",
    "open_in_tab": true,
    "browser_style": true
  },
  "icons": {
    "48": "icons/SendToTodoist.svg",
    "96": "icons/SendToTodoist.svg"
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "menus",
    "notifications",
    "storage"
  ]
}