NYT Crossword Fullscreen

Adds a fullscreen button to the NYT crossword UI.

Vad är NYT Crossword Fullscreen?

NYT Crossword Fullscreen är en Chrome-tillägg utvecklad av Jasper, och dess huvudfunktion är "Adds a fullscreen button to the NYT crossword UI.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner NYT Crossword Fullscreen-förlängningens CRX-fil

Ladda ner NYT Crossword Fullscreen-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

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

Grundläggande Information om Tillägg

Namn NYT Crossword Fullscreen NYT Crossword Fullscreen
ID lpnihcgnplcjdlfmdlejbpcnehidmfon
Officiell webbadress https://chromewebstore.google.com/detail/nyt-crossword-fullscreen/lpnihcgnplcjdlfmdlejbpcnehidmfon
Beskrivning Adds a fullscreen button to the NYT crossword UI.
Filstorlek 7.96 KB
Antal Installationer 72
Aktuell Version 1.80
Senast Uppdaterad 2024-02-19
Publiceringsdatum 2022-11-08
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare Jasper
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/jasperandrew/nyt-crossword-fullscreen
Stödda Språk 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\/*"
            ]
        }
    ]
}