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