Time to run?
This extension provides motivation and information to get you running based on realtime weather conditions.
Time to run?란 무엇입니까?
Time to run?은(는) Mike Veilleux에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension provides motivation and information to get you running based on realtime weather conditions."입니다.
확장 프로그램 스크린샷
Time to run? 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } } |