Wordle Helper
A simple extension which provides suggestions for the game Wordle
Wordle Helper là gì?
Wordle Helper là một tiện ích mở rộng Chrome được phát triển bởi ianuany, và tính năng chính của nó là "A simple extension which provides suggestions for the game 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 Helper
Tải xuống các tệp mở rộng Wordle Helper 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
Use this extension on Wordle - https://www.powerlanguage.co.uk/wordle/ to get suggestions on words to use while you play.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Wordle Helper |
ID | dladdminkijkbheckenoahkgmkmpembb |
URL Chính Thức | https://chromewebstore.google.com/detail/wordle-helper/dladdminkijkbheckenoahkgmkmpembb |
Mô tả | A simple extension which provides suggestions for the game Wordle |
Kích Thước Tệp | 14.26 KB |
Số Lần Cài Đặt | 125 |
Phiên Bản Hiện Tại | 2.0 |
Cập Nhật Lần Cuối | 2022-03-02 |
Ngày Phát Hành | 2022-01-12 |
Nhà Phát Triển | ianuany |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/ianunay/wordle-helper |
URL Trang Trợ Giúp | https://github.com/ianunay/wordle-helper/issues |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Wordle Helper", "description": "A simple extension which provides suggestions for the game Wordle", "version": "2.0", "manifest_version": 3, "icons": { "16": "logo.png", "48": "logo.png", "128": "logo.png" }, "action": { "default_popup": "index.html", "default_icon": "logo.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.nytimes.com\/games\/wordle*" ], "js": [ "content-script.js", "wordle-dict.js" ] } ] } |