Chess You Can Hear

Adds sound effects that reflect the current chess game being played on lichess.org

Chess You Can Hearคืออะไร?

Chess You Can Hear เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Adds sound effects that reflect the current chess game being played on lichess.org"

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

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

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

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

                        Chess You Can Hear is a program I developed so that anybody could enjoy the sweet sounds of their chess games online. As you play a game of online chess on lichess.com, this chrome extension will follow the moves of the game, and in real-time, play chords and notes that I recorded to reflect the mood of each individual move. The code that I wrote to create this applet can be found at this link: https://github.com/AlexMedoff/ChromeExtensionChessSound

Please understand that this is the first build of the applet, so there are definitely some bugs and some ways the app can be improved upon. Enjoy!

Thanks,
Alex Medoff                    

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

ชื่อ Chess You Can Hear Chess You Can Hear
ID gdgdlkjidhiinbjijnklmhbdiiomgdkn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/chess-you-can-hear/gdgdlkjidhiinbjijnklmhbdiiomgdkn
คำอธิบาย Adds sound effects that reflect the current chess game being played on lichess.org
ขนาดไฟล์ 1.55 MB
จำนวนการติดตั้ง 174
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2018-10-11
วันที่เผยแพร่ 2018-10-11
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/AlexMedoff/ChromeExtensionChessSound
URL หน้าช่วยเหลือ https://github.com/AlexMedoff/ChromeExtensionChessSound
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chess You Can Hear",
    "version": "1.0",
    "description": "Adds sound effects that reflect the current chess game being played on lichess.org",
    "browser_action": {
        "default_icon": "chess_icon.png",
        "default_title": "Chess You Can Hear"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.lichess.org\/*",
                "http:\/\/*.lichess.org\/*"
            ],
            "js": [
                "sounds.js",
                "player.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "*.mp3"
    ]
}