Taskade - Task & Todo List

Taskade - Task & Todo List

Taskade is a simple todo and task manager to make all things done in an organized way.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Taskade - Task & Todo List",
  "version": "0.0.1",
  "description": "Taskade is a simple todo and task manager to make all things done in an organized way.",
  "icons": {
    "16": "./img/16.png",
    "32": "./img/32.png",
    "48": "./img/48.png",
    "128": "./img/128.png"
  },
  "action": {
    "default_icon": "./img/128.png",
    "default_title": "Taskade - Task & Todo List",
    "default_popup": "popup/index.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "content/index.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "storage",
    "unlimitedStorage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content/index.js",
        "content/index.css"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ]
}