Any.do

Any.do

Any.do helps you remember everything you have to do.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Any.do",
  "version": "4.1.2.0",
  "version_name": "4.1.2",
  "default_locale": "en",
  "description": "__MSG_extension_description__",
  "icons": {
    "16": "assets/icon_16.png",
    "48": "assets/icon_48.png",
    "128": "assets/icon_128.png"
  },
  "host_permissions": [
    "https://www.any.do/"
  ],
  "permissions": [
    "identity",
    "scripting",
    "activeTab",
    "contextMenus",
    "storage"
  ],
  "optional_permissions": [
    "cookies"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "dist/add-task/index.html",
        "dist/popup/index.html",
        "dist/assets/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "dist/background/index.mjs"
  },
  "action": {
    "default_icon": {
      "16": "assets/icon_16.png",
      "48": "assets/icon_48.png",
      "128": "assets/icon_128.png"
    },
    "default_title": "Open Any.do",
    "default_popup": "dist/popup/index.html"
  }
}