TrainingPeaks Weekly Progress
Shows current weekly progress relative to planned values on TrainingPeaks calendar.
什么是TrainingPeaks Weekly Progress?
TrainingPeaks Weekly Progress是由tedbrakob开发的Chrome扩展程序,该扩展的主要功能是“Shows current weekly progress relative to planned values on TrainingPeaks calendar.”。
扩展截图
下载TrainingPeaks Weekly Progress扩展crx文件
下载TrainingPeaks Weekly Progress扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Adds indicators in the summary pane of the TrainingPeaks calendar page to show current progress toward weekly workout plans
扩展基本信息
名称 | TrainingPeaks Weekly Progress |
ID | aoiedkonejnpfmbbeofgdkfafegdllaa |
官方URL | https://chromewebstore.google.com/detail/trainingpeaks-weekly-prog/aoiedkonejnpfmbbeofgdkfafegdllaa |
简介 | Shows current weekly progress relative to planned values on TrainingPeaks calendar. |
文件大小 | 128 KB |
安装次数 | 95 |
当前版本 | 1.0.1 |
更新时间 | 2022-02-24 |
上架时间 | 2022-02-24 |
开发者 | tedbrakob |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/tedbrakob/training-peaks-weekly-progress |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TrainingPeaks Weekly Progress", "version": "1.0.1", "description": "Shows current weekly progress relative to planned values on TrainingPeaks calendar.", "manifest_version": 3, "content_scripts": [ { "matches": [ "*:\/\/app.trainingpeaks.com\/*" ], "run_at": "document_end", "js": [ "content-script.js" ] } ], "web_accessible_resources": [ { "resources": [ "weekly-progress.js" ], "matches": [ "*:\/\/app.trainingpeaks.com\/*" ] } ], "icons": { "128": "images\/icon.png" } } |