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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
URL หน้าช่วยเหลือ 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\/*"
            ]
        }
    ]
}