Spelling Bee Hints
Hints for the NYT Spelling Bee
Что такое Spelling Bee Hints?
Spelling Bee Hints - это расширение Chrome, разработанное https://spellingbeehints.com, и его основная функция - "Hints for the NYT Spelling Bee".
Снимки экрана расширения
Скачать файл CRX расширения Spelling Bee Hints
Скачайте файлы расширений Spelling Bee Hints в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Get hints while you're working on the daily spelling bee. See counts of word lengths, beginnings and pangrams. Also shows pangram synonyms. Track your progress, and now this version turns off the flashing cursor when the window is not active.
Основная информация о расширении
Название | Spelling Bee Hints |
ID | mfcgmhobngkmmdcpjmnkdaomjkeogikn |
Официальный URL | https://chromewebstore.google.com/detail/spelling-bee-hints/mfcgmhobngkmmdcpjmnkdaomjkeogikn |
Описание | Hints for the NYT Spelling Bee |
Размер файла | 26.26 KB |
Количество установок | 48 |
Текущая Версия | 1.3 |
Последнее Обновление | 2023-01-13 |
Дата публикации | 2022-02-12 |
Разработчик | https://spellingbeehints.com |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://spellingbeehints.com |
URL страницы помощи | https://spellingbeehints.com |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": "Chrish", "description": "Hints for the NYT Spelling Bee", "manifest_version": 3, "name": "Spelling Bee Hints", "version": "1.3", "permissions": [ "declarativeContent", "scripting", "tabs" ], "host_permissions": [ "https:\/\/www.nytimes.com\/puzzles\/spelling-bee", "https:\/\/spellingbeehints.com\/*" ], "action": { "default_icon": { "16": "icons\/hints-16.png", "24": "icons\/hints-24.png", "32": "icons\/hints-32.png", "48": "icons\/hints-48.png", "64": "icons\/hints-64.png", "128": "icons\/hints-128.png" }, "default_popup": "popup\/popup.html", "default_title": "Spelling Bee Hints" }, "background": { "service_worker": "scripts\/background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.nytimes.com\/puzzles\/spelling-bee", "https:\/\/www.nytimes.com\/puzzles\/spelling-bee?*" ], "js": [ "scripts\/content.js" ] } ], "icons": { "16": "icons\/hints-16.png", "24": "icons\/hints-24.png", "32": "icons\/hints-32.png", "48": "icons\/hints-48.png", "64": "icons\/hints-64.png", "128": "icons\/hints-128.png" } } |