Wordle Answer Finder

Helps you with the Wordle

Wordle Answer Finder là gì?

Wordle Answer Finder là một tiện ích mở rộng Chrome được phát triển bởi idkwtph, và tính năng chính của nó là "Helps you with the Wordle".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Wordle Answer Finder

Tải xuống các tệp mở rộng Wordle Answer Finder dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Wordle Answer Finder Wordle Answer Finder
ID dkdjnmadfgeococnnkmepbnplfllaffg
URL Chính Thức https://chromewebstore.google.com/detail/wordle-answer-finder/dkdjnmadfgeococnnkmepbnplfllaffg
Mô tả Helps you with the Wordle
Kích Thước Tệp 141 KB
Số Lần Cài Đặt 34
Phiên Bản Hiện Tại 1.1.7
Cập Nhật Lần Cuối 2022-10-20
Ngày Phát Hành 2022-09-29
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển idkwtph
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}