Lichess Forced Analysis
On lichess.org, after a game finishes immediately go to analysis mode.
Cos'è Lichess Forced Analysis?
Lichess Forced Analysis è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "On lichess.org, after a game finishes immediately go to analysis mode.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Lichess Forced Analysis
Scarica i file di estensione Lichess Forced Analysis in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Improve your chess by remembering to reflect on the game. Never forget to analyze a chess game again.
Informazioni di Base sull'Estensione
Nome | Lichess Forced Analysis |
ID | chamjagfifgbdoppicpnjfegnkoepjkj |
URL Ufficiale | https://chromewebstore.google.com/detail/lichess-forced-analysis/chamjagfifgbdoppicpnjfegnkoepjkj |
Descrizione | On lichess.org, after a game finishes immediately go to analysis mode. |
Dimensione del File | 31.2 KB |
Conteggio Installazioni | 25 |
Versione Corrente | 1.3 |
Ultimo Aggiornamento | 2022-03-29 |
Data di Pubblicazione | 2022-03-07 |
Valutazione | 3.00/5 Totale 2 Valutazioni |
Sviluppatore | Unknown |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Lichess Forced Analysis", "description": "On lichess.org, after a game finishes immediately go to analysis mode.", "version": "1.3", "manifest_version": 3, "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/lichess.org\/*" ], "js": [ "content.js" ] } ], "background": { "service_worker": "back.js" }, "permissions": [ "storage" ], "action": { "default_icon": { "16": "\/images\/chess-strategy.png", "32": "\/images\/chess-strategy.png", "48": "\/images\/chess-strategy.png", "128": "\/images\/chess-strategy.png" } }, "icons": { "16": "\/images\/chess-strategy.png", "32": "\/images\/chess-strategy.png", "48": "\/images\/chess-strategy.png", "128": "\/images\/chess-strategy.png" } } |