Wordle Helper
An extension to help you solve Wordles
Wordle Helper क्या है?
Wordle Helper mysticuno द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension to help you solve Wordles"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Wordle Helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
सहायता पृष्ठ URL | 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" ] } ] } |