Flip Lichess Knights

Flip the direction of the knights on lichess.org

ما هو Flip Lichess Knights؟

Flip Lichess Knights هو إضافة Chrome تم تطويرها بواسطة Sam Sweeney، والميزة الرئيسية لها هي "Flip the direction of the knights on lichess.org".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Flip Lichess Knights

قم بتنزيل ملفات الامتداد Flip Lichess Knights بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان URL الرسمي 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"
    ]
}