Wordle Solver - Can You Beat It?
Solve the Wordle word of the day with an algorithm.
O que é Wordle Solver - Can You Beat It??
Wordle Solver - Can You Beat It? é uma extensão do Chrome desenvolvida por adamthewebdeveloper, e sua principal característica é "Solve the Wordle word of the day with an algorithm.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Wordle Solver - Can You Beat It?
Baixe arquivos de extensão Wordle Solver - Can You Beat It? no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
This is not an official Wordle extension. It will automate game-play on the Wordle website, allowing you to see how your Wordle skills compare with the computer. Icons from popo2021 on flaticon.com: https://www.flaticon.com/free-icon/letter-w_7312338
Informações Básicas da Extensão
Nome | Wordle Solver - Can You Beat It? |
ID | cobhbmncjhlgmfndhdloojjojcnbmlic |
URL Oficial | https://chromewebstore.google.com/detail/wordle-solver-can-you-bea/cobhbmncjhlgmfndhdloojjojcnbmlic |
Descrição | Solve the Wordle word of the day with an algorithm. |
Tamanho do Arquivo | 102 KB |
Contagem de Instalações | 99 |
Versão Atual | 0.0.3 |
Última Atualização | 2022-07-07 |
Data de Publicação | 2022-01-20 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | adamthewebdeveloper |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Ajuda | https://github.com/zvakanaka/wordle-solver-chrome-extension |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Wordle Solver - Can You Beat It?", "short_name": "Wordle Solver", "description": "Solve the Wordle word of the day with an algorithm.", "version": "0.0.3", "action": { "default_title": "Wordle Solver", "default_icon": { "96": "icons\/icon_96.png" }, "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/www.nytimes.com\/games\/wordle*" ], "js": [ "vendor\/browser-polyfill.min.js", "vendor\/bootstrap.bundle.min.js", "contentScripts\/wordlist.js", "contentScripts\/utils.js", "contentScripts\/main.js" ], "css": [ "vendor\/bootstrap.min.css" ], "all_frames": true } ], "icons": { "48": "icons\/icon_48.png", "96": "icons\/icon_96.png" } } |