Speak to Lichess

Speak to Lichess

Use voice control to play Lichess games!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Speak to Lichess",
  "version": "2.1.3",
  "manifest_version": 3,
  "description": "Use voice control to play Lichess games!",
  "options_page": "options.html",
  "host_permissions": [
    "*://*.lichess.org/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.lichess.org/*"
      ],
      "js": [
        "locationCheck.js",
        "TextProcessor.js",
        "boardState.js",
        "APIRequests.js",
        "main.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": {
      "128": "/images/yellow_chess_talk_128.png"
    },
    "default_popup": "popup.html",
    "default_title": "Quick Settings"
  },
  "permissions": [
    "storage"
  ],
  "icons": {
    "128": "/images/yellow_chess_talk_128.png"
  }
}