Examine source code of Chess Opponent Info

Inspect and view changes in Chess Opponent Info 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": "Chess Opponent Info",
  "version": "0.0.1.0",
  "description": "Adds info to current chess.com opponent.",
  "icons": {
    "16": "assets/icon16.png",
    "32": "assets/icon32.png",
    "48": "assets/icon48.png",
    "128": "assets/icon128.png"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "https://*.chess.com/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.chess.com/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/eloSign.png",
        "assets/timeSign.png",
        "assets/winrateSign.png",
        "assets/totalGamesSign.png",
        "assets/eloSignLight.png",
        "assets/timeSignLight.png",
        "assets/winrateSignLight.png",
        "assets/totalGamesSignLight.png"
      ],
      "matches": [
        "https://*.chess.com/*"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "assets/ext-icon.png",
      "24": "assets/ext-icon.png",
      "32": "assets/ext-icon.png"
    },
    "default_title": "Chess Opponent Info",
    "default_popup": "popup.html"
  },
  "manifest_version": 3
}