Fancyground
Custom arrows and square highlights for lichess.org.
What is Fancyground?
Fancyground is a Chrome extension developed by Albert Ford, and its main feature is "Custom arrows and square highlights for lichess.org.".
Extension Screenshots
Download Fancyground Extension CRX File
Download Fancyground 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
Fancyground changes the appearance of arrows and circles on lichess.org. - Highlight entire squares instead of drawing circles - Customize arrow and highlight colors - Arrows no longer cover the pieces that they originate from Source code available at https://github.com/370417/fancyground
Extension Basic Information
Name | Fancyground |
ID | emmjdpamcocnkljijkbdlihffabahgjd |
Official URL | https://chromewebstore.google.com/detail/fancyground/emmjdpamcocnkljijkbdlihffabahgjd |
Description | Custom arrows and square highlights for lichess.org. |
File Size | 34.87 KB |
Installation Count | 308 |
Current Version | 1.2.0 |
Last Updated | 2023-08-21 |
Publish Date | 2021-07-18 |
Rating | 4.00/5 Total 5 Ratings |
Developer | Albert Ford |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/370417/fancyground#readme |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Fancyground", "version": "1.2.0", "description": "Custom arrows and square highlights for lichess.org.", "author": "Albert Ford", "homepage_url": "https:\/\/github.com\/370417\/fancyground", "permissions": [ "storage" ], "icons": { "48": "icons\/[email protected]", "128": "icons\/[email protected]" }, "content_scripts": [ { "matches": [ "https:\/\/lichess.org\/*" ], "js": [ "bundled\/index.js" ], "css": [ "static\/index.css" ] } ], "options_ui": { "page": "static\/options.html" }, "action": { "default_icon": "icons\/[email protected]", "default_popup": "static\/options.html", "default_title": "Fancyground" } } |