Chess Bot

This extension implements a bot using Stockfish

Qu'est-ce que Chess Bot ?

Chess Bot est une extension Chrome développée par andyhsyu, et sa fonction principale est "This extension implements a bot using Stockfish".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Chess Bot

Téléchargez les fichiers d'extension Chess Bot au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Chess Bot Chess Bot
ID lohcfjmdomblangndimbjfecoapohjlb
URL Officiel https://chrome.google.com/webstore/detail/chess-bot/lohcfjmdomblangndimbjfecoapohjlb
Description This extension implements a bot using Stockfish
Taille du Fichier 322 KB
Nombre d'Installations 5,000
Version Actuelle 1.11
Dernière Mise à Jour 2016-02-26
Date de Publication 2016-02-26
Évaluation 1.52/5 Total 33 Évaluations
Développeur andyhsyu
Type de Paiement free
Langues Prises en Charge 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"
    ]
}