Chess Assistant
Chess Assistant provides chess hints and analysis on chess.com
Chess Assistant क्या है?
Chess Assistant Branimir Klarić द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chess Assistant provides chess hints and analysis on chess.com"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Chess Assistant एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Features: ✓ Show attackers for each square ✓ Highlight losing and winning trades ✓ Preview your next move ✓ Visualize entire attack lines Works on all chess.com boards, including live games, bot games, puzzles and more. Comes with a free 30-day trial. Receive unlimited access for a one-time payment. Feel free to leave any feedback you might have, I would be happy to hear it.
एक्सटेंशन की मूल जानकारी
नाम | Chess Assistant |
ID | gpgnadojeplpnonnckfbpfpedoinfcln |
आधिकारिक URL | https://chromewebstore.google.com/detail/chess-assistant/gpgnadojeplpnonnckfbpfpedoinfcln |
विवरण | Chess Assistant provides chess hints and analysis on chess.com |
फ़ाइल का आकार | 153 KB |
स्थापना संख्या | 517 |
वर्तमान संस्करण | 0.2.1 |
अंतिम अपडेट | 2023-09-29 |
प्रकाशन तिथि | 2023-07-10 |
रेटिंग | 1.00/5 कुल 1 रेटिंग्स |
डेवलपर | Branimir Klarić |
ईमेल | [email protected] |
भुगतान के प्रकार | in_app |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Chess Assistant", "description": "Chess Assistant provides chess hints and analysis on chess.com", "version": "0.2.1", "icons": { "192": "icon.png" }, "action": { "default_icon": { "192": "icon.png" }, "default_title": "Chess Assistant" }, "permissions": [ "storage" ], "host_permissions": [ "https:\/\/*.chess.com\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.chess.com\/*" ], "js": [ "content.js" ], "css": [ "content.css" ] } ], "options_ui": { "page": "options.html", "open_in_tab": false } } |