NYT Crossword Fullscreen

Adds a fullscreen button to the NYT crossword UI.

Co je NYT Crossword Fullscreen?

NYT Crossword Fullscreen je rozšíření Chrome vyvinuté Jasper, a jeho hlavní funkcí je „Adds a fullscreen button to the NYT crossword UI.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření NYT Crossword Fullscreen

Stáhněte si soubory rozšíření NYT Crossword Fullscreen ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Adds a full-screen mode button to the New York Times crossword puzzle interface.                    

Základní Informace o Rozšíření

Název NYT Crossword Fullscreen NYT Crossword Fullscreen
ID lpnihcgnplcjdlfmdlejbpcnehidmfon
Oficiální URL https://chromewebstore.google.com/detail/nyt-crossword-fullscreen/lpnihcgnplcjdlfmdlejbpcnehidmfon
Popis Adds a fullscreen button to the NYT crossword UI.
Velikost souboru 7.96 KB
Počet instalací 72
Aktuální Verze 1.80
Poslední Aktualizace 2024-02-19
Datum Vydání 2022-11-08
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář Jasper
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/jasperandrew/nyt-crossword-fullscreen
Podporované Jazyky en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "NYT Crossword Fullscreen",
    "version": "1.80",
    "description": "Adds a fullscreen button to the NYT crossword UI.",
    "icons": {
        "48": "icons\/icon-48.png",
        "96": "icons\/icon-96.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.nytimes.com\/crosswords\/game\/*"
            ],
            "js": [
                "fullscreen.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "fullscreen.svg"
            ],
            "matches": [
                "*:\/\/www.nytimes.com\/*"
            ]
        }
    ]
}