wordle sync
keep track of your wordle progress across all devices
Apa itu wordle sync?
wordle sync adalah ekstensi Chrome yang dikembangkan oleh Max Perrello, dan fitur utamanya adalah "keep track of your wordle progress across all devices".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi wordle sync
Unduh file ekstensi wordle sync dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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)
Informasi Dasar Ekstensi
Nama | wordle sync |
ID | fpjfpedkbjbmdgmfpbbjiildinajahmm |
URL Resmi | https://chromewebstore.google.com/detail/wordle-sync/fpjfpedkbjbmdgmfpbbjiildinajahmm |
Deskripsi | keep track of your wordle progress across all devices |
Ukuran File | 25.93 KB |
Jumlah Instalasi | 199 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2022-02-12 |
Tanggal Publikasi | 2022-02-01 |
Pengembang | Max Perrello |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://wordlesync.com/ |
URL Halaman Bantuan | https://github.com/maxtheaxe/wordle-sync/issues |
Bahasa yang Didukung | 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" } } |