mcChessCom - move confirmation for chess.com
Move confirmation for chess.com
什麼是mcChessCom - move confirmation for chess.com?
mcChessCom - move confirmation for chess.com是由mail.vpal開發的Chrome擴展程式,該擴展的主要功能是“Move confirmation for chess.com”。
擴展截圖
下載mcChessCom - move confirmation for chess.com擴展crx文件
下載mcChessCom - move confirmation for chess.com擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Brings move confirmation in Live chess.
Works only with new "Play" interface!
Inspired by pain from the topic https://www.chess.com/forum/view/livechess/move-confirmation
Native integration, using internal API.
Fast toggle button on the right side panel(see screenshot).
Settings:
Confirm starting from N step.
Stop confirm before N seconds.
Alarm if not confirm after N seconds
Additionally:
Confirm hotkeys - Y, Space, Enter
Cancel confirm - N, Esc,Backspace, Delete
Open source https://github.com/VladimirPal/mcChessCom 擴展基本資訊
| 名稱 | |
| ID | hfckonpdalooejghjpbpimhcgighijck |
| 官方網址 | https://chromewebstore.google.com/detail/mcchesscom-move-confirmat/hfckonpdalooejghjpbpimhcgighijck |
| 簡介 | Move confirmation for chess.com |
| 檔案大小 | 176 KB |
| 安裝次數 | 142 |
| 目前版本 | 1.1.1 |
| 更新時間 | 2023-09-28 |
| 上架時間 | 2022-02-20 |
| 評分 | 5.00/5 共 1 次評分 |
| 開發者 | mail.vpal |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/VladimirPal/mcChessCom |
| 說明頁面URL | https://github.com/VladimirPal/mcChessCom/issues |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"description": "Move confirmation for chess.com",
"version": "1.1.1",
"manifest_version": 3,
"name": "mcChessCom - move confirmation for chess.com",
"options_page": "options.html",
"action": {
"default_popup": "popup.html",
"default_icon": "icon-34.png"
},
"icons": {
"128": "icon-128.png"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.chess.com\/*"
],
"js": [
"contentInject.bundle.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"contentScript.bundle.js",
"icon-128.png",
"icon-34.png"
],
"matches": [
"*:\/\/*.chess.com\/*"
]
}
]
} | |