PawnGun
Live Analysis for Lichess.org Games
Wat is PawnGun?
PawnGun is een Chrome-extensie ontwikkeld door PawnGun, en de belangrijkste functie is "Live Analysis for Lichess.org Games".
Extensie Screenshots
Download het CRX-bestand van de extensie PawnGun
Download PawnGun-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | jbabllibbfajahdjapeiphjdiencjame |
| Officiële URL | https://chromewebstore.google.com/detail/pawngun/jbabllibbfajahdjapeiphjdiencjame |
| Beschrijving | Live Analysis for Lichess.org Games |
| Bestandsgrootte | 102 KB |
| Aantal Installaties | 82 |
| Huidige Versie | 0.1 |
| Laatst Bijgewerkt | 2020-12-26 |
| Publicatiedatum | 2020-12-21 |
| Beoordeling | 3.00/5 Totaal 2 Beoordelingen |
| Ontwikkelaar | PawnGun |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | http://www.thapawngun.live |
| Help Pagina-URL | http://www.thapawngun.live |
| Ondersteunde Talen | 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"
}
} | |