Chess.com to Lichess Import

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

Wat is Chess.com to Lichess Import?

Chess.com to Lichess Import is een Chrome-extensie ontwikkeld door 17victork, en de belangrijkste functie is "Allows users to import Chess.com games into Lichess with one click".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Chess.com to Lichess Import

Download Chess.com to Lichess Import-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Chess.com to Lichess Import Chess.com to Lichess Import
ID jblnpdempinkonbjejolagghdofaipjf
Officiële URL https://chromewebstore.google.com/detail/chesscom-to-lichess-impor/jblnpdempinkonbjejolagghdofaipjf
Beschrijving Allows users to import Chess.com games into Lichess with one click
Bestandsgrootte 3.34 MB
Aantal Installaties 447
Huidige Versie 0.80
Laatst Bijgewerkt 2024-02-24
Publicatiedatum 2021-06-02
Beoordeling 3.00/5 Totaal 6 Beoordelingen
Ontwikkelaar 17victork
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/WojtekTB/Chesscom-to-lichess-games
Ondersteunde Talen 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
}