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