Examine source code of Simple Scrum Poker

Inspect and view changes in Simple Scrum Poker 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": "Simple Scrum Poker",
  "description": "Simplifies Scrum Poker, making you and your team more efficient :D",
  "version": "1.0",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "https://www.scrumpoker-online.org/en/room*"
      ],
      "js": [
        "/content_script.js"
      ]
    }
  ],
  "icons": {
    "16": "/images/simplescrumpoker16.png",
    "32": "/images/simplescrumpoker32.png",
    "48": "/images/simplescrumpoker48.png",
    "128": "/images/simplescrumpoker128.png"
  }
}