Smart Berserk | Lichess

Smart Berserk | Lichess

Tells you when to berserk in a lichess arena tournament game using the power of statistics!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Smart Berserk | Lichess",
  "version": "1.0.0",
  "description": "Tells you when to berserk in a lichess arena tournament game using the power of statistics!",
  "icons": {
    "128": "img/icon.png"
  },
  "author": "Andrew Yatzkan",
  "content_scripts": [
    {
      "matches": [
        "https://lichess.org/*"
      ],
      "js": [
        "particles.js",
        "content.js"
      ],
      "css": [
        "gold-icon.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.png",
        "*.json"
      ],
      "matches": [
        "https://lichess.org/*"
      ]
    }
  ]
}