Time Odds For Lichess
Easily give time odds to your opponent.
Cos'è Time Odds For Lichess?
Time Odds For Lichess è un'estensione di Chrome sviluppata da Team Doko, e la sua funzione principale è "Easily give time odds to your opponent.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Time Odds For Lichess
Scarica i file di estensione Time Odds For Lichess 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
This extension adds a button to give time odds to your opponent on lichess. That way you don't have to add time to your opponents time in 15 sec increments. After installing this extension look for a new button next to your time. Use this to give your opponent time odds. Click on the gear icon to adjust the odds. (Default is 120s).
Informazioni di Base sull'Estensione
Nome | Time Odds For Lichess |
ID | fmkpgandankbklomijglcfmnmafjflpj |
URL Ufficiale | https://chromewebstore.google.com/detail/time-odds-for-lichess/fmkpgandankbklomijglcfmnmafjflpj |
Descrizione | Easily give time odds to your opponent. |
Dimensione del File | 20.53 KB |
Conteggio Installazioni | 151 |
Versione Corrente | 1.0.0 |
Ultimo Aggiornamento | 2022-09-11 |
Data di Pubblicazione | 2022-01-25 |
Sviluppatore | Team Doko |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://teamdoko.com/products/time-odds-for-lichess/ |
URL della Pagina di Aiuto | https://teamdoko.com/support/ |
URL della Pagina della Politica sulla Privacy | https://teamdoko.com/privacy |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Time Odds For Lichess", "description": "Easily give time odds to your opponent.", "version": "1.0.0", "manifest_version": 3, "permissions": [ "storage" ], "host_permissions": [ "*:\/\/*.lichess.org\/*" ], "icons": { "16": ".\/images\/time_odds_lichess_16.png", "32": ".\/images\/time_odds_lichess_32.png", "48": ".\/images\/time_odds_lichess_48.png", "128": ".\/images\/time_odds_lichess_128.png" }, "content_scripts": [ { "matches": [ "*:\/\/lichess.org\/*" ], "run_at": "document_end", "js": [ "content.js" ] } ] } |