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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Move confirmation for chess.com"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में mcChessCom - move confirmation for chess.com एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
| आधिकारिक URL | 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\/*"
]
}
]
} | |