Wordle Answer Finder

Helps you with the Wordle

什麼是Wordle Answer Finder?

Wordle Answer Finder是由idkwtph開發的Chrome擴展程式,該擴展的主要功能是“Helps you with the Wordle”。

擴展截圖

screenshot
screenshot
screenshot

下載Wordle Answer Finder擴展crx文件

下載Wordle Answer Finder擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}