Wordle Solver

Automatically solves Wordle

Wordle Solver란 무엇입니까?

Wordle Solver은(는) Alex Craig에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically solves Wordle"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        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 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\/*"
            ]
        }
    ]
}