Chess Enhancement Suite
Enhances your Chess.com experience!
Chess Enhancement Suiteคืออะไร?
Chess Enhancement Suite เป็นส่วนขยายของ Chrome ที่พัฒนาโดย raphiraede และคุณลักษณะหลักของมันคือ "Enhances your Chess.com experience!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Chess Enhancement Suite
ดาวน์โหลดไฟล์ส่วนขยาย 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" } } |