wordle sync
keep track of your wordle progress across all devices
wordle syncとは何ですか?
wordle syncはMax Perrelloによって開発されたChromeの拡張機能で、その主な機能は「keep track of your wordle progress across all devices」です。
拡張機能のスクリーンショット
wordle sync拡張機能のCRXファイルをダウンロード
wordle sync拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
automatically sync your wordle stats and ongoing games (you need to be signed into chrome)
now supports new york times update! (statistics will be automatically transferred) 拡張機能の基本情報
| 名前 | |
| ID | fpjfpedkbjbmdgmfpbbjiildinajahmm |
| 公式URL | https://chromewebstore.google.com/detail/wordle-sync/fpjfpedkbjbmdgmfpbbjiildinajahmm |
| 説明 | keep track of your wordle progress across all devices |
| ファイルサイズ | 25.93 KB |
| インストール数 | 199 |
| 現在のバージョン | 1.0 |
| 最終更新日 | 2022-02-12 |
| 公開日 | 2022-02-01 |
| 開発者 | Max Perrello |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://wordlesync.com/ |
| ヘルプページのURL | https://github.com/maxtheaxe/wordle-sync/issues |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"description": "keep track of your wordle progress across all devices",
"manifest_version": 3,
"name": "wordle sync",
"version": "1.0",
"homepage_url": "https:\/\/wordlesync.com\/",
"icons": {
"48": "icons\/ws-48.png"
},
"permissions": [
"storage"
],
"host_permissions": [
"https:\/\/*.powerlanguage.co.uk\/*",
"https:\/\/*.nytimes.com\/games\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/*.powerlanguage.co.uk\/*",
"https:\/\/*.nytimes.com\/games\/*"
],
"js": [
"content_scripts\/storage_collector.js"
]
}
],
"action": {
"default_icon": "icons\/wordle-sync.png",
"default_title": "wordle sync",
"default_popup": "popup\/toolbox.html"
}
} | |