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 |
| Eメール | [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"
}
]
} | |