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 |
官方URL | 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" } } |