Fancyground
Custom arrows and square highlights for lichess.org.
什么是Fancyground?
Fancyground是由Albert Ford开发的Chrome扩展程序,该扩展的主要功能是“Custom arrows and square highlights for lichess.org.”。
扩展截图
下载Fancyground扩展crx文件
下载Fancyground扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 扩展基本信息
| 名称 | |
| ID | emmjdpamcocnkljijkbdlihffabahgjd |
| 官方URL | https://chromewebstore.google.com/detail/fancyground/emmjdpamcocnkljijkbdlihffabahgjd |
| 简介 | Custom arrows and square highlights for lichess.org. |
| 文件大小 | 34.87 KB |
| 安装次数 | 308 |
| 当前版本 | 1.2.0 |
| 更新时间 | 2023-08-21 |
| 上架时间 | 2021-07-18 |
| 评分 | 4.00/5 共5次评分 |
| 开发者 | Albert Ford |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/370417/fancyground#readme |
| 支持的语言 | 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"
}
} | |