Free Chess Analysis
Analyze your chess.com games on lichess for free.
ما هو Free Chess Analysis؟
Free Chess Analysis هو إضافة Chrome تم تطويرها بواسطة imlokesh، والميزة الرئيسية لها هي "Analyze your chess.com games on lichess for free.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Free Chess Analysis
قم بتنزيل ملفات الامتداد Free Chess Analysis بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This chrome extension will help you analyze your chess.com games on lichess. Just click the icon in your extension bar when you're on a chess.com game and a new lichess tab will open with your game. How It Works: - User clicks the extension icon when on a page like `chess.com/game/live/*` - The extension gets the pgn from chess.com share option. - The extension creates a new tab with url `lichess.org/paste` and imports your game. - The extension will automatically turn on local analysis and flip the board if you were black. Suggestions I welcome suggestions and bug reports. Please open an issue on github if you would like to suggest something.
معلومات أساسية عن التمديد
الاسم | Free Chess Analysis |
ID | fkakfklkhmjkkehkjchemdgeoldekdml |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/free-chess-analysis/fkakfklkhmjkkehkjchemdgeoldekdml |
الوصف | Analyze your chess.com games on lichess for free. |
حجم الملف | 290 KB |
عدد التثبيتات | 1,766 |
النسخة الحالية | 0.0.5 |
آخر تحديث | 2024-02-20 |
تاريخ النشر | 2023-03-07 |
تقييم | 5.00/5 مجموع تقييمات 7 |
المطور | imlokesh |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/imlokesh/free-chess-analysis |
عنوان صفحة المساعدة | https://github.com/imlokesh/free-chess-analysis |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Free Chess Analysis", "description": "Analyze your chess.com games on lichess for free. ", "version": "0.0.5", "icons": { "64": "img\/64.png", "128": "img\/128.png", "512": "img\/512.png" }, "background": { "service_worker": "background.js" }, "permissions": [ "declarativeContent", "activeTab", "scripting" ], "host_permissions": [ "https:\/\/www.chess.com\/*", "https:\/\/lichess.org\/*" ], "action": { "default_title": "Analyze on Lichess", "default_icon": { "16": "img\/16.png", "32": "img\/32.png", "48": "img\/48.png", "64": "img\/64.png", "128": "img\/128.png", "512": "img\/512.png" } } } |