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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
        }
    ]
}