Chess.com Enhancement Suite
Some additional features on the chess.com website; save the puzzles you failed in puzzle rush and replay them afterwards.
Chess.com Enhancement Suite란 무엇입니까?
Chess.com Enhancement Suite은(는) Nick Vanderhoven에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Some additional features on the chess.com website; save the puzzles you failed in puzzle rush and replay them afterwards."입니다.
확장 프로그램 스크린샷
Chess.com Enhancement Suite 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Non-official extension that aims to enhance the functionality on the already awesome Chess.com. Currently it only allows to store puzzles in puzzle rush, so you can re-play the puzzles you failed and take a deeper look into them. By re-playing the puzzles you failed regularly, you train the patterns that you struggle with and improve on those tactics in general. This extension is a fan-based extension and is not related to the official Chess.com website. As such, functionality can break at any time. The suite is open-source and can be found on https://github.com/nvdh/chesscom-enhancementsuite Quick Guide ------------- To store puzzles: - click on the puzzle number after you finished playing to open the puzzle - click on the little book, under the orange button on the right to store the puzzle To play puzzles: - click on the pawn in the toolbar to open the menu and choose "view saved puzzles" - choose one to play - after you successfully completed the puzzle, you can play the next saved puzzle by pushing the orange button with the 2 arrows (only after successful completion without hints)
확장 프로그램 기본 정보
이름 | |
ID | fjdfjoollgcoghjemknlblbhjlpnkcpi |
공식 URL | https://chrome.google.com/webstore/detail/chesscom-enhancement-suit/fjdfjoollgcoghjemknlblbhjlpnkcpi |
설명 | Some additional features on the chess.com website; save the puzzles you failed in puzzle rush and replay them afterwards. |
파일 크기 | 286 KB |
설치 횟수 | 123 |
현재 버전 | 1.0 |
최근 업데이트 | 2019-02-05 |
출시 날짜 | 2019-02-05 |
평점 | 2.00/5 총 2 개의 평점 |
개발자 | Nick Vanderhoven |
결제 유형 | free |
도움말 페이지 URL | https://github.com/nvdh/chesscom-enhancementsuite |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Chess.com Enhancement Suite", "description": "Some additional features on the chess.com website; save the puzzles you failed in puzzle rush and replay them afterwards.", "version": "1.0", "browser_action": { "default_popup": "browser_action\/chess.html", "default_icon": "browser_action\/icon.png" }, "icons": { "16": "icons\/chess-icon16.png", "32": "icons\/chess-icon32.png", "48": "icons\/chess-icon48.png", "128": "icons\/chess-icon128.png" }, "permissions": [ "activeTab", "declarativeContent", "storage", "tabs" ], "manifest_version": 2, "content_scripts": [ { "matches": [ "https:\/\/*.chess.com\/tactics\/*", "https:\/\/*.chess.com\/puzzles\/*" ], "js": [ "js\/jquery-3.3.1.min.js", "js\/puzzlerush.js" ], "run_at": "document_idle" } ] } |