PawnGun
Live Analysis for Lichess.org Games
Qu'est-ce que PawnGun ?
PawnGun est une extension Chrome développée par PawnGun, et sa fonction principale est "Live Analysis for Lichess.org Games".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension PawnGun
Téléchargez les fichiers d'extension PawnGun 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
This extension has the following features: * Allows you to view LIVE analysis while you are watching or streaming games being played live in that moment. * This extension DOES NOT suggest good moves, it only shows how bad or good is each side according to a chess engine Analysis. * Works only for Lichess.org ... for now. * Does not support Chess960 variant ... for now. * You should use this extension only for educational purposes. I am not affiliated in any way with lichess or chess.com.
Informations de Base sur l'Extension
Nom | PawnGun |
ID | jbabllibbfajahdjapeiphjdiencjame |
URL Officiel | https://chromewebstore.google.com/detail/pawngun/jbabllibbfajahdjapeiphjdiencjame |
Description | Live Analysis for Lichess.org Games |
Taille du Fichier | 102 KB |
Nombre d'Installations | 82 |
Version Actuelle | 0.1 |
Dernière Mise à Jour | 2020-12-26 |
Date de Publication | 2020-12-21 |
Évaluation | 3.00/5 Total 2 Évaluations |
Développeur | PawnGun |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | http://www.thapawngun.live |
URL de la Page d'Aide | http://www.thapawngun.live |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "PawnGun", "description": "Live Analysis for Lichess.org Games", "version": "0.1", "manifest_version": 2, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "permissions": [], "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/lichess.org\/*" ], "js": [ "jquery-3.3.1.min.js", "chess.js", "content.js", "lozza.js" ] } ], "browser_action": { "default_popup": "popup.html" } } |