wordle sync
keep track of your wordle progress across all devices
Cos'è wordle sync?
wordle sync è un'estensione di Chrome sviluppata da Max Perrello, e la sua funzione principale è "keep track of your wordle progress across all devices".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione wordle sync
Scarica i file di estensione wordle sync in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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)
Informazioni di Base sull'Estensione
Nome | wordle sync |
ID | fpjfpedkbjbmdgmfpbbjiildinajahmm |
URL Ufficiale | https://chromewebstore.google.com/detail/wordle-sync/fpjfpedkbjbmdgmfpbbjiildinajahmm |
Descrizione | keep track of your wordle progress across all devices |
Dimensione del File | 25.93 KB |
Conteggio Installazioni | 199 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2022-02-12 |
Data di Pubblicazione | 2022-02-01 |
Sviluppatore | Max Perrello |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://wordlesync.com/ |
URL della Pagina di Aiuto | https://github.com/maxtheaxe/wordle-sync/issues |
Lingue Supportate | 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" } } |