Fitix
Analyze your activities
Fitix란 무엇입니까?
Fitix은(는) ae3e에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Analyze your activities"입니다.
확장 프로그램 스크린샷
Fitix 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Go to one of your actitivty on Strava's website and click on Fitix icon once the page is loaded. You'll get global statistics about your workout. If you specified running intervals in your workout's title, you'll get statistics on your laps or splits. To define your training, you can set distances (in meters), durations (in minutes and seconds) and repetitions (2x200m/45"). All parts are separated by an hyphen (-). Examples : 10x1000m 15'-1000m-3'-1000m-10' 10'-6x300m/45"-3'-6x300m/45"-5'
확장 프로그램 기본 정보
이름 | |
ID | didijkdehcgghdhncfnacjpndddjhbbh |
공식 URL | https://chrome.google.com/webstore/detail/fitix/didijkdehcgghdhncfnacjpndddjhbbh |
설명 | Analyze your activities |
파일 크기 | 1.21 MB |
설치 횟수 | 240 |
현재 버전 | 0.1.1 |
최근 업데이트 | 2017-09-11 |
출시 날짜 | 2017-09-11 |
평점 | 4.00/5 총 2 개의 평점 |
개발자 | ae3e |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Fitix", "description": "Analyze your activities", "version": "0.1.1", "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "permissions": [ "activeTab", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.strava.com\/activities\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "options_ui": { "page": "options.html", "chrome_style": true, "open_in_tab": true }, "browser_action": { "default_title": "Analyse your activity.", "default_icon": "icons\/icon128.png", "default_popup": "popup.html" }, "manifest_version": 2, "web_accessible_resources": [ "script.js" ] } |