Time Odds For Lichess

Easily give time odds to your opponent.

Vad är Time Odds For Lichess?

Time Odds For Lichess är en Chrome-tillägg utvecklad av Team Doko, och dess huvudfunktion är "Easily give time odds to your opponent.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Time Odds For Lichess-förlängningens CRX-fil

Ladda ner Time Odds For Lichess-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Time Odds For Lichess Time Odds For Lichess
ID fmkpgandankbklomijglcfmnmafjflpj
Officiell webbadress https://chromewebstore.google.com/detail/time-odds-for-lichess/fmkpgandankbklomijglcfmnmafjflpj
Beskrivning Easily give time odds to your opponent.
Filstorlek 20.53 KB
Antal Installationer 151
Aktuell Version 1.0.0
Senast Uppdaterad 2022-09-11
Publiceringsdatum 2022-01-25
Utvecklare Team Doko
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://teamdoko.com/products/time-odds-for-lichess/
Hjälpsida URL https://teamdoko.com/support/
URL till Sekretesspolicy Sidan https://teamdoko.com/privacy
Stödda Språk 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"
            ]
        }
    ]
}