PawnGun
Live Analysis for Lichess.org Games
Was ist PawnGun?
PawnGun ist eine Chrome-Erweiterung, die von PawnGun entwickelt wurde, und ihr Hauptmerkmal ist "Live Analysis for Lichess.org Games".
Erweiterungsscreenshots
PawnGun-Erweiterungs-CRX-Datei herunterladen
Laden Sie PawnGun-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | jbabllibbfajahdjapeiphjdiencjame |
| Offizielle URL | https://chromewebstore.google.com/detail/pawngun/jbabllibbfajahdjapeiphjdiencjame |
| Beschreibung | Live Analysis for Lichess.org Games |
| Dateigröße | 102 KB |
| Installationsanzahl | 82 |
| Aktuelle Version | 0.1 |
| Letztes Update | 2020-12-26 |
| Veröffentlichungsdatum | 2020-12-21 |
| Bewertung | 3.00/5 Insgesamt 2 Bewertungen |
| Entwickler | PawnGun |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | http://www.thapawngun.live |
| Hilfeseite URL | http://www.thapawngun.live |
| Unterstützte Sprachen | 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"
}
} | |