Wordle Helper
An extension to help you solve Wordles
ما هو Wordle Helper؟
Wordle Helper هو إضافة Chrome تم تطويرها بواسطة mysticuno، والميزة الرئيسية لها هي "An extension to help you solve Wordles".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Wordle Helper
قم بتنزيل ملفات الامتداد Wordle Helper بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
A small, open-source extension to help you solve Wordles. Use it when playing on https://www.nytimes.com/games/wordle/index.html See the code at https://github.com/mysticuno/wordle-helper Not affiliated with Josh, Wordle, or The New York Times.
معلومات أساسية عن التمديد
الاسم | Wordle Helper |
ID | lcoapaclmojlnbjipmpfibcjomncgdod |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/wordle-helper/lcoapaclmojlnbjipmpfibcjomncgdod |
الوصف | An extension to help you solve Wordles |
حجم الملف | 100 KB |
عدد التثبيتات | 5,240 |
النسخة الحالية | 2.3.1 |
آخر تحديث | 2024-01-17 |
تاريخ النشر | 2022-01-13 |
تقييم | 3.83/5 مجموع تقييمات 6 |
المطور | mysticuno |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/mysticuno/wordle-helper |
عنوان صفحة المساعدة | https://github.com/mysticuno/wordle-helper/issues/new |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Wordle Helper", "description": "An extension to help you solve Wordles", "version": "2.3.1", "manifest_version": 3, "background": { "service_worker": "background.js" }, "permissions": [ "activeTab" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/icon-16.png", "32": "\/images\/icon-32.png", "48": "\/images\/icon-48.png", "128": "\/images\/icon-128.png" } }, "icons": { "16": "\/images\/icon-16.png", "32": "\/images\/icon-32.png", "48": "\/images\/icon-48.png", "128": "\/images\/icon-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.powerlanguage.co.uk\/wordle\/*", "https:\/\/www.nytimes.com\/games\/wordle\/*" ], "js": [ ".\/util\/constants.js", ".\/util\/solver.js" ] } ] } |