Examine source code of Taskify Tabs: Convert tabs into tasks

Inspect and view changes in Taskify Tabs: Convert tabs into tasks 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": "Taskify Tabs: Convert tabs into tasks",
  "version": "1.2",
  "action": {
    "default_icon": "logo.png"
  },
  "permissions": [
    "tabGroups",
    "tabs",
    "activeTab",
    "unlimitedStorage",
    "notifications",
    "contextMenus",
    "alarms",
    "bookmarks"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "lib/js/flatpickr.min.js",
        "lib/js/jquery-3.3.1.min.js",
        "lib/js/sweetalert.min.js",
        "lib/js/bootstrap.bundle.min.js",
        "new-task-modal.js",
        "task-progress.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "logo.png",
        "index.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "16": "logo.png",
    "48": "logo.png",
    "128": "icon.png"
  }
}