Flip Lichess Knights

Flip the direction of the knights on lichess.org

Co je Flip Lichess Knights?

Flip Lichess Knights je rozšíření Chrome vyvinuté Sam Sweeney, a jeho hlavní funkcí je „Flip the direction of the knights on lichess.org“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Flip Lichess Knights

Stáhněte si soubory rozšíření Flip Lichess Knights ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Flip Lichess Knights Flip Lichess Knights
ID cdkfpbdifpndnncjmfciiphhfjjfbpad
Oficiální URL https://chromewebstore.google.com/detail/flip-lichess-knights/cdkfpbdifpndnncjmfciiphhfjjfbpad
Popis Flip the direction of the knights on lichess.org
Velikost souboru 30.63 KB
Počet instalací 38
Aktuální Verze 0.0.0.1
Poslední Aktualizace 2021-03-18
Datum Vydání 2021-03-18
Vývojář Sam Sweeney
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
    ]
}