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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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\/*"
            ]
        }
    ]
}