PawnGun
Live Analysis for Lichess.org Games
O que é PawnGun?
PawnGun é uma extensão do Chrome desenvolvida por PawnGun, e sua principal característica é "Live Analysis for Lichess.org Games".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão PawnGun
Baixe arquivos de extensão PawnGun no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | PawnGun |
ID | jbabllibbfajahdjapeiphjdiencjame |
URL Oficial | https://chromewebstore.google.com/detail/pawngun/jbabllibbfajahdjapeiphjdiencjame |
Descrição | Live Analysis for Lichess.org Games |
Tamanho do Arquivo | 102 KB |
Contagem de Instalações | 82 |
Versão Atual | 0.1 |
Última Atualização | 2020-12-26 |
Data de Publicação | 2020-12-21 |
Classificação | 3.00/5 Total de 2 Avaliações |
Desenvolvedor | PawnGun |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | http://www.thapawngun.live |
URL da Página de Ajuda | http://www.thapawngun.live |
Idiomas Suportados | 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" } } |