Prettier Lichess

Lichess, but prettier.

Prettier Lichess là gì?

Prettier Lichess là một tiện ích mở rộng Chrome được phát triển bởi kieferro, và tính năng chính của nó là "Lichess, but prettier.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Prettier Lichess

Tải xuống các tệp mở rộng Prettier Lichess dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Prettier Lichess Prettier Lichess
ID epgnobcgnmchnhgkgpedebbmhbblfcob
URL Chính Thức https://chromewebstore.google.com/detail/prettier-lichess/epgnobcgnmchnhgkgpedebbmhbblfcob
Mô tả Lichess, but prettier.
Kích Thước Tệp 337 KB
Số Lần Cài Đặt 8,143
Phiên Bản Hiện Tại 3.11.0
Cập Nhật Lần Cuối 2023-10-30
Ngày Phát Hành 2021-02-23
Đánh Giá 4.58/5 Tổng số 76 Đánh Giá
Nhà Phát Triển kieferro
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://prettierlichess.github.io/
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}