Examine source code of TaskChecker Reminder

Inspect and view changes in TaskChecker Reminder 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": "TaskChecker Reminder",
  "version": "1.0",
  "description": "A productivity tool for managing tasks, with features for easy addition, editing, and timely reminders to keep you organized.",
  "action": {
    "default_popup": "popup/popup.html",
    "default_icon": "images/128.png"
  },
  "icons": {
    "16": "images/16.png",
    "32": "images/32.png",
    "48": "images/48.png",
    "64": "images/64.png",
    "96": "images/96.png",
    "128": "images/128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "notifications",
    "alarms"
  ]
}