Chess voice commands

Está extensão permite entrar com lances via teclado e ouvir os lances no chess.com
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "1.0.1",
  "manifest_version": 2,
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "default_locale": "pt_BR",
  "permissions": [
    "https://www.chess.com/"
  ],
  "browser_action": {
    "default_icon": "images/icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.chess.com/*"
      ],
      "js": [
        "inject.js"
      ],
      "run_at": "document_start",
      "css": [
        "styles/main.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "build.js",
    "audios/*.mp3"
  ]
}