Flip Lichess Knights
Flip the direction of the knights on lichess.org
Qu'est-ce que Flip Lichess Knights ?
Flip Lichess Knights est une extension Chrome développée par Sam Sweeney, et sa fonction principale est "Flip the direction of the knights on lichess.org".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Flip Lichess Knights
Téléchargez les fichiers d'extension Flip Lichess Knights au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | cdkfpbdifpndnncjmfciiphhfjjfbpad |
URL Officiel | https://chromewebstore.google.com/detail/flip-lichess-knights/cdkfpbdifpndnncjmfciiphhfjjfbpad |
Description | Flip the direction of the knights on lichess.org |
Taille du Fichier | 30.63 KB |
Nombre d'Installations | 38 |
Version Actuelle | 0.0.0.1 |
Dernière Mise à Jour | 2021-03-18 |
Date de Publication | 2021-03-18 |
Développeur | Sam Sweeney |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |