Chess.com to Lichess Import

Allows users to import Chess.com games into Lichess with one click

ما هو Chess.com to Lichess Import؟

Chess.com to Lichess Import هو إضافة Chrome تم تطويرها بواسطة 17victork، والميزة الرئيسية لها هي "Allows users to import Chess.com games into Lichess with one click".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Chess.com to Lichess Import

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

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

                        🚀 One-click import your chess.com games to lichess.org! 🎮                    

معلومات أساسية عن التمديد

الاسم Chess.com to Lichess Import Chess.com to Lichess Import
ID jblnpdempinkonbjejolagghdofaipjf
عنوان URL الرسمي https://chromewebstore.google.com/detail/chesscom-to-lichess-impor/jblnpdempinkonbjejolagghdofaipjf
الوصف Allows users to import Chess.com games into Lichess with one click
حجم الملف 3.34 MB
عدد التثبيتات 447
النسخة الحالية 0.80
آخر تحديث 2024-02-24
تاريخ النشر 2021-06-02
تقييم 3.00/5 مجموع تقييمات 6
المطور 17victork
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/WojtekTB/Chesscom-to-lichess-games
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chess.com to Lichess Import",
    "description": "Allows users to import Chess.com games into Lichess with one click",
    "version": "0.80",
    "icons": {
        "48": "logo48.png",
        "128": "logo128.png"
    },
    "action": {
        "default_popup": ".\/donation.html"
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "host_permissions": [
        "https:\/\/lichess.org\/*"
    ],
    "background": {
        "service_worker": ".\/scripts\/background.js",
        "type": "module"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "table.html",
                "scripts\/*",
                "styles\/*"
            ],
            "matches": [
                "https:\/\/www.chess.com\/*",
                "https:\/\/lichess.org\/*"
            ],
            "use_dyanmics_url": true
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.chess.com\/*",
                "https:\/\/lichess.org\/*"
            ],
            "js": [
                ".\/scripts\/ratingWindow.js",
                ".\/scripts\/injectHtmlButtonToPage.js",
                ".\/scripts\/lichessPressAnalysis.js"
            ]
        }
    ],
    "manifest_version": 3
}