ChessOnSteroids

Live best moves for chess.com

ChessOnSteroids란 무엇입니까?

ChessOnSteroids은(는) TheTL에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Live best moves for chess.com"입니다.

확장 프로그램 스크린샷

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

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

확장 프로그램 사용 설명서

                        Chess guide for the most popular chess website https://www.chess.com.

Sept 2021,
• Supports all types of connections on Chess.com.
• Premium members now get to choose the strength of the bot. You can choose between Beginner, Intermediate and Advanced bot.

Steps to activate the account :-
• Register your account on https://chessonsteroids.web.app/ 
• Purchase the plan for chess.com 
• This should automatically activate the account, in case there is some issue then manually copy the activation key from https://chessonsteroids.web.app/ and then paste it in the chrome extension popup. 
• In case of issues with account activation feel free to shoot out an email at [email protected]. Emails will be replied within 2 to 3 days. 

Chess.com bot extension.
This extension uses an advanced chess engine to suggest best moves on the fly (no need to click button to get suggestions and so on).
Premium members have option to choose between 3 levels of bots:
• Beginner < 1500.
• Intermediate ~ 2000.
• Advanced (GM level).
The engine has been programmed to play like a human.

The extension provides best move suggestions by highlighting the tiles on the chess board. 

• Handy in your chess improvements.
• Could be used for understanding games of strong GMs as it also suggests moves in spectator mode.


Privacy Policy :- 
• https://chessonsteroids.web.app/privacy-policy.html                    

확장 프로그램 기본 정보

이름 ChessOnSteroids ChessOnSteroids
ID cmpjnbjbkjmmppgbbejhokpehdbpfgpo
공식 URL https://chrome.google.com/webstore/detail/chessonsteroids/cmpjnbjbkjmmppgbbejhokpehdbpfgpo
설명 Live best moves for chess.com
파일 크기 1.2 MB
설치 횟수 1,192
현재 버전 5.0.5
최근 업데이트 2021-09-20
출시 날짜 2019-12-09
평점 3.20/5 총 71 개의 평점
개발자 TheTL
이메일 [email protected]
결제 유형 in_app
확장 프로그램 웹 사이트 https://chessonsteroids.web.app
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ChessOnSteroids",
    "description": "Live best moves for chess.com",
    "version": "5.0.5",
    "permissions": [
        "*:\/\/*.chess.com\/*",
        "storage",
        "identity",
        "identity.email",
        "https:\/\/www.googleapis.com\/"
    ],
    "oauth2": {
        "client_id": "146044255480-t8qo7680k9vuhnbmd7bsn8gt4i8mr3u8.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/plus.login",
            "https:\/\/www.googleapis.com\/auth\/chromewebstore.readonly",
            "https:\/\/www.googleapis.com\/auth\/userinfo.profile",
            "https:\/\/www.googleapis.com\/auth\/userinfo.email"
        ]
    },
    "content_security_policy": "script-src 'self' https:\/\/apis.google.com https:\/\/www.gstatic.com\/ https:\/\/cdn.firebase.com https:\/\/*.firebaseio.com  https:\/\/www.googleapis.com https:\/\/js.stripe.com https:\/\/code.jquery.com\/jquery-3.6.0.min.js; object-src 'self'",
    "browser_action": {
        "default_icon": "img\/iconnn.png",
        "default_popup": "index.html"
    },
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.chess.com\/*",
                "https:\/\/*.chess.com\/*"
            ],
            "js": [
                "js\/bot.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "js\/intercept.js",
        "js\/background.js",
        "js\/stockfish.js",
        "index.html"
    ]
}