Wordle Helper
An extension to help you solve Wordles
什麼是Wordle Helper?
Wordle Helper是由mysticuno開發的Chrome擴展程式,該擴展的主要功能是“An extension to help you solve Wordles”。
擴展截圖
下載Wordle Helper擴展crx文件
下載Wordle Helper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
A small, open-source extension to help you solve Wordles. Use it when playing on https://www.nytimes.com/games/wordle/index.html
See the code at https://github.com/mysticuno/wordle-helper
Not affiliated with Josh, Wordle, or The New York Times. 擴展基本資訊
| 名稱 | |
| ID | lcoapaclmojlnbjipmpfibcjomncgdod |
| 官方網址 | https://chromewebstore.google.com/detail/wordle-helper/lcoapaclmojlnbjipmpfibcjomncgdod |
| 簡介 | An extension to help you solve Wordles |
| 檔案大小 | 100 KB |
| 安裝次數 | 5,240 |
| 目前版本 | 2.3.1 |
| 更新時間 | 2024-01-17 |
| 上架時間 | 2022-01-13 |
| 評分 | 3.83/5 共 6 次評分 |
| 開發者 | mysticuno |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/mysticuno/wordle-helper |
| 說明頁面URL | https://github.com/mysticuno/wordle-helper/issues/new |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Wordle Helper",
"description": "An extension to help you solve Wordles",
"version": "2.3.1",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"permissions": [
"activeTab"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "\/images\/icon-16.png",
"32": "\/images\/icon-32.png",
"48": "\/images\/icon-48.png",
"128": "\/images\/icon-128.png"
}
},
"icons": {
"16": "\/images\/icon-16.png",
"32": "\/images\/icon-32.png",
"48": "\/images\/icon-48.png",
"128": "\/images\/icon-128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.powerlanguage.co.uk\/wordle\/*",
"https:\/\/www.nytimes.com\/games\/wordle\/*"
],
"js": [
".\/util\/constants.js",
".\/util\/solver.js"
]
}
]
} | |