Fancyground

Custom arrows and square highlights for lichess.org.

Что такое Fancyground?

Fancyground - это расширение Chrome, разработанное Albert Ford, и его основная функция - "Custom arrows and square highlights for lichess.org.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Fancyground

Скачайте файлы расширений 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 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"
    }
}