Lichess Unrated

Lichess Unrated

Got rating anxiety? Me too. Rating systems do a great job pairing players with opponents of similar strengths but can also take…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Lichess Unrated",
  "version": "1.0",
  "permissions": [
    "storage"
  ],
  "icons": {
    "48": "icons/icon48active.png",
    "128": "icons/icon128active.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://lichess.org/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "styleb.css"
      ]
    }
  ],
  "browser_action": {},
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  }
}