Examine source code of Time Tasker

Inspect and view changes in Time Tasker 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",
  "name": "Time Tasker",
  "short_name": "TimeTasker",
  "author": "CameronsDigitalHub",
  "version": "2.0.1",
  "manifest_version": 3,
  "description": "Change the duration length of Google tasks on Google Calendar",
  "action": {
    "default_icon": "icons/Logo48.png",
    "default_popup": "index.html"
  },
  "icons": {
    "16": "icons/Logo48.png",
    "48": "icons/Logo48.png",
    "128": "icons/Logo128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://calendar.google.com/calendar/*"
      ],
      "js": [
        "content-min-v2.js"
      ]
    }
  ]
}