SakaSperto: Your Personal Chess Assistant

SakaSperto: Your Personal Chess Assistant

SakaSperto suggests the best move, rates possible moves, warns for blunders, and shows how your game on chess.com evolves.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SakaSperto: Your Personal Chess Assistant",
  "description": "SakaSperto suggests the best move, rates possible moves, warns for blunders, and shows how your game on chess.com evolves.",
  "version": "0.4",
  "manifest_version": 3,
  "icons": {
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://www.chess.com/*"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.chess.com/*"
      ],
      "js": [
        "simple-jsonrpc-js.js",
        "chart-js.js",
        "ExtPay.js",
        "chart.js",
        "content.js",
        "game.js",
        "api.js"
      ]
    }
  ]
}