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
擴展基本資訊
名稱 | Fancyground |
ID | emmjdpamcocnkljijkbdlihffabahgjd |
官方網址 | 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" } } |