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是由17victork開發的Chrome擴展程式,該擴展的主要功能是“Allows users to import Chess.com games into Lichess with one click”。

擴展截圖

screenshot
screenshot

下載Chess.com to Lichess Import擴展crx文件

下載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
官方網址 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
}