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」です。
拡張機能のスクリーンショット
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! 🎮 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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
} | |