Chess Enhancement Suite
Enhances your Chess.com experience!
什麼是Chess Enhancement Suite?
Chess Enhancement Suite是由raphiraede開發的Chrome擴展程式,該擴展的主要功能是“Enhances your Chess.com experience!”。
擴展截圖
下載Chess Enhancement Suite擴展crx文件
下載Chess Enhancement Suite擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Don't pay for the Chess.com Premium subscription, simply download Chess Enhancement Suite! Chess Enhancement Suite automatically records data about your chess games in real time, allowing you to analyze your past games with Stockfish, the worlds strongest chess engine! Chess Enhancement Suite also allows you to analyze your current board state during a live game of chess! With the power of Stockfish at your fingertips, you can't be beat! Check out the code here: https://github.com/Raphiraede/Chess-Enhancement-Suite
擴展基本資訊
名稱 | |
ID | jpfehobmgoehehgfndokedhaejjjcobp |
官方網址 | https://chrome.google.com/webstore/detail/chess-enhancement-suite/jpfehobmgoehehgfndokedhaejjjcobp |
簡介 | Enhances your Chess.com experience! |
檔案大小 | 24.94 KB |
安裝次數 | 201 |
目前版本 | 1.0 |
更新時間 | 2019-11-16 |
上架時間 | 2019-11-14 |
評分 | 3.50/5 共 2 次評分 |
開發者 | raphiraede |
付費類型 | free |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Chess Enhancement Suite", "version": "1.0", "description": "Enhances your Chess.com experience!", "manifest_version": 2, "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/ChessEnhancementSuiteIcon16.png", "32": "images\/ChessEnhancementSuiteIcon32.png", "48": "images\/ChessEnhancementSuiteIcon48.png", "128": "images\/ChessEnhancementSuiteIcon128.png" } }, "permissions": [ "tabs", "storage", "activeTab", "https:\/\/lichess.org\/paste" ], "background": { "scripts": [ "PGNconverter.js", "lichessOpener.js", "controller.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/www.chess.com\/live*" ], "run_at": "document_idle", "js": [ "contentScript.js" ] } ], "icons": { "16": "images\/ChessEnhancementSuiteIcon16.png", "32": "images\/ChessEnhancementSuiteIcon32.png", "48": "images\/ChessEnhancementSuiteIcon48.png", "128": "images\/ChessEnhancementSuiteIcon128.png" } } |