Flip Lichess Knights
Flip the direction of the knights on lichess.org
Cos'è Flip Lichess Knights?
Flip Lichess Knights è un'estensione di Chrome sviluppata da Sam Sweeney, e la sua funzione principale è "Flip the direction of the knights on lichess.org".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Flip Lichess Knights
Scarica i file di estensione Flip Lichess Knights 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
Flip Lichess Knights allows you to customize your board UI when playing chess on lichess.org. By default knights on Lichess face to the right. Flip Lichess Knights allows you to toggle their direction, so they can face either to the right or to the left.
Informazioni di Base sull'Estensione
Nome | |
ID | cdkfpbdifpndnncjmfciiphhfjjfbpad |
URL Ufficiale | https://chromewebstore.google.com/detail/flip-lichess-knights/cdkfpbdifpndnncjmfciiphhfjjfbpad |
Descrizione | Flip the direction of the knights on lichess.org |
Dimensione del File | 30.63 KB |
Conteggio Installazioni | 38 |
Versione Corrente | 0.0.0.1 |
Ultimo Aggiornamento | 2021-03-18 |
Data di Pubblicazione | 2021-03-18 |
Sviluppatore | Sam Sweeney |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Flip Lichess Knights", "description": "Flip the direction of the knights on lichess.org", "version": "0.0.0.1", "manifest_version": 3, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.lichess.org\/*" ], "js": [ "flip-knights.js" ] } ], "action": { "default_popup": "popup.html", "default_icon": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "storage" ] } |