Chess Move Say
Reads chess move names aloud after moves are played.
ما هو Chess Move Say؟
Chess Move Say هو إضافة Chrome تم تطويرها بواسطة Advait Shinde، والميزة الرئيسية لها هي "Reads chess move names aloud after moves are played.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Chess Move Say
قم بتنزيل ملفات الامتداد Chess Move Say بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Chess Move Say ============== Chess Move Say will read aloud chess moves played on Lichess.org. Chess Move Say is open source. Please contribute at: https://gitlab.com/advait3000/chess-move-say
معلومات أساسية عن التمديد
الاسم | |
ID | bffngaamkkngdgfojfpahbhmfodpbbho |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/chess-move-say/bffngaamkkngdgfojfpahbhmfodpbbho |
الوصف | Reads chess move names aloud after moves are played. |
حجم الملف | 1.73 MB |
عدد التثبيتات | 165 |
النسخة الحالية | 1.0 |
آخر تحديث | 2019-11-22 |
تاريخ النشر | 2019-11-22 |
تقييم | 4.00/5 مجموع تقييمات 1 |
المطور | Advait Shinde |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://gitlab.com/advait3000/chess-move-say |
عنوان صفحة المساعدة | https://gitlab.com/advait3000/chess-move-say/issues |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Reads chess move names aloud after moves are played.", "version": "1.0", "name": "Chess Move Say", "background": { "scripts": [ "background.bundle.js" ], "persistent": false }, "icons": { "32": "icon-32.png", "64": "icon-64.png", "128": "icon-128.png", "256": "icon-256.png", "512": "icon-512.png" }, "browser_action": { "default_icon": { "32": "icon-32.png", "64": "icon-64.png", "128": "icon-128.png", "256": "icon-256.png", "512": "icon-512.png" } }, "permissions": [ "declarativeContent", "storage", "https:\/\/lichess.org\/*" ], "manifest_version": 2, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "content_scripts": [ { "matches": [ "https:\/\/lichess.org\/*" ], "run_at": "document_end", "js": [ "cs.bundle.js" ] } ], "web_accessible_resources": [ "direct_script.bundle.js", "*.wav" ] } |