Prettier Lichess

Lichess, but prettier.

Prettier Lichess란 무엇입니까?

Prettier Lichess은(는) kieferro에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Lichess, but prettier."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Prettier Lichess 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        }
    }
}