TrainingPeaks Weather
Shows the forcast the next 7 days in TraningPeaks.
什么是TrainingPeaks Weather?
TrainingPeaks Weather是由Christophe Balestra开发的Chrome扩展程序,该扩展的主要功能是“Shows the forcast the next 7 days in TraningPeaks.”。
扩展截图
下载TrainingPeaks Weather扩展crx文件
下载TrainingPeaks Weather扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Using your current location this extension adds the weather forecast in Training Peaks
扩展基本信息
名称 | 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\/*" ] } ] } |