Fitocracy Unit Converter

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

Was ist Fitocracy Unit Converter?

Fitocracy Unit Converter ist eine Chrome-Erweiterung, die von Applifting entwickelt wurde, und ihr Hauptmerkmal ist "This extension converts workout entries in the Fitocracy feed to your preferred system of units.".

Erweiterungsscreenshots

screenshot
screenshot

Fitocracy Unit Converter-Erweiterungs-CRX-Datei herunterladen

Laden Sie Fitocracy Unit Converter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Fitocracy Unit Converter Fitocracy Unit Converter
ID ocapmdbdoikdiecnpibcgibbphioennm
Offizielle URL https://chromewebstore.google.com/detail/fitocracy-unit-converter/ocapmdbdoikdiecnpibcgibbphioennm
Beschreibung This extension converts workout entries in the Fitocracy feed to your preferred system of units.
Dateigröße 127 KB
Installationsanzahl 27
Aktuelle Version 1.0.1
Letztes Update 2014-05-20
Veröffentlichungsdatum 2014-05-20
Bewertung 4.44/5 Insgesamt 9 Bewertungen
Entwickler Applifting
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}