Flip Lichess Knights

Flip the direction of the knights on lichess.org

什麼是Flip Lichess Knights?

Flip Lichess Knights是由Sam Sweeney開發的Chrome擴展程式,該擴展的主要功能是“Flip the direction of the knights on lichess.org”。

擴展截圖

screenshot

下載Flip Lichess Knights擴展crx文件

下載Flip Lichess Knights擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Flip Lichess Knights Flip Lichess Knights
ID cdkfpbdifpndnncjmfciiphhfjjfbpad
官方網址 https://chromewebstore.google.com/detail/flip-lichess-knights/cdkfpbdifpndnncjmfciiphhfjjfbpad
簡介 Flip the direction of the knights on lichess.org
檔案大小 30.63 KB
安裝次數 38
目前版本 0.0.0.1
更新時間 2021-03-18
上架時間 2021-03-18
開發者 Sam Sweeney
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
    ]
}