ChessVanced

Free Game Review for Chess.com and Lichess

Hvad er ChessVanced?

ChessVanced er en Chrome-udvidelse udviklet af urosmijajlovic43, og dens hovedfunktion er "Free Game Review for Chess.com and Lichess".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download ChessVanced-udvidelses-CRX-fil

Download ChessVanced-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        ChessVanced is a tool for free game review of chess games, while you play your game on Chess.com or Lichess, the extension will analyze the game in the background, and after the game is finished you may press "Free Game Review" button to be prompted to chessvanced.com where you will view your game review                    

Grundlæggende oplysninger om udvidelsen

Navn ChessVanced ChessVanced
ID ammcjghngpnnpibfnojlnmeghcmcgdib
Officiel URL https://chromewebstore.google.com/detail/chessvanced/ammcjghngpnnpibfnojlnmeghcmcgdib
Beskrivelse Free Game Review for Chess.com and Lichess
Filstørrelse 222 KB
Antal Installationer 5,095
Nuværende Version 3.0.0
Senest Opdateret 2023-09-19
Udgivelsesdato 2023-08-31
Bedømmelse 3.88/5 Samlet 8 Bedømmelser
Udvikler urosmijajlovic43
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://chessvanced.com/
Understøttede Sprog en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChessVanced",
    "version": "3.0.0",
    "description": "Free Game Review for Chess.com and Lichess",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "host_permissions": [
        "*:\/\/*.chess.com\/*",
        "*:\/\/*.lichess.org\/*",
        "*:\/\/*.chessvanced.com\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "contentScript.js"
            ],
            "matches": [
                "*:\/\/*.chess.com\/*",
                "*:\/\/*.lichess.org\/*",
                "*:\/\/*.chessvanced.com\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.chess.com\/*",
                "*:\/\/*.lichess.org\/*",
                "*:\/\/*.chessvanced.com\/*"
            ],
            "js": [
                "contentScriptWrapper.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "type": "module",
        "service_worker": "backgroundScript.js"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
    },
    "permissions": [
        "storage",
        "tabs",
        "offscreen"
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.chess.com\/*",
            "*:\/\/*.lichess.org\/*",
            "*:\/\/*.chessvanced.com\/*"
        ]
    }
}