Chess Assistant
Chess Assistant provides chess hints and analysis on chess.com
Vad är Chess Assistant?
Chess Assistant är en Chrome-tillägg utvecklad av Branimir Klarić, och dess huvudfunktion är "Chess Assistant provides chess hints and analysis on chess.com".
Tilläggsskärmbilder
Ladda ner Chess Assistant-förlängningens CRX-fil
Ladda ner Chess Assistant-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Features:
✓ Show attackers for each square
✓ Highlight losing and winning trades
✓ Preview your next move
✓ Visualize entire attack lines
Works on all chess.com boards, including live games, bot games, puzzles and more.
Comes with a free 30-day trial. Receive unlimited access for a one-time payment.
Feel free to leave any feedback you might have, I would be happy to hear it. Grundläggande Information om Tillägg
| Namn | |
| ID | gpgnadojeplpnonnckfbpfpedoinfcln |
| Officiell webbadress | https://chromewebstore.google.com/detail/chess-assistant/gpgnadojeplpnonnckfbpfpedoinfcln |
| Beskrivning | Chess Assistant provides chess hints and analysis on chess.com |
| Filstorlek | 153 KB |
| Antal Installationer | 517 |
| Aktuell Version | 0.2.1 |
| Senast Uppdaterad | 2023-09-29 |
| Publiceringsdatum | 2023-07-10 |
| Betyg | 1.00/5 Totalt 1 Betyg |
| Utvecklare | Branimir Klarić |
| E-post | [email protected] |
| Betalningssätt | in_app |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Chess Assistant",
"description": "Chess Assistant provides chess hints and analysis on chess.com",
"version": "0.2.1",
"icons": {
"192": "icon.png"
},
"action": {
"default_icon": {
"192": "icon.png"
},
"default_title": "Chess Assistant"
},
"permissions": [
"storage"
],
"host_permissions": [
"https:\/\/*.chess.com\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.chess.com\/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
]
}
],
"options_ui": {
"page": "options.html",
"open_in_tab": false
}
} | |