Wordle Helper
A simple extension which provides suggestions for the game Wordle
什麼是Wordle Helper?
Wordle Helper是由ianuany開發的Chrome擴展程式,該擴展的主要功能是“A simple extension which provides suggestions for the game Wordle”。
擴展截圖
下載Wordle Helper擴展crx文件
下載Wordle Helper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Use this extension on Wordle - https://www.powerlanguage.co.uk/wordle/ to get suggestions on words to use while you play. 擴展基本資訊
| 名稱 | |
| ID | dladdminkijkbheckenoahkgmkmpembb |
| 官方網址 | https://chromewebstore.google.com/detail/wordle-helper/dladdminkijkbheckenoahkgmkmpembb |
| 簡介 | A simple extension which provides suggestions for the game Wordle |
| 檔案大小 | 14.26 KB |
| 安裝次數 | 125 |
| 目前版本 | 2.0 |
| 更新時間 | 2022-03-02 |
| 上架時間 | 2022-01-12 |
| 開發者 | ianuany |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/ianunay/wordle-helper |
| 說明頁面URL | https://github.com/ianunay/wordle-helper/issues |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Wordle Helper",
"description": "A simple extension which provides suggestions for the game Wordle",
"version": "2.0",
"manifest_version": 3,
"icons": {
"16": "logo.png",
"48": "logo.png",
"128": "logo.png"
},
"action": {
"default_popup": "index.html",
"default_icon": "logo.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.nytimes.com\/games\/wordle*"
],
"js": [
"content-script.js",
"wordle-dict.js"
]
}
]
} | |