Chess.com Next Move

Chess.com Next Move

A Chess extension to determine best next move on chess.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "A Chess extension to determine best next move on chess.com",
  "version": "0.0.2",
  "manifest_version": 3,
  "name": "Chess.com Next Move",
  "options_page": "options.html",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "knight16.png",
      "32": "knight32.png",
      "48": "knight48.png",
      "128": "knight128.png"
    }
  },
  "icons": {
    "16": "knight16.png",
    "32": "knight32.png",
    "48": "knight48.png",
    "128": "knight128.png"
  },
  "permissions": [
    "activeTab"
  ],
  "host_permissions": [
    "https://chess.com/*",
    "https://www.chess.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "devtools_page": "devtools.html",
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "icon-128.png",
        "icon-34.png"
      ],
      "matches": []
    }
  ]
}