Wordle Solver
Automatically solves Wordle
ما هو Wordle Solver؟
Wordle Solver هو إضافة Chrome تم تطويرها بواسطة Alex Craig، والميزة الرئيسية لها هي "Automatically solves Wordle".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Wordle Solver
قم بتنزيل ملفات الامتداد Wordle Solver بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
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 |
عنوان صفحة المساعدة | 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\/*" ] } ] } |