Eval Pineapple

Eval Pineapple

Hikaru's facial expressions replace the eval bar on lichess and chess.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Eval Pineapple",
  "version": "1.0",
  "description": "Hikaru's facial expressions replace the eval bar on lichess and chess.com",
  "author": "Patzer",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.chess.com/*"
      ],
      "js": [
        "shared.js",
        "chesscom_eval.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.lichess.org/*"
      ],
      "js": [
        "shared.js",
        "lichess_eval.js"
      ],
      "run_at": "document_end"
    }
  ]
}