Wordle Solver - Can You Beat It?
Solve the Wordle word of the day with an algorithm.
Wordle Solver - Can You Beat It? là gì?
Wordle Solver - Can You Beat It? là một tiện ích mở rộng Chrome được phát triển bởi adamthewebdeveloper, và tính năng chính của nó là "Solve the Wordle word of the day with an algorithm.".
Ả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 - Can You Beat It?
Tải xuống các tệp mở rộng Wordle Solver - Can You Beat It? 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
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Wordle Solver - Can You Beat It? |
ID | cobhbmncjhlgmfndhdloojjojcnbmlic |
URL Chính Thức | https://chromewebstore.google.com/detail/wordle-solver-can-you-bea/cobhbmncjhlgmfndhdloojjojcnbmlic |
Mô tả | Solve the Wordle word of the day with an algorithm. |
Kích Thước Tệp | 102 KB |
Số Lần Cài Đặt | 99 |
Phiên Bản Hiện Tại | 0.0.3 |
Cập Nhật Lần Cuối | 2022-07-07 |
Ngày Phát Hành | 2022-01-20 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | adamthewebdeveloper |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://github.com/zvakanaka/wordle-solver-chrome-extension |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |