Chess Bot

This extension implements a bot using Stockfish

What is Chess Bot?

Chess Bot is a Chrome extension developed by andyhsyu, and its main feature is "This extension implements a bot using Stockfish".

Extension Screenshots

screenshot

Download Chess Bot Extension CRX File

Download Chess Bot extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Chess bot for the popular chess website https://www.chess.com/.
Provides best move suggestions and highlighted tiles. Tested to beat opponents up to ~2000 Elo.                    

Extension Basic Information

Name Chess Bot Chess Bot
ID lohcfjmdomblangndimbjfecoapohjlb
Official URL https://chrome.google.com/webstore/detail/chess-bot/lohcfjmdomblangndimbjfecoapohjlb
Description This extension implements a bot using Stockfish
File Size 322 KB
Installation Count 5,000
Current Version 1.11
Last Updated 2016-02-26
Publish Date 2016-02-26
Rating 1.52/5 Total 33 Ratings
Developer andyhsyu
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chess Bot",
    "description": "This extension implements a bot using Stockfish",
    "version": "1.11",
    "browser_action": {
        "default_icon": "img\/icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.chess.com\/*",
                "https:\/\/*.chess.com\/*"
            ],
            "js": [
                "js\/bot.js"
            ]
        }
    ],
    "permissions": [
        "http:\/\/*.chess.com\/*",
        "activeTab"
    ],
    "web_accessible_resources": [
        "js\/inject.js",
        "js\/simulatemouseclick.js",
        "js\/stockfish.js"
    ]
}