Chess Openings
Chess Openings Tutorial Database
Was ist Chess Openings?
Chess Openings ist eine Chrome-Erweiterung, die von nerdromere entwickelt wurde, und ihr Hauptmerkmal ist "Chess Openings Tutorial Database".
Erweiterungsscreenshots
Chess Openings-Erweiterungs-CRX-Datei herunterladen
Laden Sie Chess Openings-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Provides useful explanations to chess positions. Users should install it because it instantly provides useful explanations based on the position of the chessboard. This is very useful for beginners who want to learn chess and need a quick way to understand the chess position.
Grundlegende Informationen zur Erweiterung
Name | Chess Openings |
ID | kpgbnbaohhomckijheoipglnckokahph |
Offizielle URL | https://chromewebstore.google.com/detail/chess-openings/kpgbnbaohhomckijheoipglnckokahph |
Beschreibung | Chess Openings Tutorial Database |
Dateigröße | 77.11 KB |
Installationsanzahl | 14 |
Aktuelle Version | 1.0 |
Letztes Update | 2023-01-31 |
Veröffentlichungsdatum | 2023-01-31 |
Entwickler | nerdromere |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Chess Openings", "description": "Chess Openings Tutorial Database", "version": "1.0", "manifest_version": 3, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.chess.com\/explorer*" ], "js": [ "content-scripts\/ChessComContentScript.js" ] } ], "permissions": [ "tabs" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/logo16.png", "32": "\/images\/logo32.png", "48": "\/images\/logo48.png", "128": "\/images\/logo128.png" } }, "icons": { "16": "\/images\/logo16.png", "32": "\/images\/logo32.png", "48": "\/images\/logo48.png", "128": "\/images\/logo128.png" } } |