wordle sync

keep track of your wordle progress across all devices

Was ist wordle sync?

wordle sync ist eine Chrome-Erweiterung, die von Max Perrello entwickelt wurde, und ihr Hauptmerkmal ist "keep track of your wordle progress across all devices".

Erweiterungsscreenshots

screenshot
screenshot

wordle sync-Erweiterungs-CRX-Datei herunterladen

Laden Sie wordle sync-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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)                    

Grundlegende Informationen zur Erweiterung

Name wordle sync wordle sync
ID fpjfpedkbjbmdgmfpbbjiildinajahmm
Offizielle URL https://chromewebstore.google.com/detail/wordle-sync/fpjfpedkbjbmdgmfpbbjiildinajahmm
Beschreibung keep track of your wordle progress across all devices
Dateigröße 25.93 KB
Installationsanzahl 199
Aktuelle Version 1.0
Letztes Update 2022-02-12
Veröffentlichungsdatum 2022-02-01
Entwickler Max Perrello
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://wordlesync.com/
Hilfeseite URL https://github.com/maxtheaxe/wordle-sync/issues
Unterstützte Sprachen 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"
    }
}