Add to Microsoft To Do

Add to Microsoft To Do

It's the easiest way to save anything from the web to your ToDo lists.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "icons": {
    "16": "icons/todo-16.png",
    "48": "icons/todo-48.png",
    "128": "icons/todo-128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "icons/todo-16.png",
      "24": "icons/todo-24.png",
      "32": "icons/todo-32.png"
    },
    "default_popup": "popup.html",
    "default_title": "__MSG_BrowserActionTitle__"
  },
  "commands": {
    "QUICK_ADD": {
      "description": "__MSG_QuickAddCommandDescription__"
    }
  },
  "permissions": [
    "identity",
    "contextMenus",
    "storage",
    "notifications",
    "activeTab",
    "tabs"
  ],
  "version": "0.20.0",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "options_page": "options.html"
}