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 |
| Eメール | [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"
]
}
]
} | |