Mephisto Chess Extension
Next best move analysis for your favorite chess websites
Qu'est-ce que Mephisto Chess Extension ?
Mephisto Chess Extension est une extension Chrome développée par Alpine Web Extensions, et sa fonction principale est "Next best move analysis for your favorite chess websites".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Mephisto Chess Extension
Téléchargez les fichiers d'extension Mephisto Chess Extension 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
Mephisto is a browser extension that enables realtime next best move analysis and autoplay on your favorite chess websites. Mephisto Chess Extension is the perfect tool to hone your chess skills, analyze your games and learn from your mistakes. With a click of a button, Mephisto analyzes your chess game and provides comprehensive information to elucidate the position. Mephisto is 100% free, open-source and collects zero user data. Features: - Full support for next best move analysis on Lichess and Chess.com - Full support for autoplay on Lichess and Chess.com - "Hand and Brain" training mode to help you spot the best move - A variety of piece and board themes to pick from
Informations de Base sur l'Extension
Nom | |
ID | ihpdlpgcjepplokoncjelcbbcedgnanp |
URL Officiel | https://chrome.google.com/webstore/detail/mephisto-chess-extension/ihpdlpgcjepplokoncjelcbbcedgnanp |
Description | Next best move analysis for your favorite chess websites |
Taille du Fichier | 2.06 MB |
Nombre d'Installations | 4,021 |
Version Actuelle | 1.0.1 |
Dernière Mise à Jour | 2022-08-13 |
Date de Publication | 2022-08-09 |
Évaluation | 4.44/5 Total 9 Évaluations |
Développeur | Alpine Web Extensions |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/AlexPetrusca/Mephisto |
URL de la Page d'Aide | https://github.com/AlexPetrusca/Mephisto/issues |
URL de la Page de Politique de Confidentialité | https://github.com/AlexPetrusca/Mephisto/wiki/Privacy-Policy |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Mephisto Chess Extension", "description": "Next best move analysis for your favorite chess websites", "version": "1.0.1", "homepage_url": "https:\/\/github.com\/AlexPetrusca\/Mephisto", "author": "Alex Petrusca", "icons": { "16": "res\/icons\/icon16.png", "32": "res\/icons\/icon32.png", "48": "res\/icons\/icon48.png", "128": "res\/icons\/icon128.png" }, "action": { "default_icon": { "16": "res\/icons\/icon16.png", "32": "res\/icons\/icon32.png", "48": "res\/icons\/icon48.png", "128": "res\/icons\/icon128.png" }, "default_popup": "src\/popup\/popup.html", "options_page": "src\/options\/options.html" }, "permissions": [ "debugger" ], "background": { "service_worker": "src\/scripts\/background-script.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.chess.com\/*", "https:\/\/lichess.org\/*" ], "js": [ "src\/scripts\/content-script.js" ] } ], "default_locale": "en" } |