Fitocracy Unit Converter

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

什麼是Fitocracy Unit Converter?

Fitocracy Unit Converter是由Applifting開發的Chrome擴展程式,該擴展的主要功能是“This extension converts workout entries in the Fitocracy feed to your preferred system of units.”。

擴展截圖

screenshot
screenshot

下載Fitocracy Unit Converter擴展crx文件

下載Fitocracy Unit Converter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Fitocracy Unit Converter Fitocracy Unit Converter
ID ocapmdbdoikdiecnpibcgibbphioennm
官方網址 https://chromewebstore.google.com/detail/fitocracy-unit-converter/ocapmdbdoikdiecnpibcgibbphioennm
簡介 This extension converts workout entries in the Fitocracy feed to your preferred system of units.
檔案大小 127 KB
安裝次數 27
目前版本 1.0.1
更新時間 2014-05-20
上架時間 2014-05-20
評分 4.44/5 共 9 次評分
開發者 Applifting
付費類型 free
支援的語言 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"
            ]
        }
    ]
}