Flip Lichess Knights
Flip the direction of the knights on lichess.org
¿Qué es Flip Lichess Knights?
Flip Lichess Knights es una extensión de Chrome desarrollada por Sam Sweeney, y su función principal es "Flip the direction of the knights on lichess.org".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Flip Lichess Knights
Descarga archivos de extensión Flip Lichess Knights en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | |
ID | cdkfpbdifpndnncjmfciiphhfjjfbpad |
URL Oficial | https://chromewebstore.google.com/detail/flip-lichess-knights/cdkfpbdifpndnncjmfciiphhfjjfbpad |
Descripción | Flip the direction of the knights on lichess.org |
Tamaño del Archivo | 30.63 KB |
Cantidad de Instalaciones | 38 |
Versión Actual | 0.0.0.1 |
Última Actualización | 2021-03-18 |
Fecha de Publicación | 2021-03-18 |
Desarrollador | Sam Sweeney |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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" ] } |