Fahrenheit 451
Converts Fahrenheit temperatures to celcius
Fahrenheit 451 là gì?
Fahrenheit 451 là một tiện ích mở rộng Chrome được phát triển bởi https://www.dkcy.com, và tính năng chính của nó là "Converts Fahrenheit temperatures to celcius".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Fahrenheit 451
Tải xuống các tệp mở rộng Fahrenheit 451 dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Fahrenheit 451 |
ID | piodninhpjpcpgboajmlmkbgplkmcfgd |
URL Chính Thức | https://chromewebstore.google.com/detail/fahrenheit-451/piodninhpjpcpgboajmlmkbgplkmcfgd |
Mô tả | Converts Fahrenheit temperatures to celcius |
Kích Thước Tệp | 222 KB |
Số Lần Cài Đặt | 31 |
Phiên Bản Hiện Tại | 1.2 |
Cập Nhật Lần Cuối | 2017-02-08 |
Ngày Phát Hành | 2017-02-08 |
Đánh Giá | 2.50/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | https://www.dkcy.com |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } ] } |