Flip Lichess Knights
Flip the direction of the knights on lichess.org
What is Flip Lichess Knights?
Flip Lichess Knights is a Chrome extension developed by Sam Sweeney, and its main feature is "Flip the direction of the knights on lichess.org".
Extension Screenshots
Download Flip Lichess Knights Extension CRX File
Download Flip Lichess Knights extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | cdkfpbdifpndnncjmfciiphhfjjfbpad |
Official URL | https://chromewebstore.google.com/detail/flip-lichess-knights/cdkfpbdifpndnncjmfciiphhfjjfbpad |
Description | Flip the direction of the knights on lichess.org |
File Size | 30.63 KB |
Installation Count | 38 |
Current Version | 0.0.0.1 |
Last Updated | 2021-03-18 |
Publish Date | 2021-03-18 |
Developer | Sam Sweeney |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } |