Examine source code of Assign Watch - Extension for LEB2

Inspect and view changes in Assign Watch - Extension for LEB2 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": "Assign Watch - Extension for LEB2",
  "description": "View all your LEB2 assignments in one place",
  "version": "0.2.6",
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "permissions": [
    "storage",
    "notifications",
    "alarms"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Assign Watch | Settings",
    "default_popup": "popup.html"
  },
  "options_ui": {
    "open_in_tab": true,
    "page": "options.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://app.leb2.org/*"
      ],
      "js": [
        "content-scripts/content.js"
      ]
    }
  ]
}