ChessOnSteroids

ChessOnSteroids

Live best moves for chess.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ChessOnSteroids",
  "description": "Live best moves for chess.com",
  "version": "5.0.5",
  "permissions": [
    "*://*.chess.com/*",
    "storage",
    "identity",
    "identity.email",
    "https://www.googleapis.com/"
  ],
  "oauth2": {
    "client_id": "146044255480-t8qo7680k9vuhnbmd7bsn8gt4i8mr3u8.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/plus.login",
      "https://www.googleapis.com/auth/chromewebstore.readonly",
      "https://www.googleapis.com/auth/userinfo.profile",
      "https://www.googleapis.com/auth/userinfo.email"
    ]
  },
  "content_security_policy": "script-src 'self' https://apis.google.com https://www.gstatic.com/ https://cdn.firebase.com https://*.firebaseio.com  https://www.googleapis.com https://js.stripe.com https://code.jquery.com/jquery-3.6.0.min.js; object-src 'self'",
  "browser_action": {
    "default_icon": "img/iconnn.png",
    "default_popup": "index.html"
  },
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "http://*.chess.com/*",
        "https://*.chess.com/*"
      ],
      "js": [
        "js/bot.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "js/intercept.js",
    "js/background.js",
    "js/stockfish.js",
    "index.html"
  ]
}