Chess Warriors: Play Chess, Become a Warrior

Chess Warriors: Play Chess, Become a Warrior

Play at Chess.com with extra fun - pieces get points and evolve to warriors!

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Chess Warriors: Play Chess, Become a Warrior",
  "description": "Play at Chess.com with extra fun - pieces get points and evolve to warriors!",
  "version": "1.1",
  "permissions": [],
  "icons": {
    "16": "images/icons/icon-16.png",
    "32": "images/icons/icon-32.png",
    "48": "images/icons/icon-48.png",
    "128": "images/icons/icon-128.png"
  },
  "content_scripts": [
    {
      "js": [
        "settings.js",
        "bageMgr.js",
        "historyMgr.js",
        "start.js"
      ],
      "css": [
        "start.css"
      ],
      "matches": [
        "https://chess.com/*",
        "https://www.chess.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*.png",
        "settings.js",
        "bageMgr.js",
        "historyMgr.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}