Chess You Can Hear

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

O que é Chess You Can Hear?

Chess You Can Hear é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "Adds sound effects that reflect the current chess game being played on lichess.org".

Capturas de Tela da Extensão

Baixar o arquivo CRX da Extensão Chess You Can Hear

Baixe arquivos de extensão Chess You Can Hear no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Chess You Can Hear Chess You Can Hear
ID gdgdlkjidhiinbjijnklmhbdiiomgdkn
URL Oficial https://chromewebstore.google.com/detail/chess-you-can-hear/gdgdlkjidhiinbjijnklmhbdiiomgdkn
Descrição Adds sound effects that reflect the current chess game being played on lichess.org
Tamanho do Arquivo 1.55 MB
Contagem de Instalações 174
Versão Atual 1.0
Última Atualização 2018-10-11
Data de Publicação 2018-10-11
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Unknown
Tipo de Pagamento free
Site da Extensão https://github.com/AlexMedoff/ChromeExtensionChessSound
URL da Página de Ajuda https://github.com/AlexMedoff/ChromeExtensionChessSound
Idiomas Suportados 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"
    ]
}