Chess Aid

Chess extension to help users improve in the game of chess!

Chess Aid란 무엇입니까?

Chess Aid은(는) https://chess-aid.herokuapp.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chess extension to help users improve in the game of chess!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Chess Aid 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension is for learning purposes only and not to be used in live chess games.

Supported sites
-------------------------
https://lichess.org/

Note: For the free trial to work, you must have sync turned on for your google account (Click on your google profile avatar to the right of the address bar and ensure it says "Sync is on").

If you have any issues at all, please join the discord server for addiational help!
Discord Server: https://discord.gg/dH4BWZ3qyW  (Updates, help, feedback)

A chess extension that can
- Highlight the best move using stockfish 🐟
- Show the evaluation bar 💯
- Show openings explorer 🥾
- Highlight enemy pieces under attack 🟩
- Highlight friendly pieces under attack 🟥
- Highlight squares controlled by the enemy🟧
- Change the engine depth  🎚️
- Calculate moves extra fast with bullet mode 🚀
- Human mode 👩 (Stockfish will make mistakes like a human)
- Hand and brain mode 🧠 (Stockfish will tell you which piece to move, but not where)
- Toggle the extension off an on with ctrl + v
- Toggle best move off and on with ctrl + b  (Note: even if best move is on, the extension needs to be running in order for it to be displayed)

How to get better using this extension:
1. Improve your board vision by highlighting enemy and friendly pieces under attack
2. Get better at openings by training with the openings explorer
3. Increase your tactical awareness by training with the evaluation bar. A sudden jump in the evaluation bar means there is now a tactic that you can play!
4. Improve your tactics and overall play with hand and brain mode!

Instructions For Use
------------------------------------
1. Start a chess game
2. Click on the extension to launch the pop up menu
3. Click on the start button on the pop up menu to activate the extension and start highlighting squares. If you wish to stop highlighting squares, click on the pause button.
4. Toggle the sliders to control which squares you would like to highlight, and select the colours that you would like to use.
5. Enjoy!

Please leave a comment and review if you are enjoying the extension, or if you have any feedback!

Credit for the chess knight icon: Chess icons created by Freepik - Flaticon                    

확장 프로그램 기본 정보

이름 Chess Aid Chess Aid
ID cocfgoaklpgnlpbicmgjadaadikoljaf
공식 URL https://chromewebstore.google.com/detail/chess-aid/cocfgoaklpgnlpbicmgjadaadikoljaf
설명 Chess extension to help users improve in the game of chess!
파일 크기 973 KB
설치 횟수 11,843
현재 버전 3.4.0
최근 업데이트 2023-10-14
출시 날짜 2022-05-25
평점 4.61/5 총 72 개의 평점
개발자 https://chess-aid.herokuapp.com
이메일 [email protected]
결제 유형 in_app
확장 프로그램 웹 사이트 https://chess-aid.herokuapp.com/
도움말 페이지 URL https://docs.google.com/document/d/1ySt2rlqVqWS2NnihCdRo2MKhmudmozmRZGZTsBxQncw
개인정보 보호 정책 페이지 URL https://docs.google.com/document/d/1PPRJNLnnyaWX-oAYr7Ot7921SCCKL7EYTG1oWiMBYnk/edit?usp=sharing
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chess Aid",
    "description": "Chess extension to help users improve in the game of chess!",
    "version": "3.4.0",
    "manifest_version": 3,
    "icons": {
        "16": "knight-16.png",
        "48": "knight-48.png",
        "128": "knight-128.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "scripting",
        "identity",
        "identity.email"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.chess.com\/*",
                "https:\/\/lichess.org\/*",
                "https:\/\/extensionpay.com\/*"
            ],
            "js": [
                "chess.min.js",
                "ExtPay.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "https:\/\/www.chess.com\/*",
        "https:\/\/lichess.org\/*"
    ],
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuJcujeXScBjwB2yWk4CDy12WjzMGmjAd1jpdRs2ZiFw0iK2DBzdb\/vCSUgvkwk5vQlBgvyPjgKu7s9zfCtOd0G0Xp1IcQB+s7T3QkHphxCfgoqH2qYHbcfsqN1hSKLPDe0O5JGncYQih1YfecocAduuS7pJPf9v9BQnXiKXWN5VcPj3Slqgpt3xRemDmjR6uI1fUIjIXB7tjYSzRFEUT7mSFaEgcOSW00iAUUrGQfXlz3qLohPsdnplWit8qSlWd865ec7TtEk3P6PQ8E71ysT+nzpLIVujSS0ZeKhHdU4wSpOb4XCGfv696GjKOGsVsx5GHNyKbBGGzpzg25pyP2QIDAQAB"
}