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