Time Odds For Lichess

Easily give time odds to your opponent.

Was ist Time Odds For Lichess?

Time Odds For Lichess ist eine Chrome-Erweiterung, die von Team Doko entwickelt wurde, und ihr Hauptmerkmal ist "Easily give time odds to your opponent.".

Erweiterungsscreenshots

screenshot
screenshot

Time Odds For Lichess-Erweiterungs-CRX-Datei herunterladen

Laden Sie Time Odds For Lichess-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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).                    

Grundlegende Informationen zur Erweiterung

Name Time Odds For Lichess Time Odds For Lichess
ID fmkpgandankbklomijglcfmnmafjflpj
Offizielle URL https://chromewebstore.google.com/detail/time-odds-for-lichess/fmkpgandankbklomijglcfmnmafjflpj
Beschreibung Easily give time odds to your opponent.
Dateigröße 20.53 KB
Installationsanzahl 151
Aktuelle Version 1.0.0
Letztes Update 2022-09-11
Veröffentlichungsdatum 2022-01-25
Entwickler Team Doko
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://teamdoko.com/products/time-odds-for-lichess/
Hilfeseite URL https://teamdoko.com/support/
URL der Datenschutzrichtlinien-Seite https://teamdoko.com/privacy
Unterstützte Sprachen 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"
            ]
        }
    ]
}