Wordle Solver
Automatically solves Wordle
Wordle Solverとは何ですか?
Wordle SolverはAlex Craigによって開発されたChromeの拡張機能で、その主な機能は「Automatically solves Wordle」です。
拡張機能のスクリーンショット
Wordle Solver拡張機能のCRXファイルをダウンロード
Wordle Solver拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Automatically finds the next best word for you to play in the popular game Wordle! (https://www.powerlanguage.co.uk/wordle/) Using a basic set of 5 letter words and a bit of information theory. 拡張機能の基本情報
| 名前 | |
| ID | lfjeflamjnebohfnmijjaphhlimjgnde |
| 公式URL | https://chromewebstore.google.com/detail/wordle-solver/lfjeflamjnebohfnmijjaphhlimjgnde |
| 説明 | Automatically solves Wordle |
| ファイルサイズ | 187 KB |
| インストール数 | 650 |
| 現在のバージョン | 2.3 |
| 最終更新日 | 2022-02-11 |
| 公開日 | 2022-01-22 |
| 評価 | 1.00/5 合計 1 レビュー |
| 開発者 | Alex Craig |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/A-J-C/WordleSolver |
| ヘルプページのURL | https://github.com/A-J-C/WordleSolver |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Wordle Solver",
"description": "Automatically solves Wordle",
"version": "2.3",
"manifest_version": 3,
"permissions": [
"activeTab",
"scripting"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "\/images\/wordle_16.png",
"32": "\/images\/wordle_32.png",
"48": "\/images\/wordle_48.png",
"128": "\/images\/wordle_128.png"
}
},
"icons": {
"16": "\/images\/wordle_16.png",
"32": "\/images\/wordle_32.png",
"48": "\/images\/wordle_48.png",
"128": "\/images\/wordle_128.png"
},
"web_accessible_resources": [
{
"resources": [
"words\/*"
],
"matches": [
"https:\/\/www.powerlanguage.co.uk\/*"
]
}
]
} | |