Wordle Answer Finder

Helps you with the Wordle

Wordle Answer Finder क्या है?

Wordle Answer Finder idkwtph द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Helps you with the Wordle"।

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

screenshot
screenshot
screenshot

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

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

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

                        The best Wordle helper!

🚩Features
      
      🌟Autofilling the answer when you open Wordle
      🌟Dark Mode and Light Mode to help your eyes'
      🌟(Optional) Making the Wordle website's theme match the extension's 
           theme
      🌟More features coming soon!

🚩Permissions
      
      🌟"Read and change all your data on the websites you visit": Allows for 
            Autofill and the theme matching feature. It is on all sites and not just 
            "nytimes.com" so that it can show a link when the current URL is not 
            "nytimes.com". 

🚩The Github repository

      🌟https://github.com/idkwtph/wordleanswerfinder                    

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

नाम Wordle Answer Finder Wordle Answer Finder
ID dkdjnmadfgeococnnkmepbnplfllaffg
आधिकारिक URL https://chromewebstore.google.com/detail/wordle-answer-finder/dkdjnmadfgeococnnkmepbnplfllaffg
विवरण Helps you with the Wordle
फ़ाइल का आकार 141 KB
स्थापना संख्या 34
वर्तमान संस्करण 1.1.7
अंतिम अपडेट 2022-10-20
प्रकाशन तिथि 2022-09-29
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर idkwtph
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Wordle Answer Finder",
    "version": "1.1.7",
    "description": "Helps you with the Wordle",
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.nytimes.com\/games\/wordle\/index.html"
            ],
            "js": [
                "wordle.js"
            ],
            "css": [
                "wordle.css"
            ]
        }
    ],
    "options_page": "options.html",
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/checked_checkbox_64px.png",
        "48": "icons\/checked_checkbox_64px.png",
        "128": "icons\/checked_checkbox_64px.png"
    }
}