TrainingPeaks Weather

Shows the forcast the next 7 days in TraningPeaks.

TrainingPeaks Weather là gì?

TrainingPeaks Weather là một tiện ích mở rộng Chrome được phát triển bởi Christophe Balestra, và tính năng chính của nó là "Shows the forcast the next 7 days in TraningPeaks.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng TrainingPeaks Weather

Tải xuống các tệp mở rộng TrainingPeaks Weather dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên TrainingPeaks Weather TrainingPeaks Weather
ID jmeocmjinbnoibagkgppoojgjimplllb
URL Chính Thức https://chromewebstore.google.com/detail/trainingpeaks-weather/jmeocmjinbnoibagkgppoojgjimplllb
Mô tả Shows the forcast the next 7 days in TraningPeaks.
Kích Thước Tệp 45.1 KB
Số Lần Cài Đặt 452
Phiên Bản Hiện Tại 1.04
Cập Nhật Lần Cuối 2022-04-26
Ngày Phát Hành 2020-07-07
Đánh Giá 4.50/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Christophe Balestra
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}