Chess Enhancement Suite
Enhances your Chess.com experience!
Co je Chess Enhancement Suite?
Chess Enhancement Suite je rozšíření Chrome vyvinuté raphiraede, a jeho hlavní funkcí je „Enhances your Chess.com experience!“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Chess Enhancement Suite
Stáhněte si soubory rozšíření Chess Enhancement Suite ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | |
ID | jpfehobmgoehehgfndokedhaejjjcobp |
Oficiální URL | https://chrome.google.com/webstore/detail/chess-enhancement-suite/jpfehobmgoehehgfndokedhaejjjcobp |
Popis | Enhances your Chess.com experience! |
Velikost souboru | 24.94 KB |
Počet instalací | 201 |
Aktuální Verze | 1.0 |
Poslední Aktualizace | 2019-11-16 |
Datum Vydání | 2019-11-14 |
Hodnocení | 3.50/5 Celkem 2 Hodnocení |
Vývojář | raphiraede |
Typ Platby | free |
Podporované Jazyky | 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" } } |