ChessOnSteroids
Live best moves for chess.com
Τι είναι το ChessOnSteroids;
Το ChessOnSteroids είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον TheTL, και η κύρια λειτουργία του είναι "Live best moves for chess.com".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης ChessOnSteroids
Λήψη αρχείων επέκτασης ChessOnSteroids σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
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" ] } |