Fancyground
Custom arrows and square highlights for lichess.org.
Co to jest Fancyground?
Fancyground to rozszerzenie Chrome opracowane przez Albert Ford, a jego główną funkcją jest „Custom arrows and square highlights for lichess.org.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Fancyground
Pobierz pliki rozszerzeń Fancyground w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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 Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | emmjdpamcocnkljijkbdlihffabahgjd |
| Oficjalny URL | https://chromewebstore.google.com/detail/fancyground/emmjdpamcocnkljijkbdlihffabahgjd |
| Opis | Custom arrows and square highlights for lichess.org. |
| Rozmiar pliku | 34.87 KB |
| Liczba instalacji | 308 |
| Aktualna Wersja | 1.2.0 |
| Ostatnia Aktualizacja | 2023-08-21 |
| Data Publikacji | 2021-07-18 |
| Ocena | 4.00/5 Łącznie 5 Oceny |
| Deweloper | Albert Ford |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/370417/fancyground#readme |
| Obsługiwane Języki | 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"
}
} | |