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
官方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
}