To Do List

To Do List

An Extension to add the tasks and delete them

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "To Do List",
  "description": "An Extension to add the tasks and delete them",
  "version": "1.0",
  "manifest_version": 3,
  "background": {
    "service_worker": "app.js"
  },
  "permissions": [
    "storage"
  ],
  "action": {
    "default_popup": "index.html",
    "default_icon": {
      "128": "/images/logo.png"
    }
  },
  "icons": {
    "128": "/images/logo.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}