ChessExpert

The next-generation chess move calculator.

Vad är ChessExpert?

ChessExpert är en Chrome-tillägg utvecklad av https://chessexpert.io, och dess huvudfunktion är "The next-generation chess move calculator.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner ChessExpert-förlängningens CRX-fil

Ladda ner ChessExpert-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        ChessExpert automatically analyze chess positions on websites like chess.com or lichess.org.

ChessExpert calculate the best move and additional variants while playing the game.

ChessExpert can read positions from any website via user context menu option (right click on image or video).

Supported websites:
- lichess.org
- chess.com
- immortal.game
... and many more.

Key features:
- best move calculator
- PDF recognition
- image recognition
- video recognition (YouTube)
- user context menu (right mouse click) for images and videos

* ChessExpert doesn't collect any user information. The purpose of this extension is to improve user skills during the game.

 See more on https://chessexpert.io                    

Grundläggande Information om Tillägg

Namn ChessExpert ChessExpert
ID kfidegdomeiilkkfbffchbpamebbdfbi
Officiell webbadress https://chromewebstore.google.com/detail/chessexpert/kfidegdomeiilkkfbffchbpamebbdfbi
Beskrivning The next-generation chess move calculator.
Filstorlek 15.61 KB
Antal Installationer 3,000
Aktuell Version 2.4.3
Senast Uppdaterad 2023-08-21
Publiceringsdatum 2022-03-01
Betyg 3.92/5 Totalt 13 Betyg
Utvecklare https://chessexpert.io
E-post [email protected]
Betalningssätt free
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChessExpert",
    "short_name": "ChessExpert",
    "description": "The next-generation chess move calculator.",
    "version": "2.4.3",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "tabs",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "match_origin_as_fallback": true,
            "run_at": "document_end",
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "\/images\/16.png",
        "32": "\/images\/32.png",
        "48": "\/images\/48.png",
        "128": "\/images\/128.png"
    }
}