Chess Endgame Tables

Adds endgame tables info (up to 7 pieces) from lila-tablebase to chess24.com

Τι είναι το Chess Endgame Tables;

Το Chess Endgame Tables είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Sergei Churin, και η κύρια λειτουργία του είναι "Adds endgame tables info (up to 7 pieces) from lila-tablebase to chess24.com".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Chess Endgame Tables

Λήψη αρχείων επέκτασης Chess Endgame Tables σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This extension is for evaluating chess positions.

The extension allows you to see the best moves in live mode through the 7-piece bases from lichess (lila-tablebase).
At the moment, only chess24.com is supported.

The extension options:
- shows in live mode (delay of about a second) all moves that achieve the best possible result in the position;
- shows an evaluations both in positions from a real game, and when entering your own moves;
- the ability to evaluate the position if move switch to another player;
- the ability to link to lichess for analysis with the current position already placed.

Important note:
The 7-piece bases from lichess are syzygy bases, and this is not the same as the Lomonosov bases. Syzygy bases show exact results, show what moves it can be achieved, but do not show which of the shortest lines. Most likely, the first moves from the list lead to a better result faster, but this is not always true.

* Thanks to lichess.org for the public API that provides access to 7-piece bases.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Chess Endgame Tables Chess Endgame Tables
ID jbjgiljenoliiamplakdocjfkpppfkjc
Επίσημο URL https://chrome.google.com/webstore/detail/chess-endgame-tables/jbjgiljenoliiamplakdocjfkpppfkjc
Περιγραφή Adds endgame tables info (up to 7 pieces) from lila-tablebase to chess24.com
Μέγεθος Αρχείου 26.36 KB
Αριθμός Εγκαταστάσεων 153
Τρέχουσα Έκδοση 2019.1.4.0
Τελευταία Ενημέρωση 2019-01-04
Ημερομηνία Δημοσίευσης 2019-01-04
Αξιολόγηση 3.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Sergei Churin
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chess Endgame Tables",
    "short_name": "ChessEndTabl",
    "version": "2019.1.4.0",
    "author": "seriych",
    "default_locale": "en",
    "description": "__MSG_extensionDescription__",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chess24.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "ChessEndgameTables.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}