Send to Todoist

Send to Todoist

Quickly create tasks in Todoist

Merlin
Additional files are visible only to premium users

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"
  ]
}