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)
扩展基本信息
名称 | wordle sync |
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 |
电子邮箱 | [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" } } |