Fahrenheit 451
Converts Fahrenheit temperatures to celcius
什么是Fahrenheit 451?
Fahrenheit 451是由https://www.dkcy.com开发的Chrome扩展程序,该扩展的主要功能是“Converts Fahrenheit temperatures to celcius”。
扩展截图
下载Fahrenheit 451扩展crx文件
下载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 扩展基本信息
| 名称 | |
| 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"
}
]
} | |