Free Chess.com Analysis

Exports game from chess.com into liches.org so you can analyze games for free and you do not have to do this manually.

Τι είναι το Free Chess.com Analysis;

Το Free Chess.com Analysis είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον tswirski95, και η κύρια λειτουργία του είναι "Exports game from chess.com into liches.org so you can analyze games for free and you do not have to do this manually.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Free Chess.com Analysis

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

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

                        The "Free Chess.com Analysis" is a Chrome extension designed to streamline the process of analyzing chess games by automating the export of games from chess.com to lichess.org. With this extension, chess players can easily export their game data from Chess.com and import it into Lichess for further analysis without having to do it manually.

The extension features a simple user interface that allows the user to initiate the export process with just a few clicks. Once the extension is installed, the user can navigate to their Chess.com game history and select the games they wish to export. With the click of a button, the extension will automatically export the games in a format that is compatible with Lichess.org.

The exported games are saved in a format that can be easily imported into Lichess.org for analysis. This eliminates the need for the user to manually copy and paste the game data from one website to the other, saving valuable time and effort.

The "Free Chess.com Analysis" extension is ideal for chess players who want to improve their game by analyzing their previous matches. By allowing users to easily transfer game data from Chess.com to Lichess.org, the extension makes it easier for players to review their matches and identify areas for improvement.

Overall, the "Free Chess.com Analysis" is a valuable tool for chess players looking to streamline their game analysis process and improve their gameplay.                    

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

Όνομα Free Chess.com Analysis Free Chess.com Analysis
ID ieckpkkfgbifcddilhgfhgphoobefapo
Επίσημο URL https://chrome.google.com/webstore/detail/free-chesscom-analysis/ieckpkkfgbifcddilhgfhgphoobefapo
Περιγραφή Exports game from chess.com into liches.org so you can analyze games for free and you do not have to do this manually.
Μέγεθος Αρχείου 12.51 KB
Αριθμός Εγκαταστάσεων 2,701
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2023-02-26
Ημερομηνία Δημοσίευσης 2023-02-26
Αξιολόγηση 1.00/5 Συνολικά 7 Αξιολογήσεις
Προγραμματιστής tswirski95
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Free Chess.com Analysis",
    "description": "Exports game from chess.com into liches.org so you can analyze games for free and you do not have to do this manually.",
    "version": "1.0",
    "permissions": [
        "scripting",
        "tabs",
        "activeTab"
    ],
    "host_permissions": [
        "https:\/\/www.chess.com\/",
        "https:\/\/lichess.org\/"
    ],
    "content_scripts": [
        {
            "js": [
                "scripts\/content.js"
            ],
            "matches": [
                "https:\/\/www.chess.com\/game\/live\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}