Examine source code of Kanban Board

Inspect and view changes in Kanban Board 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": "__MSG_appName__",
  "description": "__MSG_shortDesc__",
  "manifest_version": 3,
  "version": "1.0.0",
  "default_locale": "en",
  "chrome_url_overrides": {
    "newtab": "proxy-newtab.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Kanban Board"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*.ttf",
        "*.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "notifications",
    "storage",
    "alarms"
  ],
  "host_permissions": [
    "https://suggestqueries.google.com/*",
    "https://lens.google.com/*"
  ],
  "icons": {
    "128": "icon.png"
  }
}