Examine source code of Evivve - The Leadership Game

Inspect and view changes in Evivve - The Leadership Game 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": "Evivve - The Leadership Game",
  "version": "2.0",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Evivve - The Leadership Game",
    "default_icon": "icon.png"
  },
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "permissions": [],
  "content_scripts": [
    {
      "matches": [
        "https://*.evivve.com/*"
      ],
      "js": [
        "content-scripts.js"
      ]
    }
  ]
}