Fitocracy Unit Converter

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

Co to jest Fitocracy Unit Converter?

Fitocracy Unit Converter to rozszerzenie Chrome opracowane przez Applifting, a jego główną funkcją jest „This extension converts workout entries in the Fitocracy feed to your preferred system of units.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Fitocracy Unit Converter

Pobierz pliki rozszerzeń Fitocracy Unit Converter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Fitocracy Unit Converter Fitocracy Unit Converter
ID ocapmdbdoikdiecnpibcgibbphioennm
Oficjalny URL https://chromewebstore.google.com/detail/fitocracy-unit-converter/ocapmdbdoikdiecnpibcgibbphioennm
Opis This extension converts workout entries in the Fitocracy feed to your preferred system of units.
Rozmiar pliku 127 KB
Liczba instalacji 27
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2014-05-20
Data Publikacji 2014-05-20
Ocena 4.44/5 Łącznie 9 Oceny
Deweloper Applifting
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}