Lichess Random Challenge

Lichess Random Challenge

Allows accepting a random (subscriber) challenge and allows deleting all challenges on Lichess.org

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Lichess Random Challenge",
  "author": "Simon Lammer, Thijs van den Hout, Connor Wardell",
  "description": "Allows accepting a random (subscriber) challenge and allows deleting all challenges on Lichess.org",
  "version": "1.4",
  "homepage_url": "https://github.com/daciteRocks/lichess-accept-random-challenge",
  "icons": {
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.lichess.org/*",
        "*://lichess.org/*"
      ],
      "js": [
        "lichessARC.js"
      ],
      "css": [
        "lichessARC.css"
      ]
    }
  ]
}