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 |
| 官方URL | 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"
]
}
]
} | |