Wordle Answer Finder
Helps you with the Wordle
Wordle Answer Finderとは何ですか?
Wordle Answer Finderはidkwtphによって開発されたChromeの拡張機能で、その主な機能は「Helps you with the Wordle」です。
拡張機能のスクリーンショット
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                     拡張機能の基本情報
| 名前 |   |  
| 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 | 
| Eメール | [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"
    }
}  |  |