Chess.com Voice Commentary

Hear chess moves and annotation spoken as they are played on Chess.com.

Chess.com Voice Commentaryคืออะไร?

Chess.com Voice Commentary เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.chess.com และคุณลักษณะหลักของมันคือ "Hear chess moves and annotation spoken as they are played on Chess.com."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Chess.com Voice Commentary

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

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

                        **Please approve new permission, Notifications** If you're upgrading, the extension might be disabled due a new permission, Notifications, being requested in version 0.0.3. This is needed for the extension to prompt you to interact with the Chess.com page when it detects the browser blocks audio. See the 2nd screenshot for an example and https://goo.gl/xX8pDD for more.

Hear chess moves and annotation spoken as they are played on Chess.com. Choose from the default voice (helpful for those who are visually challenged), or from Chess.com's top commentator IM Danny Rensch as he hilariously comments on the game.

Have an issue or a suggestion? Go to https://github.com/ChessCom/chess-com-voice/issues



-- What's New: --
0.0.5 (May 22, 2022)
- Pick up game change via url instead of node being added to fix game over not being read (#14)

0.0.4 (March 14, 2022)
- Upgrade to Manifest V3
- Fix game over not being read (#12)

0.0.3 (March 8, 2022)
- Read moves of an observed game when showing Game after clicking New Game (#6)
- Avoid double reading (#5)
- Gracefully fail when audio blocked and prompt user (#10)

0.0.2 (March 5, 2022)
- Fixes from @rctay's fork

0.0.1: Initial release                    

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

ชื่อ Chess.com Voice Commentary Chess.com Voice Commentary
ID kampphbbbggcjlepmgfogpkpembcaphk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/chesscom-voice-commentary/kampphbbbggcjlepmgfogpkpembcaphk
คำอธิบาย Hear chess moves and annotation spoken as they are played on Chess.com.
ขนาดไฟล์ 16.13 MB
จำนวนการติดตั้ง 3,157
เวอร์ชันปัจจุบัน 0.0.5
อัปเดตครั้งล่าสุด 2022-05-22
วันที่เผยแพร่ 2019-12-21
คะแนน 2.26/5 รวมทั้งหมด 27 คะแนน
ผู้พัฒนา https://www.chess.com
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://support.chess.com
URL หน้านโยบายความเป็นส่วนตัว https://www.chess.com/legal
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Hear chess moves and annotation spoken as they are played on Chess.com.",
    "version": "0.0.5",
    "name": "Chess.com Voice Commentary",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-128.png"
    },
    "permissions": [
        "storage",
        "notifications"
    ],
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.chess.com\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "sounds\/*"
            ],
            "matches": [
                "https:\/\/www.chess.com\/*"
            ]
        }
    ],
    "manifest_version": 3,
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}