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 |
| 官方網址 | 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 |
| 電子郵箱 | [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"
}
} | |