Lichess coord helper
Overlay co-ordinates on each square on lichess.com
Cos'è Lichess coord helper?
Lichess coord helper è un'estensione di Chrome sviluppata da darajava, e la sua funzione principale è "Overlay co-ordinates on each square on lichess.com".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Lichess coord helper
Scarica i file di estensione Lichess coord helper 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
Fill out coordinates on lichess.org to get more familiar with them.
Informazioni di Base sull'Estensione
Nome | Lichess coord helper |
ID | phjjblkcjghdlejdkcibenepiehehpbj |
URL Ufficiale | https://chromewebstore.google.com/detail/lichess-coord-helper/phjjblkcjghdlejdkcibenepiehehpbj |
Descrizione | Overlay co-ordinates on each square on lichess.com |
Dimensione del File | 100 KB |
Conteggio Installazioni | 38 |
Versione Corrente | 1.05 |
Ultimo Aggiornamento | 2019-01-22 |
Data di Pubblicazione | 2019-01-22 |
Valutazione | 3.33/5 Totale 3 Valutazioni |
Sviluppatore | darajava |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Lichess coord helper", "short_name": "Lichess coords", "description": "Overlay co-ordinates on each square on lichess.com", "version": "1.05", "author": "Dara Javaherian", "permissions": [ "*:\/\/*.lichess.org\/*" ], "background": { "persistent": true, "scripts": [ "bg\/background.js" ] }, "icons": { "128": "icons\/youtube-128.png" }, "browser_action": { "default_icon": "icons\/icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/lichess.org\/*", "http:\/\/lichess.org\/*" ], "js": [ "js\/jquery.js", "js\/inject.js" ], "css": [ "styles\/styles.css" ] } ] } |