wordle sync

keep track of your wordle progress across all devices

Co to jest wordle sync?

wordle sync to rozszerzenie Chrome opracowane przez Max Perrello, a jego główną funkcją jest „keep track of your wordle progress across all devices”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia wordle sync

Pobierz pliki rozszerzeń wordle sync w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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)                    

Podstawowe informacje o rozszerzeniu

Nazwa wordle sync wordle sync
ID fpjfpedkbjbmdgmfpbbjiildinajahmm
Oficjalny URL https://chromewebstore.google.com/detail/wordle-sync/fpjfpedkbjbmdgmfpbbjiildinajahmm
Opis keep track of your wordle progress across all devices
Rozmiar pliku 25.93 KB
Liczba instalacji 199
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2022-02-12
Data Publikacji 2022-02-01
Deweloper Max Perrello
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://wordlesync.com/
Adres URL Strony Pomocy https://github.com/maxtheaxe/wordle-sync/issues
Obsługiwane Języki 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"
    }
}