Fitocracy Unit Converter

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

Fitocracy Unit Converterคืออะไร?

Fitocracy Unit Converter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Applifting และคุณลักษณะหลักของมันคือ "This extension converts workout entries in the Fitocracy feed to your preferred system of units."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Fitocracy Unit Converter

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
            ]
        }
    ]
}