Wordle Helper

A simple extension which provides suggestions for the game Wordle

Wordle Helper क्या है?

Wordle Helper ianuany द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple extension which provides suggestions for the game Wordle"।

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

screenshot
screenshot

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

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

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

                        Use this extension on Wordle - https://www.powerlanguage.co.uk/wordle/ to get suggestions on words to use while you play.                    

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

नाम Wordle Helper Wordle Helper
ID dladdminkijkbheckenoahkgmkmpembb
आधिकारिक URL https://chromewebstore.google.com/detail/wordle-helper/dladdminkijkbheckenoahkgmkmpembb
विवरण A simple extension which provides suggestions for the game Wordle
फ़ाइल का आकार 14.26 KB
स्थापना संख्या 125
वर्तमान संस्करण 2.0
अंतिम अपडेट 2022-03-02
प्रकाशन तिथि 2022-01-12
डेवलपर ianuany
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/ianunay/wordle-helper
सहायता पृष्ठ URL https://github.com/ianunay/wordle-helper/issues
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wordle Helper",
    "description": "A simple extension which provides suggestions for the game Wordle",
    "version": "2.0",
    "manifest_version": 3,
    "icons": {
        "16": "logo.png",
        "48": "logo.png",
        "128": "logo.png"
    },
    "action": {
        "default_popup": "index.html",
        "default_icon": "logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.nytimes.com\/games\/wordle*"
            ],
            "js": [
                "content-script.js",
                "wordle-dict.js"
            ]
        }
    ]
}