NYT Crossword Fullscreen
Adds a fullscreen button to the NYT crossword UI.
Was ist NYT Crossword Fullscreen?
NYT Crossword Fullscreen ist eine Chrome-Erweiterung, die von Jasper entwickelt wurde, und ihr Hauptmerkmal ist "Adds a fullscreen button to the NYT crossword UI.".
Erweiterungsscreenshots
NYT Crossword Fullscreen-Erweiterungs-CRX-Datei herunterladen
Laden Sie NYT Crossword Fullscreen-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Adds a full-screen mode button to the New York Times crossword puzzle interface. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | lpnihcgnplcjdlfmdlejbpcnehidmfon |
| Offizielle URL | https://chromewebstore.google.com/detail/nyt-crossword-fullscreen/lpnihcgnplcjdlfmdlejbpcnehidmfon |
| Beschreibung | Adds a fullscreen button to the NYT crossword UI. |
| Dateigröße | 7.96 KB |
| Installationsanzahl | 72 |
| Aktuelle Version | 1.80 |
| Letztes Update | 2024-02-19 |
| Veröffentlichungsdatum | 2022-11-08 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | Jasper |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/jasperandrew/nyt-crossword-fullscreen |
| Unterstützte Sprachen | 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\/*"
]
}
]
} | |