Chess You Can Hear

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

Chess You Can Hear là gì?

Chess You Can Hear là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Adds sound effects that reflect the current chess game being played on lichess.org".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

Tải xuống tệp CRX của tiện ích mở rộng Chess You Can Hear

Tải xuống các tệp mở rộng Chess You Can Hear dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Chess You Can Hear Chess You Can Hear
ID gdgdlkjidhiinbjijnklmhbdiiomgdkn
URL Chính Thức https://chromewebstore.google.com/detail/chess-you-can-hear/gdgdlkjidhiinbjijnklmhbdiiomgdkn
Mô tả Adds sound effects that reflect the current chess game being played on lichess.org
Kích Thước Tệp 1.55 MB
Số Lần Cài Đặt 174
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2018-10-11
Ngày Phát Hành 2018-10-11
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/AlexMedoff/ChromeExtensionChessSound
URL Trang Trợ Giúp https://github.com/AlexMedoff/ChromeExtensionChessSound
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}