Chess.com Analysis
Opens PGN of a Chess.com game in lichess.org analysis
Qu'est-ce que Chess.com Analysis ?
Chess.com Analysis est une extension Chrome développée par Allan Rempel, et sa fonction principale est "Opens PGN of a Chess.com game in lichess.org analysis".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Chess.com Analysis
Téléchargez les fichiers d'extension Chess.com Analysis au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Free in-depth analysis of completed Chess.com games. Review your game as it points out mistakes and shows you how you could've played better. You can only analyse finished games. Analysing ongoing games is also called cheating. Note that I am not affiliated with Chess.com or lichess.org, I simply made this extension to connect the two. Icon CC-BY-SA 3.0, https://commons.wikimedia.org/wiki/User:Antonsusi
Informations de Base sur l'Extension
Nom | |
ID | ijnendcpnjbajnnlojialgndjknlemem |
URL Officiel | https://chrome.google.com/webstore/detail/chesscom-analysis/ijnendcpnjbajnnlojialgndjknlemem |
Description | Opens PGN of a Chess.com game in lichess.org analysis |
Taille du Fichier | 120 KB |
Nombre d'Installations | 771 |
Version Actuelle | 1.2 |
Dernière Mise à Jour | 2015-02-02 |
Date de Publication | 2015-02-02 |
Évaluation | 3.75/5 Total 24 Évaluations |
Développeur | Allan Rempel |
Type de Paiement | free |
Langues Prises en Charge | de,en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_name__", "description": "__MSG_description__", "version": "1.2", "icons": { "16": "images\/knight16.png", "32": "images\/knight32.png", "64": "images\/knight64.png", "128": "images\/knight128.png", "256": "images\/knight256.png", "512": "images\/knight512.png" }, "permissions": [ "tabs", "http:\/\/www.chess.com\/", "http:\/\/*.lichess.org\/", "webNavigation" ], "default_locale": "en", "background": { "scripts": [ "jquery-2.1.3.min.js", "background.js" ], "persistent": false }, "page_action": { "default_icon": { "16": "images\/knight16.png", "32": "images\/knight32.png", "64": "images\/knight64.png", "128": "images\/knight128.png", "256": "images\/knight256.png", "512": "images\/knight512.png" } }, "content_scripts": [ { "matches": [ "http:\/\/*.lichess.org\/paste" ], "js": [ "jquery-2.1.3.min.js", "analysis.js" ] } ] } |