wordle sync

keep track of your wordle progress across all devices

wordle sync란 무엇입니까?

wordle sync은(는) Max Perrello에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "keep track of your wordle progress across all devices"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

wordle sync 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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)                    

확장 프로그램 기본 정보

이름 wordle sync wordle sync
ID fpjfpedkbjbmdgmfpbbjiildinajahmm
공식 URL https://chromewebstore.google.com/detail/wordle-sync/fpjfpedkbjbmdgmfpbbjiildinajahmm
설명 keep track of your wordle progress across all devices
파일 크기 25.93 KB
설치 횟수 199
현재 버전 1.0
최근 업데이트 2022-02-12
출시 날짜 2022-02-01
개발자 Max Perrello
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://wordlesync.com/
도움말 페이지 URL https://github.com/maxtheaxe/wordle-sync/issues
지원되는 언어 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"
    }
}