Metercon
Live value converter
What is Metercon?
Metercon is a Chrome extension developed by Igor Novikov, and its main feature is "Live value converter".
Extension Screenshots
Download Metercon Extension CRX File
Download Metercon extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Metercon |
ID | kcgihdenhomlcaoakbdgecdlnbfmlnhl |
Official URL | https://chromewebstore.google.com/detail/metercon/kcgihdenhomlcaoakbdgecdlnbfmlnhl |
Description | Live value converter |
File Size | 16.01 KB |
Installation Count | 11 |
Current Version | 0.1 |
Last Updated | 2016-03-07 |
Publish Date | 2016-03-07 |
Rating | 4.00/5 Total 1 Ratings |
Developer | Igor Novikov |
Payment Type | free |
Supported Languages | 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" } ] } |