Fahrenheit 451

Converts Fahrenheit temperatures to celcius

ما هو Fahrenheit 451؟

Fahrenheit 451 هو إضافة Chrome تم تطويرها بواسطة https://www.dkcy.com، والميزة الرئيسية لها هي "Converts Fahrenheit temperatures to celcius".

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

screenshot

تحميل ملف CRX للإضافة Fahrenheit 451

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

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

                        Converts US measures into metric. Currently converts:
Fahrenheit to Celcius (rounded to whole number)
Lbs and ozs to grams (rounded to whole number)
Quarts and pints to millilitres

Unfortunately, it can't handle cups because that's a volumetric measure and depends on the density of the thing being measured. I'm working on that...

Released under a Creative Commons CC BY-NC-SA licence. https://creativecommons.org/licenses/by-nc-sa/4.0/
Code is on GitHub https://github.com/yukinosaru/fahrenheit451                    

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

الاسم Fahrenheit 451 Fahrenheit 451
ID piodninhpjpcpgboajmlmkbgplkmcfgd
عنوان URL الرسمي https://chromewebstore.google.com/detail/fahrenheit-451/piodninhpjpcpgboajmlmkbgplkmcfgd
الوصف Converts Fahrenheit temperatures to celcius
حجم الملف 222 KB
عدد التثبيتات 31
النسخة الحالية 1.2
آخر تحديث 2017-02-08
تاريخ النشر 2017-02-08
تقييم 2.50/5 مجموع تقييمات 2
المطور https://www.dkcy.com
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fahrenheit 451",
    "description": "Converts Fahrenheit temperatures to celcius",
    "version": "1.2",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_title": "Click to enable\/disable Fahrenheit451"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}