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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension converts workout entries in the Fitocracy feed to your preferred system of units."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Fitocracy Unit Converter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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"
            ]
        }
    ]
}