Time to run?
This extension provides motivation and information to get you running based on realtime weather conditions.
Time to run?คืออะไร?
Time to run? เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Mike Veilleux และคุณลักษณะหลักของมันคือ "This extension provides motivation and information to get you running based on realtime weather conditions."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Time to run?
ดาวน์โหลดไฟล์ส่วนขยาย Time to run? ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Simple motivation to get you running, this extension provides machine learning based indications on whether it's a good time to go for a run based. Based on realtime weather conditions and real user rating on current conditions like temperature and wind in your area. The icon turns green when it's a good time to run, red when it's not, and black when it's still manageable out there. Use the adjustments to customize the ratings to your preference. The machine learning will adjust as you provide more data points. Open source and available on Github! https://github.com/mveilleux/time-to-run
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Time to run? |
ID | hipbkcongpofpopooldngkdokblfjkhc |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/time-to-run/hipbkcongpofpopooldngkdokblfjkhc |
คำอธิบาย | This extension provides motivation and information to get you running based on realtime weather conditions. |
ขนาดไฟล์ | 180 KB |
จำนวนการติดตั้ง | 15 |
เวอร์ชันปัจจุบัน | 0.4.2 |
อัปเดตครั้งล่าสุด | 2019-03-08 |
วันที่เผยแพร่ | 2019-03-08 |
คะแนน | 4.50/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | Mike Veilleux |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/mveilleux/time-to-run |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Time to run?", "description": "This extension provides motivation and information to get you running based on realtime weather conditions.", "version": "0.4.2", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "browser_action": { "default_popup": "popup.html", "default_icon": { "32": "images\/run_black_32.png" }, "default_title": "Time to run?" }, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com 'unsafe-eval'; object-src 'self'", "permissions": [ "alarms", "geolocation", "storage", "http:\/\/fonts.googleapis.com\/", "https:\/\/fonts.googleapis.com\/" ], "background": { "scripts": [ "eventPage.js", "static-js\/jquery-3.1.1.min.js", "static-js\/jquery-ui.min.js", "static-js\/raphael-2.1.4.min.js", "static-js\/justgage.js", "static-js\/ml.min.js", "static-js\/jquery.csv.min.js" ] } } |