Prettier Lichess

Lichess, but prettier.

什么是Prettier Lichess?

Prettier Lichess是由kieferro开发的Chrome扩展程序,该扩展的主要功能是“Lichess, but prettier.”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载Prettier Lichess扩展crx文件

下载Prettier Lichess扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Prettier Lichess Prettier Lichess
ID epgnobcgnmchnhgkgpedebbmhbblfcob
官方URL https://chromewebstore.google.com/detail/prettier-lichess/epgnobcgnmchnhgkgpedebbmhbblfcob
简介 Lichess, but prettier.
文件大小 337 KB
安装次数 8,143
当前版本 3.11.0
更新时间 2023-10-30
上架时间 2021-02-23
评分 4.58/5 共76次评分
开发者 kieferro
电子邮箱 [email protected]
付费类型 free
扩展官网 https://prettierlichess.github.io/
支持的语言 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"
        }
    }
}