Wordle Solver - Can You Beat It?

Solve the Wordle word of the day with an algorithm.

Wordle Solver - Can You Beat It?란 무엇입니까?

Wordle Solver - Can You Beat It?은(는) adamthewebdeveloper에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Solve the Wordle word of the day with an algorithm."입니다.

확장 프로그램 스크린샷

screenshot

Wordle Solver - Can You Beat It? 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Wordle Solver - Can You Beat It? Wordle Solver - Can You Beat It?
ID cobhbmncjhlgmfndhdloojjojcnbmlic
공식 URL https://chromewebstore.google.com/detail/wordle-solver-can-you-bea/cobhbmncjhlgmfndhdloojjojcnbmlic
설명 Solve the Wordle word of the day with an algorithm.
파일 크기 102 KB
설치 횟수 99
현재 버전 0.0.3
최근 업데이트 2022-07-07
출시 날짜 2022-01-20
평점 5.00/5 총 1 개의 평점
개발자 adamthewebdeveloper
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/zvakanaka/wordle-solver-chrome-extension
지원되는 언어 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"
    }
}