Wordle Helper

An extension to help you solve Wordles

Что такое Wordle Helper?

Wordle Helper - это расширение Chrome, разработанное mysticuno, и его основная функция - "An extension to help you solve Wordles".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Wordle Helper

Скачайте файлы расширений Wordle Helper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        A small, open-source extension to help you solve Wordles. Use it when playing on https://www.nytimes.com/games/wordle/index.html

See the code at https://github.com/mysticuno/wordle-helper

Not affiliated with Josh, Wordle, or The New York Times.                    

Основная информация о расширении

Название Wordle Helper Wordle Helper
ID lcoapaclmojlnbjipmpfibcjomncgdod
Официальный URL https://chromewebstore.google.com/detail/wordle-helper/lcoapaclmojlnbjipmpfibcjomncgdod
Описание An extension to help you solve Wordles
Размер файла 100 KB
Количество установок 5,240
Текущая Версия 2.3.1
Последнее Обновление 2024-01-17
Дата публикации 2022-01-13
Рейтинг 3.83/5 Всего 6 оценок
Разработчик mysticuno
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/mysticuno/wordle-helper
URL страницы помощи https://github.com/mysticuno/wordle-helper/issues/new
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wordle Helper",
    "description": "An extension to help you solve Wordles",
    "version": "2.3.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/icon-16.png",
            "32": "\/images\/icon-32.png",
            "48": "\/images\/icon-48.png",
            "128": "\/images\/icon-128.png"
        }
    },
    "icons": {
        "16": "\/images\/icon-16.png",
        "32": "\/images\/icon-32.png",
        "48": "\/images\/icon-48.png",
        "128": "\/images\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.powerlanguage.co.uk\/wordle\/*",
                "https:\/\/www.nytimes.com\/games\/wordle\/*"
            ],
            "js": [
                ".\/util\/constants.js",
                ".\/util\/solver.js"
            ]
        }
    ]
}