Flip Lichess Knights

Flip the direction of the knights on lichess.org

O que é Flip Lichess Knights?

Flip Lichess Knights é uma extensão do Chrome desenvolvida por Sam Sweeney, e sua principal característica é "Flip the direction of the knights on lichess.org".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Flip Lichess Knights

Baixe arquivos de extensão Flip Lichess Knights no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Flip Lichess Knights Flip Lichess Knights
ID cdkfpbdifpndnncjmfciiphhfjjfbpad
URL Oficial https://chromewebstore.google.com/detail/flip-lichess-knights/cdkfpbdifpndnncjmfciiphhfjjfbpad
Descrição Flip the direction of the knights on lichess.org
Tamanho do Arquivo 30.63 KB
Contagem de Instalações 38
Versão Atual 0.0.0.1
Última Atualização 2021-03-18
Data de Publicação 2021-03-18
Desenvolvedor Sam Sweeney
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}