Fitix
Analyze your activities
Qu'est-ce que Fitix ?
Fitix est une extension Chrome développée par ae3e, et sa fonction principale est "Analyze your activities".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Fitix
Téléchargez les fichiers d'extension Fitix au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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'
Informations de Base sur l'Extension
Nom | |
ID | didijkdehcgghdhncfnacjpndddjhbbh |
URL Officiel | https://chrome.google.com/webstore/detail/fitix/didijkdehcgghdhncfnacjpndddjhbbh |
Description | Analyze your activities |
Taille du Fichier | 1.21 MB |
Nombre d'Installations | 240 |
Version Actuelle | 0.1.1 |
Dernière Mise à Jour | 2017-09-11 |
Date de Publication | 2017-09-11 |
Évaluation | 4.00/5 Total 2 Évaluations |
Développeur | ae3e |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |