Flip Lichess Knights

Flip the direction of the knights on lichess.org

Wat is Flip Lichess Knights?

Flip Lichess Knights is een Chrome-extensie ontwikkeld door Sam Sweeney, en de belangrijkste functie is "Flip the direction of the knights on lichess.org".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Flip Lichess Knights

Download Flip Lichess Knights-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Flip Lichess Knights Flip Lichess Knights
ID cdkfpbdifpndnncjmfciiphhfjjfbpad
Officiële URL https://chromewebstore.google.com/detail/flip-lichess-knights/cdkfpbdifpndnncjmfciiphhfjjfbpad
Beschrijving Flip the direction of the knights on lichess.org
Bestandsgrootte 30.63 KB
Aantal Installaties 38
Huidige Versie 0.0.0.1
Laatst Bijgewerkt 2021-03-18
Publicatiedatum 2021-03-18
Ontwikkelaar Sam Sweeney
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    ]
}