Sidetodo

Sidetodo

A simple and elegant to-do list displayed in the Chrome side panel.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Sidetodo",
  "action": {
    "default_title": "To-do list"
  },
  "version": "1.0",
  "description": "A simple and elegant to-do list displayed in the Chrome side panel.",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "side_panel": {
    "default_path": "index.html"
  },
  "permissions": [
    "sidePanel"
  ],
  "background": {
    "service_worker": "service-worker.js"
  }
}