Chess.com Insights
Shows Win/Lose/Draw and average accuracy for players on chess.com
Chess.com Insightsとは何ですか?
Chess.com Insightsはthielejuによって開発されたChromeの拡張機能で、その主な機能は「Shows Win/Lose/Draw and average accuracy for players on chess.com」です。
拡張機能のスクリーンショット
Chess.com Insights拡張機能のCRXファイルをダウンロード
Chess.com Insights拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension shows statistics for chess.com games.
Use the icon in the top right corner to adjust the settings.
- First three numbers are the wins/loses/draws of the player
- Percentage in brackets is the average accuracy of the player
- Accuracy is only available on reviewed games
- Hover over the stats to see information how many games the average is based on
https://github.com/thieleju/chess-com-insights 拡張機能の基本情報
| 名前 | |
| ID | mobpnhbkmljienoleojnhbfhkhodpffe |
| 公式URL | https://chromewebstore.google.com/detail/chesscom-insights/mobpnhbkmljienoleojnhbfhkhodpffe |
| 説明 | Shows Win/Lose/Draw and average accuracy for players on chess.com |
| ファイルサイズ | 2.28 MB |
| インストール数 | 612 |
| 現在のバージョン | 2.5.1 |
| 最終更新日 | 2024-02-29 |
| 公開日 | 2023-06-18 |
| 評価 | 5.00/5 合計 4 レビュー |
| 開発者 | thieleju |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/thieleju/chess-com-insights |
| ヘルプページのURL | https://github.com/thieleju/chess-com-insights |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Chess.com Insights",
"description": "Shows Win\/Lose\/Draw and average accuracy for players on chess.com",
"author": "thieleju",
"manifest_version": 3,
"version": "2.5.1",
"permissions": [
"activeTab",
"scripting",
"storage"
],
"action": {
"default_locale": "en",
"default_title": "Chess.com Insights",
"default_popup": "index.html"
},
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"background": {
"service_worker": "service-worker-loader.js",
"type": "module"
},
"content_scripts": [
{
"js": [
"assets\/insights.ts-loader-c0be3281.js"
],
"matches": [
"https:\/\/*.chess.com\/play\/online*",
"https:\/\/*.chess.com\/play\/online\/*",
"https:\/\/*.chess.com\/game\/daily\/*",
"https:\/\/*.chess.com\/game\/live\/*",
"https:\/\/*.chess.com\/live\/game\/*",
"https:\/\/*.chess.com\/analysis\/game\/live\/*"
]
}
],
"host_permissions": [
"https:\/\/*.chess.com\/*"
],
"web_accessible_resources": [
{
"matches": [
"https:\/\/*.chess.com\/*",
"https:\/\/*.chess.com\/*",
"https:\/\/*.chess.com\/*",
"https:\/\/*.chess.com\/*",
"https:\/\/*.chess.com\/*",
"https:\/\/*.chess.com\/*"
],
"resources": [
"assets\/settings-b0edff48.js",
"assets\/insights.ts-6085b883.js"
],
"use_dynamic_url": true
}
]
} | |