Metercon
Live value converter
Meterconとは何ですか?
MeterconはIgor Novikovによって開発されたChromeの拡張機能で、その主な機能は「Live value converter」です。
拡張機能のスクリーンショット
Metercon拡張機能のCRXファイルをダウンロード
Metercon拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Convert feet to meters and meters to feet. This extension will automatically convert length values in Metric system to Imperial system and vise versa. Go to Metercon options to switch the conversion type. The converted value will be added after the original value between the symbols: '<' and'>'. Special thanks to Ilya Kaplan for major bug fix and syntax improvements. More conversion types might be available in the future, depending on reviews. Any review will be appreciated.
拡張機能の基本情報
名前 | Metercon |
ID | kcgihdenhomlcaoakbdgecdlnbfmlnhl |
公式URL | https://chromewebstore.google.com/detail/metercon/kcgihdenhomlcaoakbdgecdlnbfmlnhl |
説明 | Live value converter |
ファイルサイズ | 16.01 KB |
インストール数 | 11 |
現在のバージョン | 0.1 |
最終更新日 | 2016-03-07 |
公開日 | 2016-03-07 |
評価 | 4.00/5 合計 1 レビュー |
開発者 | Igor Novikov |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "Metercon", "version": "0.1", "manifest_version": 2, "options_page": "options.html", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "background.js" ] }, "description": "Live value converter", "permissions": [ "tabs", "http:\/\/*\/", "https:\/\/*\/", "storage" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*" ], "js": [ "convert.js" ], "run_at": "document_end" } ] } |