Flip Lichess Knights
Flip the direction of the knights on lichess.org
Was ist Flip Lichess Knights?
Flip Lichess Knights ist eine Chrome-Erweiterung, die von Sam Sweeney entwickelt wurde, und ihr Hauptmerkmal ist "Flip the direction of the knights on lichess.org".
Erweiterungsscreenshots
Flip Lichess Knights-Erweiterungs-CRX-Datei herunterladen
Laden Sie Flip Lichess Knights-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
Flip Lichess Knights allows you to customize your board UI when playing chess on lichess.org. By default knights on Lichess face to the right. Flip Lichess Knights allows you to toggle their direction, so they can face either to the right or to the left.
Grundlegende Informationen zur Erweiterung
Name | |
ID | cdkfpbdifpndnncjmfciiphhfjjfbpad |
Offizielle URL | https://chromewebstore.google.com/detail/flip-lichess-knights/cdkfpbdifpndnncjmfciiphhfjjfbpad |
Beschreibung | Flip the direction of the knights on lichess.org |
Dateigröße | 30.63 KB |
Installationsanzahl | 38 |
Aktuelle Version | 0.0.0.1 |
Letztes Update | 2021-03-18 |
Veröffentlichungsdatum | 2021-03-18 |
Entwickler | Sam Sweeney |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Flip Lichess Knights", "description": "Flip the direction of the knights on lichess.org", "version": "0.0.0.1", "manifest_version": 3, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.lichess.org\/*" ], "js": [ "flip-knights.js" ] } ], "action": { "default_popup": "popup.html", "default_icon": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "storage" ] } |