Prettier Lichess

Lichess, but prettier.

¿Qué es Prettier Lichess?

Prettier Lichess es una extensión de Chrome desarrollada por kieferro, y su función principal es "Lichess, but prettier.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Prettier Lichess

Descarga archivos de extensión Prettier Lichess en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Prettier Lichess takes the wonderful lichess.org and gives it a facelift. Now with a more contemporary look, the site can also be customized via the extension to change its various colors. 

You can also change between Prettier's default layout & Lichess' default layout.

If you're a streamer, the extension offers a "vertical layout" option on game pages that allow you to make the game layout more streamer friendly. 

This extension is open source and collaborative. Come to the Github to open an issue or to poke around the source code yourself. 

https://prettierlichess.github.io/
https://github.com/prettierlichess/prettierlichess                    

Información Básica de la Extensión

Nombre Prettier Lichess Prettier Lichess
ID epgnobcgnmchnhgkgpedebbmhbblfcob
URL Oficial https://chromewebstore.google.com/detail/prettier-lichess/epgnobcgnmchnhgkgpedebbmhbblfcob
Descripción Lichess, but prettier.
Tamaño del Archivo 337 KB
Cantidad de Instalaciones 8,143
Versión Actual 3.11.0
Última Actualización 2023-10-30
Fecha de Publicación 2021-02-23
Calificación 4.58/5 Total de 76 Calificaciones
Desarrollador kieferro
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://prettierlichess.github.io/
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Prettier Lichess",
    "version": "3.11.0",
    "manifest_version": 2,
    "description": "Lichess, but prettier.",
    "icons": {
        "128": "icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/lichess.org\/*"
            ],
            "exclude_matches": [
                "*:\/\/lichess.org\/api*"
            ],
            "run_at": "document_start",
            "css": [
                "styles.css"
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/lichess.org\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "postLoad.js"
            ],
            "all_frames": true
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        "declarativeContent",
        "downloads",
        "*:\/\/lichess.org\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_security_policy": "script-src 'self'; object-src 'self';",
    "web_accessible_resources": [
        "styles.css",
        "fonts\/*",
        "pieces\/*",
        "masks\/*"
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "{8ad4bea8-ad8d-4e98-b434-a76065dee6cb}",
            "strict_min_version": "57.0"
        }
    }
}