Wordle Answer Finder
Helps you with the Wordle
Wordle Answer Finderคืออะไร?
Wordle Answer Finder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย idkwtph และคุณลักษณะหลักของมันคือ "Helps you with the Wordle"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Wordle Answer Finder
ดาวน์โหลดไฟล์ส่วนขยาย Wordle Answer Finder ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
The best Wordle helper! 🚩Features 🌟Autofilling the answer when you open Wordle 🌟Dark Mode and Light Mode to help your eyes' 🌟(Optional) Making the Wordle website's theme match the extension's theme 🌟More features coming soon! 🚩Permissions 🌟"Read and change all your data on the websites you visit": Allows for Autofill and the theme matching feature. It is on all sites and not just "nytimes.com" so that it can show a link when the current URL is not "nytimes.com". 🚩The Github repository 🌟https://github.com/idkwtph/wordleanswerfinder
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Wordle Answer Finder |
ID | dkdjnmadfgeococnnkmepbnplfllaffg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/wordle-answer-finder/dkdjnmadfgeococnnkmepbnplfllaffg |
คำอธิบาย | Helps you with the Wordle |
ขนาดไฟล์ | 141 KB |
จำนวนการติดตั้ง | 34 |
เวอร์ชันปัจจุบัน | 1.1.7 |
อัปเดตครั้งล่าสุด | 2022-10-20 |
วันที่เผยแพร่ | 2022-09-29 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | idkwtph |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Wordle Answer Finder", "version": "1.1.7", "description": "Helps you with the Wordle", "permissions": [ "tabs", "storage" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.nytimes.com\/games\/wordle\/index.html" ], "js": [ "wordle.js" ], "css": [ "wordle.css" ] } ], "options_page": "options.html", "action": { "default_popup": "popup.html" }, "icons": { "16": "icons\/checked_checkbox_64px.png", "48": "icons\/checked_checkbox_64px.png", "128": "icons\/checked_checkbox_64px.png" } } |