Chess Enhancement Suite
Enhances your Chess.com experience!
Chess Enhancement Suite क्या है?
Chess Enhancement Suite raphiraede द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Enhances your Chess.com experience!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Chess Enhancement Suite एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Don't pay for the Chess.com Premium subscription, simply download Chess Enhancement Suite! Chess Enhancement Suite automatically records data about your chess games in real time, allowing you to analyze your past games with Stockfish, the worlds strongest chess engine! Chess Enhancement Suite also allows you to analyze your current board state during a live game of chess! With the power of Stockfish at your fingertips, you can't be beat! Check out the code here: https://github.com/Raphiraede/Chess-Enhancement-Suite
एक्सटेंशन की मूल जानकारी
नाम | |
ID | jpfehobmgoehehgfndokedhaejjjcobp |
आधिकारिक URL | https://chrome.google.com/webstore/detail/chess-enhancement-suite/jpfehobmgoehehgfndokedhaejjjcobp |
विवरण | Enhances your Chess.com experience! |
फ़ाइल का आकार | 24.94 KB |
स्थापना संख्या | 201 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2019-11-16 |
प्रकाशन तिथि | 2019-11-14 |
रेटिंग | 3.50/5 कुल 2 रेटिंग्स |
डेवलपर | raphiraede |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Chess Enhancement Suite", "version": "1.0", "description": "Enhances your Chess.com experience!", "manifest_version": 2, "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/ChessEnhancementSuiteIcon16.png", "32": "images\/ChessEnhancementSuiteIcon32.png", "48": "images\/ChessEnhancementSuiteIcon48.png", "128": "images\/ChessEnhancementSuiteIcon128.png" } }, "permissions": [ "tabs", "storage", "activeTab", "https:\/\/lichess.org\/paste" ], "background": { "scripts": [ "PGNconverter.js", "lichessOpener.js", "controller.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/www.chess.com\/live*" ], "run_at": "document_idle", "js": [ "contentScript.js" ] } ], "icons": { "16": "images\/ChessEnhancementSuiteIcon16.png", "32": "images\/ChessEnhancementSuiteIcon32.png", "48": "images\/ChessEnhancementSuiteIcon48.png", "128": "images\/ChessEnhancementSuiteIcon128.png" } } |