Fitocracy Unit Converter

This extension converts workout entries in the Fitocracy feed to your preferred system of units.

Fitocracy Unit Converter là gì?

Fitocracy Unit Converter là một tiện ích mở rộng Chrome được phát triển bởi Applifting, và tính năng chính của nó là "This extension converts workout entries in the Fitocracy feed to your preferred system of units.".

Ả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 Fitocracy Unit Converter

Tải xuống các tệp mở rộng Fitocracy Unit Converter 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

                        Do you want to cheer for your fellow fitocrats for how much they lift but you don't know how much is that 120 Kg barbell bench press in pounds? You don't have to do unit conversions in your head anymore. 

This extension converts all workout entries into unit system of your choice so you can easily decide if those props you are giving out are well deserved.                    

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

Tên Fitocracy Unit Converter Fitocracy Unit Converter
ID ocapmdbdoikdiecnpibcgibbphioennm
URL Chính Thức https://chromewebstore.google.com/detail/fitocracy-unit-converter/ocapmdbdoikdiecnpibcgibbphioennm
Mô tả This extension converts workout entries in the Fitocracy feed to your preferred system of units.
Kích Thước Tệp 127 KB
Số Lần Cài Đặt 27
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2014-05-20
Ngày Phát Hành 2014-05-20
Đánh Giá 4.44/5 Tổng số 9 Đánh Giá
Nhà Phát Triển Applifting
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fitocracy Unit Converter",
    "version": "1.0.1",
    "description": "This extension converts workout entries in the Fitocracy feed to your preferred system of units.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "page_action": {
        "default_icon": "icon128.png",
        "default_title": "Fitocracy unit converter by Applifting.cz",
        "default_popup": "popup.html"
    },
    "permissions": [
        "https:\/\/www.fitocracy.com\/",
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.fitocracy.com\/*"
            ],
            "js": [
                "mutation-summary.js",
                "jquery.js",
                "shared.js",
                "converter.js"
            ]
        }
    ]
}