wordle sync
keep track of your wordle progress across all devices
Wat is wordle sync?
wordle sync is een Chrome-extensie ontwikkeld door Max Perrello, en de belangrijkste functie is "keep track of your wordle progress across all devices".
Extensie Screenshots
Download het CRX-bestand van de extensie wordle sync
Download wordle sync-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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)
Basisinformatie over de Extensie
Naam | wordle sync |
ID | fpjfpedkbjbmdgmfpbbjiildinajahmm |
Officiële URL | https://chromewebstore.google.com/detail/wordle-sync/fpjfpedkbjbmdgmfpbbjiildinajahmm |
Beschrijving | keep track of your wordle progress across all devices |
Bestandsgrootte | 25.93 KB |
Aantal Installaties | 199 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2022-02-12 |
Publicatiedatum | 2022-02-01 |
Ontwikkelaar | Max Perrello |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://wordlesync.com/ |
Help Pagina-URL | https://github.com/maxtheaxe/wordle-sync/issues |
Ondersteunde Talen | 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" } } |