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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
}
} | |