PS! Chrome Sync

Chrome sync compatibility for Pokemon Showdown teams

Что такое PS! Chrome Sync?

PS! Chrome Sync - это расширение Chrome, разработанное psgcsync, и его основная функция - "Chrome sync compatibility for Pokemon Showdown teams".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения PS! Chrome Sync

Скачайте файлы расширений PS! Chrome Sync в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Uses Google Chrome's sync storage to save your Pokemon Showdown teams in your Google Account. Synchronizes teams across all instances of Google Chrome, so you can use your teams wherever you use Chrome. 

Periodically saves Pokemon Showdown's local storage to Chrome's sync storage and reads the sync storage to update your team list whenever PS! loads. 

WARNING: On first use, the extension will save all of your teams to the Chrome sync storage. Any teams stored locally on other devices will be initially lost, then all devices will be kept synced.                    

Основная информация о расширении

Название PS! Chrome Sync PS! Chrome Sync
ID fjfipggakoeeckhcppngmklgnggjjejk
Официальный URL https://chromewebstore.google.com/detail/ps-chrome-sync/fjfipggakoeeckhcppngmklgnggjjejk
Описание Chrome sync compatibility for Pokemon Showdown teams
Размер файла 33.71 KB
Количество установок 138
Текущая Версия 0.0.1
Последнее Обновление 2022-01-21
Дата публикации 2022-01-20
Рейтинг 5.00/5 Всего 1 оценок
Разработчик psgcsync
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://lukelav.in/ps-chrome-sync-privacy.html
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PS! Chrome Sync",
    "description": "Chrome sync compatibility for Pokemon Showdown teams",
    "version": "0.0.1",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "icons": {
        "32": "icons\/icon32.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/play.pokemonshowdown.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "sync-storage.js"
            ]
        }
    ]
}