Chess Bot

This extension implements a bot using Stockfish

Wat is Chess Bot?

Chess Bot is een Chrome-extensie ontwikkeld door andyhsyu, en de belangrijkste functie is "This extension implements a bot using Stockfish".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Chess Bot

Download Chess Bot-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Chess Bot Chess Bot
ID lohcfjmdomblangndimbjfecoapohjlb
Officiële URL https://chrome.google.com/webstore/detail/chess-bot/lohcfjmdomblangndimbjfecoapohjlb
Beschrijving This extension implements a bot using Stockfish
Bestandsgrootte 322 KB
Aantal Installaties 5,000
Huidige Versie 1.11
Laatst Bijgewerkt 2016-02-26
Publicatiedatum 2016-02-26
Beoordeling 1.52/5 Totaal 33 Beoordelingen
Ontwikkelaar andyhsyu
Betalingswijze free
Ondersteunde Talen 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"
    ]
}