Wordle Solver - Can You Beat It?

Solve the Wordle word of the day with an algorithm.

Wordle Solver - Can You Beat It? क्या है?

Wordle Solver - Can You Beat It? adamthewebdeveloper द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Solve the Wordle word of the day with an algorithm."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Wordle Solver - Can You Beat It? एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This is not an official Wordle extension. It will automate game-play on the Wordle website, allowing you to see how your Wordle skills compare with the computer.

Icons from popo2021 on flaticon.com: https://www.flaticon.com/free-icon/letter-w_7312338                    

एक्सटेंशन की मूल जानकारी

नाम Wordle Solver - Can You Beat It? Wordle Solver - Can You Beat It?
ID cobhbmncjhlgmfndhdloojjojcnbmlic
आधिकारिक URL https://chromewebstore.google.com/detail/wordle-solver-can-you-bea/cobhbmncjhlgmfndhdloojjojcnbmlic
विवरण Solve the Wordle word of the day with an algorithm.
फ़ाइल का आकार 102 KB
स्थापना संख्या 99
वर्तमान संस्करण 0.0.3
अंतिम अपडेट 2022-07-07
प्रकाशन तिथि 2022-01-20
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर adamthewebdeveloper
ईमेल [email protected]
भुगतान के प्रकार free
सहायता पृष्ठ URL https://github.com/zvakanaka/wordle-solver-chrome-extension
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Wordle Solver - Can You Beat It?",
    "short_name": "Wordle Solver",
    "description": "Solve the Wordle word of the day with an algorithm.",
    "version": "0.0.3",
    "action": {
        "default_title": "Wordle Solver",
        "default_icon": {
            "96": "icons\/icon_96.png"
        },
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.nytimes.com\/games\/wordle*"
            ],
            "js": [
                "vendor\/browser-polyfill.min.js",
                "vendor\/bootstrap.bundle.min.js",
                "contentScripts\/wordlist.js",
                "contentScripts\/utils.js",
                "contentScripts\/main.js"
            ],
            "css": [
                "vendor\/bootstrap.min.css"
            ],
            "all_frames": true
        }
    ],
    "icons": {
        "48": "icons\/icon_48.png",
        "96": "icons\/icon_96.png"
    }
}