Wordle Solver - Can You Beat It?
Solve the Wordle word of the day with an algorithm.
Wordle Solver - Can You Beat It?とは何ですか?
Wordle Solver - Can You Beat It?はadamthewebdeveloperによって開発されたChromeの拡張機能で、その主な機能は「Solve the Wordle word of the day with an algorithm.」です。
拡張機能のスクリーンショット
Wordle Solver - Can You Beat It?拡張機能のCRXファイルをダウンロード
Wordle Solver - Can You Beat It?拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This is not an official Wordle extension. It will automate game-play on the Wordle website, allowing you to see how your Wordle skills compare with the computer.
Icons from popo2021 on flaticon.com: https://www.flaticon.com/free-icon/letter-w_7312338 拡張機能の基本情報
| 名前 | |
| ID | cobhbmncjhlgmfndhdloojjojcnbmlic |
| 公式URL | https://chromewebstore.google.com/detail/wordle-solver-can-you-bea/cobhbmncjhlgmfndhdloojjojcnbmlic |
| 説明 | Solve the Wordle word of the day with an algorithm. |
| ファイルサイズ | 102 KB |
| インストール数 | 99 |
| 現在のバージョン | 0.0.3 |
| 最終更新日 | 2022-07-07 |
| 公開日 | 2022-01-20 |
| 評価 | 5.00/5 合計 1 レビュー |
| 開発者 | adamthewebdeveloper |
| Eメール | [email protected] |
| 支払い方法 | free |
| ヘルプページのURL | https://github.com/zvakanaka/wordle-solver-chrome-extension |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Wordle Solver - Can You Beat It?",
"short_name": "Wordle Solver",
"description": "Solve the Wordle word of the day with an algorithm.",
"version": "0.0.3",
"action": {
"default_title": "Wordle Solver",
"default_icon": {
"96": "icons\/icon_96.png"
},
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.nytimes.com\/games\/wordle*"
],
"js": [
"vendor\/browser-polyfill.min.js",
"vendor\/bootstrap.bundle.min.js",
"contentScripts\/wordlist.js",
"contentScripts\/utils.js",
"contentScripts\/main.js"
],
"css": [
"vendor\/bootstrap.min.css"
],
"all_frames": true
}
],
"icons": {
"48": "icons\/icon_48.png",
"96": "icons\/icon_96.png"
}
} | |