Examine source code of Taskade - Task & Todo List

Inspect and view changes in Taskade - Task & Todo List source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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://*/*"
      ]
    }
  ]
}