NYT Crossword Fullscreen
Adds a fullscreen button to the NYT crossword UI.
Что такое NYT Crossword Fullscreen?
NYT Crossword Fullscreen - это расширение Chrome, разработанное Jasper, и его основная функция - "Adds a fullscreen button to the NYT crossword UI.".
Снимки экрана расширения
Скачать файл CRX расширения NYT Crossword Fullscreen
Скачайте файлы расширений NYT Crossword Fullscreen в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Adds a full-screen mode button to the New York Times crossword puzzle interface. Основная информация о расширении
| Название | |
| ID | lpnihcgnplcjdlfmdlejbpcnehidmfon |
| Официальный URL | https://chromewebstore.google.com/detail/nyt-crossword-fullscreen/lpnihcgnplcjdlfmdlejbpcnehidmfon |
| Описание | Adds a fullscreen button to the NYT crossword UI. |
| Размер файла | 7.96 KB |
| Количество установок | 72 |
| Текущая Версия | 1.80 |
| Последнее Обновление | 2024-02-19 |
| Дата публикации | 2022-11-08 |
| Рейтинг | 5.00/5 Всего 1 оценок |
| Разработчик | Jasper |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/jasperandrew/nyt-crossword-fullscreen |
| Поддерживаемые языки | 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\/*"
]
}
]
} | |