Wordle Solver
Automatically solves Wordle
Что такое Wordle Solver?
Wordle Solver - это расширение Chrome, разработанное Alex Craig, и его основная функция - "Automatically solves Wordle".
Снимки экрана расширения
Скачать файл CRX расширения Wordle Solver
Скачайте файлы расширений Wordle Solver в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Automatically finds the next best word for you to play in the popular game Wordle! (https://www.powerlanguage.co.uk/wordle/) Using a basic set of 5 letter words and a bit of information theory.
Основная информация о расширении
Название | Wordle Solver |
ID | lfjeflamjnebohfnmijjaphhlimjgnde |
Официальный URL | https://chromewebstore.google.com/detail/wordle-solver/lfjeflamjnebohfnmijjaphhlimjgnde |
Описание | Automatically solves Wordle |
Размер файла | 187 KB |
Количество установок | 650 |
Текущая Версия | 2.3 |
Последнее Обновление | 2022-02-11 |
Дата публикации | 2022-01-22 |
Рейтинг | 1.00/5 Всего 1 оценок |
Разработчик | Alex Craig |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/A-J-C/WordleSolver |
URL страницы помощи | https://github.com/A-J-C/WordleSolver |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Wordle Solver", "description": "Automatically solves Wordle", "version": "2.3", "manifest_version": 3, "permissions": [ "activeTab", "scripting" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/wordle_16.png", "32": "\/images\/wordle_32.png", "48": "\/images\/wordle_48.png", "128": "\/images\/wordle_128.png" } }, "icons": { "16": "\/images\/wordle_16.png", "32": "\/images\/wordle_32.png", "48": "\/images\/wordle_48.png", "128": "\/images\/wordle_128.png" }, "web_accessible_resources": [ { "resources": [ "words\/*" ], "matches": [ "https:\/\/www.powerlanguage.co.uk\/*" ] } ] } |