Lichess Opponent Form

Lichess Opponent Form

This extension shows live performance, legend and last 8 games of your lichess.org game opponents.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Lichess Opponent Form",
  "version": "0.2.6",
  "manifest_version": 3,
  "host_permissions": [
    "http://localhost:8080/"
  ],
  "description": "This extension shows live performance, legend and last 8 games of your lichess.org game opponents.",
  "content_scripts": [
    {
      "matches": [
        "https://lichess.org/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_title": "Lichess Opponent Form",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs"
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}