mcChessCom - move confirmation for chess.com

Move confirmation for chess.com

ما هو mcChessCom - move confirmation for chess.com؟

mcChessCom - move confirmation for chess.com هو إضافة Chrome تم تطويرها بواسطة mail.vpal، والميزة الرئيسية لها هي "Move confirmation for chess.com".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة mcChessCom - move confirmation for chess.com

قم بتنزيل ملفات الامتداد mcChessCom - move confirmation for chess.com بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Brings move confirmation in Live chess.
Works only with new "Play" interface!
Inspired by pain from the topic https://www.chess.com/forum/view/livechess/move-confirmation

Native integration, using internal API.
Fast toggle button on the right side panel(see screenshot).
Settings:
Confirm starting from N step.
Stop confirm before N seconds.
Alarm if not confirm after N seconds

Additionally:
Confirm hotkeys - Y, Space, Enter
Cancel confirm - N, Esc,Backspace, Delete

Open source https://github.com/VladimirPal/mcChessCom                    

معلومات أساسية عن التمديد

الاسم mcChessCom - move confirmation for chess.com mcChessCom - move confirmation for chess.com
ID hfckonpdalooejghjpbpimhcgighijck
عنوان URL الرسمي https://chromewebstore.google.com/detail/mcchesscom-move-confirmat/hfckonpdalooejghjpbpimhcgighijck
الوصف Move confirmation for chess.com
حجم الملف 176 KB
عدد التثبيتات 142
النسخة الحالية 1.1.1
آخر تحديث 2023-09-28
تاريخ النشر 2022-02-20
تقييم 5.00/5 مجموع تقييمات 1
المطور mail.vpal
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/VladimirPal/mcChessCom
عنوان صفحة المساعدة https://github.com/VladimirPal/mcChessCom/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Move confirmation for chess.com",
    "version": "1.1.1",
    "manifest_version": 3,
    "name": "mcChessCom - move confirmation for chess.com",
    "options_page": "options.html",
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.chess.com\/*"
            ],
            "js": [
                "contentInject.bundle.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "contentScript.bundle.js",
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": [
                "*:\/\/*.chess.com\/*"
            ]
        }
    ]
}