GM Cheems
Chess.com and Lichess assistant
Τι είναι το GM Cheems;
Το GM Cheems είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://gmcheems.com, και η κύρια λειτουργία του είναι "Chess.com and Lichess assistant".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης GM Cheems
Λήψη αρχείων επέκτασης GM Cheems σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
GM Cheems helps you improve your chess skills by providing insight, hints and tips in real-time.
Changelog
------------------
0.11.0 - January 22, 2023
Added option to auto-play from a combination of book and engine movies
Draw opening book move arrows alongside engine move arrows
Chess board that is shown when hovering over a line will now stay in place as you move your cursor over each move
Split up the Gameplay options into three sub-menus
0.10.0 - December 24, 2022
Opening Books can now be imported and used during analysis! 🚀
Moves are now shown in SAN notation
0.9.0 - November 19, 2022
Added support for puzzle mode on Chess.com
Added option to choose how many lines to analyze
Added option to choose which line to draw arrows for
Fixed a bug where some options weren't being applied correctly Βασικές Πληροφορίες Επέκτασης
| Όνομα | |
| ID | bmkmigdaklnhklmiialljbpjiedmnifh |
| Επίσημο URL | https://chrome.google.com/webstore/detail/gm-cheems/bmkmigdaklnhklmiialljbpjiedmnifh |
| Περιγραφή | Chess.com and Lichess assistant |
| Μέγεθος Αρχείου | 1.44 MB |
| Αριθμός Εγκαταστάσεων | 662 |
| Τρέχουσα Έκδοση | 0.11.4 |
| Τελευταία Ενημέρωση | 2023-05-17 |
| Ημερομηνία Δημοσίευσης | 2022-08-02 |
| Αξιολόγηση | 3.86/5 Συνολικά 7 Αξιολογήσεις |
| Προγραμματιστής | http://gmcheems.com |
| Ηλεκτρονικό ταχυδρομείο | [email protected] |
| Τύπος Πληρωμής | in_app |
| Ιστότοπος Επέκτασης | https://www.gmcheems.com/ |
| Διεύθυνση URL της Σελίδας Βοήθειας | https://gmcheems.com |
| Υποστηριζόμενες Γλώσσες | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"description": "Chess.com and Lichess assistant",
"version": "0.11.4",
"name": "GM Cheems",
"manifest_version": 3,
"action": [],
"background": {
"service_worker": "background-wrapper.js"
},
"icons": {
"128": "cheems_128.png"
},
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"https:\/\/lichess.org\/*"
],
"js": [
"gmcContent.bundle.js"
]
},
{
"run_at": "document_idle",
"matches": [
"https:\/\/*.chess.com\/*"
],
"js": [
"gmcContent.bundle.js"
]
},
{
"run_at": "document_idle",
"matches": [
"https:\/\/lichess.org\/*",
"https:\/\/*.chess.com\/*"
],
"js": [
"contentApp.bundle.js"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"web_accessible_resources": [
{
"resources": [
"pages\/opening-book-import.html",
"pages\/assets\/opening-book-import.bundle.js",
"pages\/st11.html",
"pages\/assets\/st11.wasm",
"pages\/assets\/st11.js",
"pages\/assets\/st11-proc.bundle.js"
],
"matches": [
"https:\/\/lichess.org\/*",
"https:\/\/*.chess.com\/*"
],
"use_dynamic_url": true
}
],
"sandbox": {
"pages": [
"pages\/st11.html",
"pages\/opening-book-import.html"
]
},
"permissions": [
"storage"
]
} | |