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 |
| 官方網址 | 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 |
| 電子郵箱 | [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\/*"
]
}
]
} | |