Wordle Cheat Sheet
Adds a helpful cheat sheet of word sufggestions to Wordle.
Wordle Cheat Sheet क्या है?
Wordle Cheat Sheet Fabian Meier द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a helpful cheat sheet of word sufggestions to Wordle."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Wordle Cheat Sheet एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension adds a helpful cheat sheet to the Wordle game. We do not use Wordle's own list of words, instead we use 3rd party APIs to populate the cheat sheet. This guarantees that the extension will still work if the Wordle team ever decides to hide its own list of words. During the development of this extension I realized that the game is way more fun if you do not cheat with this little helper, but it might still be useful for some. Have fun riddling! Update 20.2.2022: Made it work for nytimes.
एक्सटेंशन की मूल जानकारी
नाम | Wordle Cheat Sheet |
ID | hjffddncgpjpjbnfphfaagohljcjohae |
आधिकारिक URL | https://chromewebstore.google.com/detail/wordle-cheat-sheet/hjffddncgpjpjbnfphfaagohljcjohae |
विवरण | Adds a helpful cheat sheet of word sufggestions to Wordle. |
फ़ाइल का आकार | 15.07 KB |
स्थापना संख्या | 235 |
वर्तमान संस्करण | 1.1 |
अंतिम अपडेट | 2022-02-22 |
प्रकाशन तिथि | 2022-01-30 |
डेवलपर | Fabian Meier |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Wordle Cheat Sheet", "version": "1.1", "description": "Adds a helpful cheat sheet of word sufggestions to Wordle.", "background": { "service_worker": "data_fetcher.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.powerlanguage.co.uk\/wordle\/", "https:\/\/www.nytimes.com\/games\/wordle\/index.html" ], "js": [ "wordle_cheat_sheet.js" ], "css": [ "wordle_cheat_sheet.css" ] } ], "host_permissions": [ "https:\/\/www.thewordfinder.com\/anagram-solver\/", "https:\/\/api.datamuse.com\/words" ], "icons": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png", "340": "images\/icon_340.png" }, "manifest_version": 3 } |