Fitix

Analyze your activities

Fitix là gì?

Fitix là một tiện ích mở rộng Chrome được phát triển bởi ae3e, và tính năng chính của nó là "Analyze your activities".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Fitix

Tải xuống các tệp mở rộng Fitix dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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'                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Fitix Fitix
ID didijkdehcgghdhncfnacjpndddjhbbh
URL Chính Thức https://chrome.google.com/webstore/detail/fitix/didijkdehcgghdhncfnacjpndddjhbbh
Mô tả Analyze your activities
Kích Thước Tệp 1.21 MB
Số Lần Cài Đặt 240
Phiên Bản Hiện Tại 0.1.1
Cập Nhật Lần Cuối 2017-09-11
Ngày Phát Hành 2017-09-11
Đánh Giá 4.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển ae3e
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}