Chess.com to Lichess Import
Allows users to import Chess.com games into Lichess with one click
Vad är Chess.com to Lichess Import?
Chess.com to Lichess Import är en Chrome-tillägg utvecklad av 17victork, och dess huvudfunktion är "Allows users to import Chess.com games into Lichess with one click".
Tilläggsskärmbilder
Ladda ner Chess.com to Lichess Import-förlängningens CRX-fil
Ladda ner Chess.com to Lichess Import-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
🚀 One-click import your chess.com games to lichess.org! 🎮
Grundläggande Information om Tillägg
Namn | Chess.com to Lichess Import |
ID | jblnpdempinkonbjejolagghdofaipjf |
Officiell webbadress | https://chromewebstore.google.com/detail/chesscom-to-lichess-impor/jblnpdempinkonbjejolagghdofaipjf |
Beskrivning | Allows users to import Chess.com games into Lichess with one click |
Filstorlek | 3.34 MB |
Antal Installationer | 447 |
Aktuell Version | 0.80 |
Senast Uppdaterad | 2024-02-24 |
Publiceringsdatum | 2021-06-02 |
Betyg | 3.00/5 Totalt 6 Betyg |
Utvecklare | 17victork |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/WojtekTB/Chesscom-to-lichess-games |
Stödda Språk | 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 } |