Mental Health Mode for Lichess

Mental Health Mode for Lichess

Start focus on playing chess again and let this extension remove everything that could harm the experience.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Mental Health Mode for Lichess",
  "version": "1.5",
  "description": "Start focus on playing chess again and let this extension remove everything that could harm the experience.",
  "content_scripts": [
    {
      "matches": [
        "*://*.lichess.org/*"
      ],
      "js": [
        "mental-health-mode.js"
      ]
    },
    {
      "matches": [
        "*://*.lichess.org/account/preferences/game-display"
      ],
      "js": [
        "preferences.js"
      ]
    }
  ],
  "icons": {
    "48": "icons/logo-48x48.png",
    "96": "icons/logo-96x96.png"
  }
}