Wordle Answer Finder

Helps you with the Wordle

Wordle Answer Finder란 무엇입니까?

Wordle Answer Finder은(는) idkwtph에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Helps you with the Wordle"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Wordle Answer Finder 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Wordle Answer Finder Wordle Answer Finder
ID dkdjnmadfgeococnnkmepbnplfllaffg
공식 URL https://chromewebstore.google.com/detail/wordle-answer-finder/dkdjnmadfgeococnnkmepbnplfllaffg
설명 Helps you with the Wordle
파일 크기 141 KB
설치 횟수 34
현재 버전 1.1.7
최근 업데이트 2022-10-20
출시 날짜 2022-09-29
평점 5.00/5 총 1 개의 평점
개발자 idkwtph
이메일 [email protected]
결제 유형 free
지원되는 언어 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"
    }
}