Microsoft To Do Browser Extension

Microsoft To Do Browser Extension

An open source, free browser extension for Microsoft To Do that keeps you focused from work to play.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.4.0",
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "default_locale": "en",
  "permissions": [
    "identity",
    "tabs",
    "notifications",
    "storage"
  ],
  "options_page": "options.html",
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "./icons/todo-16.png",
    "24": "./icons/todo-24.png",
    "32": "./icons/todo-32.png",
    "48": "./icons/todo-48.png",
    "128": "./icons/todo-128.png"
  }
}