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.
扩展基本信息
名称 | Wordle Helper |
ID | dladdminkijkbheckenoahkgmkmpembb |
官方URL | 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" ] } ] } |