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 |
官方網址 | 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\/*" ] } ] } |