Wordle Solver
Automatically solves Wordle
Wordle Solver là gì?
Wordle Solver là một tiện ích mở rộng Chrome được phát triển bởi Alex Craig, và tính năng chính của nó là "Automatically solves Wordle".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Wordle Solver
Tải xuống các tệp mở rộng Wordle Solver dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Wordle Solver |
ID | lfjeflamjnebohfnmijjaphhlimjgnde |
URL Chính Thức | https://chromewebstore.google.com/detail/wordle-solver/lfjeflamjnebohfnmijjaphhlimjgnde |
Mô tả | Automatically solves Wordle |
Kích Thước Tệp | 187 KB |
Số Lần Cài Đặt | 650 |
Phiên Bản Hiện Tại | 2.3 |
Cập Nhật Lần Cuối | 2022-02-11 |
Ngày Phát Hành | 2022-01-22 |
Đánh Giá | 1.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Alex Craig |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/A-J-C/WordleSolver |
URL Trang Trợ Giúp | https://github.com/A-J-C/WordleSolver |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } ] } |