Wordle Answer Finder

Helps you with the Wordle

O que é Wordle Answer Finder?

Wordle Answer Finder é uma extensão do Chrome desenvolvida por idkwtph, e sua principal característica é "Helps you with the Wordle".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Wordle Answer Finder

Baixe arquivos de extensão Wordle Answer Finder 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

                        The best Wordle helper!

🚩Features
      
      🌟Autofilling the answer when you open Wordle
      🌟Dark Mode and Light Mode to help your eyes'
      🌟(Optional) Making the Wordle website's theme match the extension's 
           theme
      🌟More features coming soon!

🚩Permissions
      
      🌟"Read and change all your data on the websites you visit": Allows for 
            Autofill and the theme matching feature. It is on all sites and not just 
            "nytimes.com" so that it can show a link when the current URL is not 
            "nytimes.com". 

🚩The Github repository

      🌟https://github.com/idkwtph/wordleanswerfinder                    

Informações Básicas da Extensão

Nome Wordle Answer Finder Wordle Answer Finder
ID dkdjnmadfgeococnnkmepbnplfllaffg
URL Oficial https://chromewebstore.google.com/detail/wordle-answer-finder/dkdjnmadfgeococnnkmepbnplfllaffg
Descrição Helps you with the Wordle
Tamanho do Arquivo 141 KB
Contagem de Instalações 34
Versão Atual 1.1.7
Última Atualização 2022-10-20
Data de Publicação 2022-09-29
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor idkwtph
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Wordle Answer Finder",
    "version": "1.1.7",
    "description": "Helps you with the Wordle",
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.nytimes.com\/games\/wordle\/index.html"
            ],
            "js": [
                "wordle.js"
            ],
            "css": [
                "wordle.css"
            ]
        }
    ],
    "options_page": "options.html",
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/checked_checkbox_64px.png",
        "48": "icons\/checked_checkbox_64px.png",
        "128": "icons\/checked_checkbox_64px.png"
    }
}