Chess Tier

Chess Tier

Replaces your chess.com rating with a Chess Tier

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Chess Tier",
  "short_name": "Chess Tier",
  "manifest_version": 3,
  "version": "1.2",
  "description": "Replaces your chess.com rating with a Chess Tier",
  "author": "Tristrum Tuttle",
  "icons": {
    "16": "/img/chesstier16.png",
    "48": "/img/chesstier48.png",
    "128": "/img/chesstier128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.chess.com/*"
      ],
      "all_frames": true,
      "js": [
        "main_script.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage"
  ]
}