PawnGun
Live Analysis for Lichess.org Games
What is PawnGun?
PawnGun is a Chrome extension developed by PawnGun, and its main feature is "Live Analysis for Lichess.org Games".
Extension Screenshots
Download PawnGun Extension CRX File
Download PawnGun extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | PawnGun |
ID | jbabllibbfajahdjapeiphjdiencjame |
Official URL | https://chromewebstore.google.com/detail/pawngun/jbabllibbfajahdjapeiphjdiencjame |
Description | Live Analysis for Lichess.org Games |
File Size | 102 KB |
Installation Count | 82 |
Current Version | 0.1 |
Last Updated | 2020-12-26 |
Publish Date | 2020-12-21 |
Rating | 3.00/5 Total 2 Ratings |
Developer | PawnGun |
[email protected] | |
Payment Type | free |
Extension Website | http://www.thapawngun.live |
Help Page URL | http://www.thapawngun.live |
Supported Languages | 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" } } |