wordle sync

keep track of your wordle progress across all devices

Vad är wordle sync?

wordle sync är en Chrome-tillägg utvecklad av Max Perrello, och dess huvudfunktion är "keep track of your wordle progress across all devices".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner wordle sync-förlängningens CRX-fil

Ladda ner wordle sync-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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)                    

Grundläggande Information om Tillägg

Namn wordle sync wordle sync
ID fpjfpedkbjbmdgmfpbbjiildinajahmm
Officiell webbadress https://chromewebstore.google.com/detail/wordle-sync/fpjfpedkbjbmdgmfpbbjiildinajahmm
Beskrivning keep track of your wordle progress across all devices
Filstorlek 25.93 KB
Antal Installationer 199
Aktuell Version 1.0
Senast Uppdaterad 2022-02-12
Publiceringsdatum 2022-02-01
Utvecklare Max Perrello
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://wordlesync.com/
Hjälpsida URL https://github.com/maxtheaxe/wordle-sync/issues
Stödda Språk 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"
    }
}