Chess.com Voice Commentary (simplified)
Reading chess moves.
ما هو Chess.com Voice Commentary (simplified)؟
Chess.com Voice Commentary (simplified) هو إضافة Chrome تم تطويرها بواسطة weizubc، والميزة الرئيسية لها هي "Reading chess moves.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Chess.com Voice Commentary (simplified)
قم بتنزيل ملفات الامتداد Chess.com Voice Commentary (simplified) بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Previous voice commentary extensions for chess.com have broken for some reason. This is a simplified version that only reads new moves from 'board-layout-sidebar', so it is less likely to break in future, and easier to fix when it does. Source code at https://github.com/renshenw/chesscom-voice-simplified. "Piece Notation" in board settings must be "Text". Works for both human and computer opponents. All copyrights still go to chess.com.
معلومات أساسية عن التمديد
الاسم | Chess.com Voice Commentary (simplified) |
ID | mjmamkihdmfkogidombgdaepnikajemc |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/chesscom-voice-commentary/mjmamkihdmfkogidombgdaepnikajemc |
الوصف | Reading chess moves. |
حجم الملف | 869 KB |
عدد التثبيتات | 52 |
النسخة الحالية | 1.0 |
آخر تحديث | 2023-02-23 |
تاريخ النشر | 2023-02-22 |
تقييم | 5.00/5 مجموع تقييمات 3 |
المطور | weizubc |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Chess.com Voice Commentary (simplified)", "version": "1.0", "background": { "service_worker": "background.js" }, "description": "Reading chess moves.", "content_scripts": [ { "matches": [ "https:\/\/www.chess.com\/*" ], "js": [ "contentScript.js" ] } ], "icons": { "128": "icon-128.png" }, "web_accessible_resources": [ { "resources": [ "mp3\/*" ], "matches": [ "https:\/\/www.chess.com\/*" ] } ], "manifest_version": 3 } |