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
公式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"
    ]
}