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."

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

screenshot

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

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

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

                        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                    

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

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