PawnGun
Live Analysis for Lichess.org Games
Vad är PawnGun?
PawnGun är en Chrome-tillägg utvecklad av PawnGun, och dess huvudfunktion är "Live Analysis for Lichess.org Games".
Tilläggsskärmbilder
Ladda ner PawnGun-förlängningens CRX-fil
Ladda ner PawnGun-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | PawnGun |
ID | jbabllibbfajahdjapeiphjdiencjame |
Officiell webbadress | https://chromewebstore.google.com/detail/pawngun/jbabllibbfajahdjapeiphjdiencjame |
Beskrivning | Live Analysis for Lichess.org Games |
Filstorlek | 102 KB |
Antal Installationer | 82 |
Aktuell Version | 0.1 |
Senast Uppdaterad | 2020-12-26 |
Publiceringsdatum | 2020-12-21 |
Betyg | 3.00/5 Totalt 2 Betyg |
Utvecklare | PawnGun |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | http://www.thapawngun.live |
Hjälpsida URL | http://www.thapawngun.live |
Stödda Språk | 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" } } |