Fancyground

Custom arrows and square highlights for lichess.org.

Vad är Fancyground?

Fancyground är en Chrome-tillägg utvecklad av Albert Ford, och dess huvudfunktion är "Custom arrows and square highlights for lichess.org.".

Tilläggsskärmbilder

screenshot

Ladda ner Fancyground-förlängningens CRX-fil

Ladda ner Fancyground-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Fancyground Fancyground
ID emmjdpamcocnkljijkbdlihffabahgjd
Officiell webbadress https://chromewebstore.google.com/detail/fancyground/emmjdpamcocnkljijkbdlihffabahgjd
Beskrivning Custom arrows and square highlights for lichess.org.
Filstorlek 34.87 KB
Antal Installationer 308
Aktuell Version 1.2.0
Senast Uppdaterad 2023-08-21
Publiceringsdatum 2021-07-18
Betyg 4.00/5 Totalt 5 Betyg
Utvecklare Albert Ford
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/370417/fancyground#readme
Stödda Språk 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"
    }
}