Chess.com rating hider

Chess.com rating hider

Hides enemy player rating / ELO on chess.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": " Chess.com rating hider",
  "version": "1.0.0",
  "manifest_version": 3,
  "description": "Hides enemy player rating / ELO on chess.com",
  "content_scripts": [
    {
      "js": [
        "init.js"
      ],
      "css": [
        "styles.css"
      ],
      "matches": [
        "*://www.chess.com/game/live/*",
        "*://www.chess.com/play/*"
      ]
    }
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}