Chess Bot

This extension implements a bot using Stockfish

Co to jest Chess Bot?

Chess Bot to rozszerzenie Chrome opracowane przez andyhsyu, a jego główną funkcją jest „This extension implements a bot using Stockfish”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Chess Bot

Pobierz pliki rozszerzeń Chess Bot w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Chess Bot Chess Bot
ID lohcfjmdomblangndimbjfecoapohjlb
Oficjalny URL https://chrome.google.com/webstore/detail/chess-bot/lohcfjmdomblangndimbjfecoapohjlb
Opis This extension implements a bot using Stockfish
Rozmiar pliku 322 KB
Liczba instalacji 5,000
Aktualna Wersja 1.11
Ostatnia Aktualizacja 2016-02-26
Data Publikacji 2016-02-26
Ocena 1.52/5 Łącznie 33 Oceny
Deweloper andyhsyu
Typ Płatności free
Obsługiwane Języki 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"
    ]
}