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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds sound effects that reflect the current chess game being played on lichess.org"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Chess You Can Hear एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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" ] } |