Measurements units converter
Measurement system convert tool
What is Measurements units converter?
Measurements units converter is a Chrome extension developed by viktorpatraboi, and its main feature is "Measurement system convert tool".
Extension Screenshots
Download Measurements units converter Extension CRX File
Download Measurements units converter 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
Plugin for automatic conversion of measurements units from the metric system to imperial and vice versa. Converts units in page automatically. Supports converting the following: - length(metric <-> imperial) - weight(metric <-> imperial) - temperature(Celsius <-> Fahrenheit) - volume (metric <-> imperial)
Extension Basic Information
Name | Measurements units converter |
ID | ldnkgcpeljjhpfkpapknhjhnninfelga |
Official URL | https://chromewebstore.google.com/detail/measurements-units-conver/ldnkgcpeljjhpfkpapknhjhnninfelga |
Description | Measurement system convert tool |
File Size | 15.53 KB |
Installation Count | 19 |
Current Version | 0.1 |
Last Updated | 2023-07-10 |
Publish Date | 2022-02-13 |
Developer | viktorpatraboi |
[email protected] | |
Payment Type | free |
Help Page URL | https://github.com/okedo |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Measurements units converter", "description": "Measurement system convert tool", "version": "0.1", "manifest_version": 3, "icons": { "16": ".\/assets\/icon16.png", "48": ".\/assets\/icon48.png", "128": ".\/assets\/icon128.png" }, "permissions": [ "storage" ], "action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content-script.js" ] } ] } |