wordle sync
keep track of your wordle progress across all devices
Что такое wordle sync?
wordle sync - это расширение Chrome, разработанное Max Perrello, и его основная функция - "keep track of your wordle progress across all devices".
Снимки экрана расширения
Скачать файл CRX расширения wordle sync
Скачайте файлы расширений wordle sync в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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 |
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" } } |