ChessVanced
Free Game Review for Chess.com and Lichess
Vad är ChessVanced?
ChessVanced är en Chrome-tillägg utvecklad av urosmijajlovic43, och dess huvudfunktion är "Free Game Review for Chess.com and Lichess".
Tilläggsskärmbilder
Ladda ner ChessVanced-förlängningens CRX-fil
Ladda ner ChessVanced-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
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äggande Information om Tillägg
Namn | ChessVanced |
ID | ammcjghngpnnpibfnojlnmeghcmcgdib |
Officiell webbadress | https://chromewebstore.google.com/detail/chessvanced/ammcjghngpnnpibfnojlnmeghcmcgdib |
Beskrivning | Free Game Review for Chess.com and Lichess |
Filstorlek | 222 KB |
Antal Installationer | 5,095 |
Aktuell Version | 3.0.0 |
Senast Uppdaterad | 2023-09-19 |
Publiceringsdatum | 2023-08-31 |
Betyg | 3.88/5 Totalt 8 Betyg |
Utvecklare | urosmijajlovic43 |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://chessvanced.com/ |
Stödda Språk | 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\/*" ] } } |