ChessablePractice
Practice Chessable positions versus Lichess
ما هو ChessablePractice؟
ChessablePractice هو إضافة Chrome تم تطويرها بواسطة FechtSport، والميزة الرئيسية لها هي "Practice Chessable positions versus Lichess".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة ChessablePractice
قم بتنزيل ملفات الامتداد ChessablePractice بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Automates task of loading current position from Chessable.com variations into a new tab to practice on Lichess.com versus computer. If activated from Chessable study mode will select first or last position in variation (specified by options setting).
معلومات أساسية عن التمديد
الاسم | |
ID | nengkiedldfcnadeapalbfompahjojdc |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/chessablepractice/nengkiedldfcnadeapalbfompahjojdc |
الوصف | Practice Chessable positions versus Lichess |
حجم الملف | 19.86 KB |
عدد التثبيتات | 22 |
النسخة الحالية | 0.00.07 |
آخر تحديث | 2018-04-07 |
تاريخ النشر | 2018-04-07 |
المطور | FechtSport |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "name": "ChessablePractice", "description": "Practice Chessable positions versus Lichess", "homepage_url": "https:\/\/www.chessable.com\/profile\/FechtSport\/", "version": "0.00.07", "manifest_version": 2, "background": { "persistent": false, "scripts": [ "src\/background.js" ] }, "content_scripts": [ { "js": [ "src\/simulate.js" ], "matches": [ "https:\/\/www.chessable.com\/variation\/*", "https:\/\/*.lichess.org\/*" ] }, { "js": [ "src\/analysis.js" ], "matches": [ "https:\/\/*.lichess.org\/*" ] }, { "js": [ "src\/dbg.js", "src\/parseParams.js", "src\/getPosition.js" ], "matches": [ "https:\/\/www.chessable.com\/learn\/*", "https:\/\/www.chessable.com\/variation\/*", "https:\/\/www.chessable.com\/practice\/*" ] } ], "icons": { "16": "icons\/16x16.png", "19": "icons\/19x19.png", "38": "icons\/38x38.png", "48": "icons\/48x48.png", "128": "icons\/128x128.png" }, "page_action": { "default_icon": { "19": "icons\/19x19.png", "38": "icons\/38x38.png" }, "default_title": "Practice versus Lichess" }, "options_ui": { "page": "src\/options.html", "chrome_style": true }, "permissions": [ "tabs", "webNavigation", "storage", "https:\/\/*.lichess.org\/", "https:\/\/www.chessable.com\/" ], "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx" } |