Chess.com to Lichess Import
Allows users to import Chess.com games into Lichess with one click
Apa itu Chess.com to Lichess Import?
Chess.com to Lichess Import adalah ekstensi Chrome yang dikembangkan oleh 17victork, dan fitur utamanya adalah "Allows users to import Chess.com games into Lichess with one click".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Chess.com to Lichess Import
Unduh file ekstensi Chess.com to Lichess Import dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
🚀 One-click import your chess.com games to lichess.org! 🎮
Informasi Dasar Ekstensi
Nama | Chess.com to Lichess Import |
ID | jblnpdempinkonbjejolagghdofaipjf |
URL Resmi | https://chromewebstore.google.com/detail/chesscom-to-lichess-impor/jblnpdempinkonbjejolagghdofaipjf |
Deskripsi | Allows users to import Chess.com games into Lichess with one click |
Ukuran File | 3.34 MB |
Jumlah Instalasi | 447 |
Versi Saat Ini | 0.80 |
Terakhir Diperbarui | 2024-02-24 |
Tanggal Publikasi | 2021-06-02 |
Penilaian | 3.00/5 Total 6 Penilaian |
Pengembang | 17victork |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/WojtekTB/Chesscom-to-lichess-games |
Bahasa yang Didukung | 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 } |