PawnGun
Live Analysis for Lichess.org Games
什麼是PawnGun?
PawnGun是由PawnGun開發的Chrome擴展程式,該擴展的主要功能是“Live Analysis for Lichess.org Games”。
擴展截圖
下載PawnGun擴展crx文件
下載PawnGun擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension has the following features: * Allows you to view LIVE analysis while you are watching or streaming games being played live in that moment. * This extension DOES NOT suggest good moves, it only shows how bad or good is each side according to a chess engine Analysis. * Works only for Lichess.org ... for now. * Does not support Chess960 variant ... for now. * You should use this extension only for educational purposes. I am not affiliated in any way with lichess or chess.com.
擴展基本資訊
名稱 | PawnGun |
ID | jbabllibbfajahdjapeiphjdiencjame |
官方網址 | https://chromewebstore.google.com/detail/pawngun/jbabllibbfajahdjapeiphjdiencjame |
簡介 | Live Analysis for Lichess.org Games |
檔案大小 | 102 KB |
安裝次數 | 82 |
目前版本 | 0.1 |
更新時間 | 2020-12-26 |
上架時間 | 2020-12-21 |
評分 | 3.00/5 共 2 次評分 |
開發者 | PawnGun |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | http://www.thapawngun.live |
說明頁面URL | http://www.thapawngun.live |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "PawnGun", "description": "Live Analysis for Lichess.org Games", "version": "0.1", "manifest_version": 2, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "permissions": [], "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/lichess.org\/*" ], "js": [ "jquery-3.3.1.min.js", "chess.js", "content.js", "lozza.js" ] } ], "browser_action": { "default_popup": "popup.html" } } |