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是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“Adds sound effects that reflect the current chess game being played on lichess.org”。

擴展截圖

下載Chess You Can Hear擴展crx文件

下載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
官方網址 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"
    ]
}