Examine source code of Notify Task

Inspect and view changes in Notify Task 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": "Notify Task",
  "version": "1.0.5",
  "description": "Manage, update, and remember tasks.",
  "icons": {
    "128": "images/icon.png"
  },
  "action": {
    "default_icon": {
      "128": "images/icon.png"
    },
    "default_title": "Click me",
    "default_popup": "html/popup.html"
  },
  "permissions": [
    "storage",
    "alarms",
    "notifications"
  ],
  "background": {
    "service_worker": "js/background.js"
  }
}