TrainingPeaks Weather

Shows the forcast the next 7 days in TraningPeaks.

Что такое TrainingPeaks Weather?

TrainingPeaks Weather - это расширение Chrome, разработанное Christophe Balestra, и его основная функция - "Shows the forcast the next 7 days in TraningPeaks.".

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

screenshot

Скачать файл CRX расширения TrainingPeaks Weather

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

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

                        Using your current location this extension adds the weather forecast in Training Peaks                    

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

Название TrainingPeaks Weather TrainingPeaks Weather
ID jmeocmjinbnoibagkgppoojgjimplllb
Официальный URL https://chromewebstore.google.com/detail/trainingpeaks-weather/jmeocmjinbnoibagkgppoojgjimplllb
Описание Shows the forcast the next 7 days in TraningPeaks.
Размер файла 45.1 KB
Количество установок 452
Текущая Версия 1.04
Последнее Обновление 2022-04-26
Дата публикации 2020-07-07
Рейтинг 4.50/5 Всего 4 оценок
Разработчик Christophe Balestra
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TrainingPeaks Weather",
    "version": "1.04",
    "description": "Shows the forcast the next 7 days in TraningPeaks.",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "options.html"
    },
    "permissions": [
        "storage"
    ],
    "options_page": "options.html",
    "icons": {
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "css": [
                "styles.css"
            ],
            "js": [
                "jquery-3.5.1.min.js",
                "content.js"
            ],
            "matches": [
                "https:\/\/app.trainingpeaks.com\/*"
            ]
        }
    ]
}