wordle sync

keep track of your wordle progress across all devices

What is wordle sync?

wordle sync is a Chrome extension developed by Max Perrello, and its main feature is "keep track of your wordle progress across all devices".

Extension Screenshots

screenshot
screenshot

Download wordle sync Extension CRX File

Download wordle sync extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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)                    

Extension Basic Information

Name wordle sync wordle sync
ID fpjfpedkbjbmdgmfpbbjiildinajahmm
Official URL https://chromewebstore.google.com/detail/wordle-sync/fpjfpedkbjbmdgmfpbbjiildinajahmm
Description keep track of your wordle progress across all devices
File Size 25.93 KB
Installation Count 199
Current Version 1.0
Last Updated 2022-02-12
Publish Date 2022-02-01
Developer Max Perrello
Email [email protected]
Payment Type free
Extension Website https://wordlesync.com/
Help Page URL https://github.com/maxtheaxe/wordle-sync/issues
Supported Languages 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"
    }
}