GM Cheems
Chess.com and Lichess assistant
什麼是GM Cheems?
GM Cheems是由http://gmcheems.com開發的Chrome擴展程式,該擴展的主要功能是“Chess.com and Lichess assistant”。
擴展截圖
下載GM Cheems擴展crx文件
下載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 |
官方網址 | 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" ] } |