Fitix
Analyze your activities
什麼是Fitix?
Fitix是由ae3e開發的Chrome擴展程式,該擴展的主要功能是“Analyze your activities”。
擴展截圖
下載Fitix擴展crx文件
下載Fitix擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" ] } |