Chess.com Voice Input

Chess.com Voice Input

Enable square clicks on chess.com via speech recognition or form input. Uses a simple double-digit coordinate system for the moves.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Chess.com Voice Input",
  "description": "Enable square clicks on chess.com via speech recognition or form input. Uses a simple double-digit coordinate system for the moves.",
  "version": "2.0.0",
  "manifest_version": 3,
  "action": {
    "default_icon": {
      "48": "/images/icon48.png",
      "128": "/images/icon128.png"
    }
  },
  "icons": {
    "48": "/images/icon48.png",
    "128": "/images/icon128.png"
  },
  "content_scripts": [
    {
      "js": [
        "./src/index.js"
      ],
      "matches": [
        "https://www.chess.com/*"
      ]
    }
  ]
}