Chess.com to Lichess Import

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

Hvad er Chess.com to Lichess Import?

Chess.com to Lichess Import er en Chrome-udvidelse udviklet af 17victork, og dens hovedfunktion er "Allows users to import Chess.com games into Lichess with one click".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Chess.com to Lichess Import-udvidelses-CRX-fil

Download Chess.com to Lichess Import-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Chess.com to Lichess Import Chess.com to Lichess Import
ID jblnpdempinkonbjejolagghdofaipjf
Officiel URL https://chromewebstore.google.com/detail/chesscom-to-lichess-impor/jblnpdempinkonbjejolagghdofaipjf
Beskrivelse Allows users to import Chess.com games into Lichess with one click
Filstørrelse 3.34 MB
Antal Installationer 447
Nuværende Version 0.80
Senest Opdateret 2024-02-24
Udgivelsesdato 2021-06-02
Bedømmelse 3.00/5 Samlet 6 Bedømmelser
Udvikler 17victork
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/WojtekTB/Chesscom-to-lichess-games
Understøttede Sprog 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
}