Unitify

Convert units to your preferred tongue, in-page.

ما هو Unitify؟

Unitify هو إضافة Chrome تم تطويرها بواسطة Steve Pike، والميزة الرئيسية لها هي "Convert units to your preferred tongue, in-page.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Unitify

قم بتنزيل ملفات الامتداد Unitify بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Unitify translates units and measurements in webpages in-place, so that you don't have to think about converting them yourself.                    

معلومات أساسية عن التمديد

الاسم Unitify Unitify
ID amhbhaikpableefmhhongikpbefdcgmf
عنوان URL الرسمي https://chromewebstore.google.com/detail/unitify/amhbhaikpableefmhhongikpbefdcgmf
الوصف Convert units to your preferred tongue, in-page.
حجم الملف 63.65 KB
عدد التثبيتات 38
النسخة الحالية 1.0.1
آخر تحديث 2013-03-26
تاريخ النشر 2013-03-26
تقييم 5.00/5 مجموع تقييمات 2
المطور Steve Pike
نوع الدفع free
موقع الإضافة http://github.com/stringfellow/unitify
عنوان صفحة المساعدة http://github.com/stringfellow/unitify/issues
اللغات المدعومة en-GB
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Unitify",
    "description": "Convert units to your preferred tongue, in-page.",
    "version": "1.0.1",
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "globe.png",
        "default_popup": "options.html"
    },
    "icons": {
        "128": "globe.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-1.9.1.min.js",
                "underscore-min.js",
                "unitify.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage"
    ]
}