Examine source code of Wiggle Teams

Inspect and view changes in Wiggle Teams 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": "Wiggle Teams",
  "version": "1.5",
  "description": "Ensures your Microsoft Teams status stays active by simulating random user activity.",
  "permissions": [
    "scripting",
    "tabs",
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.teams.microsoft.com/*",
        "*://teams.microsoft.com/*",
        "*://*.teams.live.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "host_permissions": [
    "*://*.teams.microsoft.com/*",
    "*://teams.microsoft.com/*",
    "*://*.teams.live.com/*"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_title": "Wiggle Teams!",
    "default_icon": {
      "128": "available.png"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "content.js"
      ],
      "matches": [
        "*://*.teams.microsoft.com/*",
        "*://teams.microsoft.com/*",
        "*://*.teams.live.com/*"
      ]
    }
  ]
}