Chess Pro

Suggesting the best move on Lichess (voice suggestion) and automatically moving the pieces How to run the extension: - Open the…

Chess Proคืออะไร?

Chess Pro เป็นส่วนขยายของ Chrome ที่พัฒนาโดย developer101 และคุณลักษณะหลักของมันคือ "Suggesting the best move on Lichess (voice suggestion) and automatically moving the pieces How to run the extension: - Open the…"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Chess Pro

ดาวน์โหลดไฟล์ส่วนขยาย Chess Pro ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        Suggesting the best move on Lichess (voice suggestion) and automatically moving the pieces

How to run the extension:
-	Open the Extensions by clicking on the puzzle icon next to your profile avatar
-	Click on the pushpin icon next to ChessPro to pin the extension, a knight icon will show up on the taskbar
-	Click on the knight icon
-	Turn on the extension

Features:
-	Customize analysis depth. Higher depths take longer to analyze but will result in better moves. We recommend using depth 9 or above. Note: Using depth too high risks your account getting closed
-	Max wait time: Only applies to “Automove” mode. This allows you to set how long it takes for the extension to make the next move.
-	Automove: The extension automatically plays for you. 
-	Voice suggestion: The extension will tell you which move to play using voice suggestion (Recommended on Lichess).
-	Auto play new game: The extension will automatically find a new game once the current one finishes.
-	Bongcloud: Joke opening.

Notes:
1.	The extension doesn’t highlight the positions when playing on lichess.org, is this an error?
No, this is intentional. lichess.org can detect cheating if the extension draws on the screen, so we disabled this feature entirely. However, you can use the extension by turning on either the autoplay mode or voice suggestion mode.
2.	If you have any suggestions or found any issues, please email us at [email protected].                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Chess Pro Chess Pro
ID oabpbnkggjfhodegmdoaamjfimfbomna
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/chess-pro/oabpbnkggjfhodegmdoaamjfimfbomna
คำอธิบาย Suggesting the best move on Lichess (voice suggestion) and automatically moving the pieces How to run the extension: - Open the…
ขนาดไฟล์ 198 KB
จำนวนการติดตั้ง 14,371
เวอร์ชันปัจจุบัน 2.1.1
อัปเดตครั้งล่าสุด 2023-06-21
วันที่เผยแพร่ 2021-08-16
คะแนน 3.96/5 รวมทั้งหมด 69 คะแนน
ผู้พัฒนา developer101
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chess Pro",
    "version": "2.1.1",
    "icons": {
        "128": ".\/assets\/images\/icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.lichess.org\/*",
                "https:\/\/*.lichess.org\/*"
            ],
            "js": [
                ".\/scripts\/build.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "A popup will come here."
    },
    "web_accessible_resources": [
        "background.html"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "storage",
        "debugger"
    ]
}