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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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