ConvertMyUnits

A natural unit conversion extension

ConvertMyUnits là gì?

ConvertMyUnits là một tiện ích mở rộng Chrome được phát triển bởi http://convertmyunits.com, và tính năng chính của nó là "A natural unit conversion extension".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng ConvertMyUnits

Tải xuống các tệp mở rộng ConvertMyUnits dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        *** New Update - Version 1.1.0 ***
* Added a panel dedicated for baking conversions.  
  Convert an ingredients weight to volume  -   i.e "250 grams of flour to cups"
  Convert an ingredients volume to weight  -   i.e "1 cup of flour to ounces"
  
* Users can select between Metric/Imperial & US versions of Gallon/Cup/Spoon volumes via drop down.
 
*** Update Version 1.0.0 ***
* Convert From Unix timestamp to Date
i.e "12343423s to Date in New York", "55h to Date as YYYY/MM/DD hh:mm:ss"

* Data and Data Speed
i.e 150Mb/s to MB/s, 12343Bytes to KiloBits

* Improved Autocomplete

* Convert Metric Volume Units to Imperial & US Volume units
i.e 2 Metric Cups to Imperial Cups Imperial Tablespoons

*****************

Converting of units has never been easier thanks to ConvertMyUnits!

ConvertMyUnits converts a multitude of units directly with in web pages without the need of another tool. 

Simply select the text you want to convert, right click and click on the unit and a popup will appear on the page with multiple conversions for that unit. You can also decide the conversion for yourself.

It provides so much more than simple conversions......

Built directly into the plugin is a powerful expression engine that provides the ability to express related units in a variety of ways as well as add / subtract / divide and multiply related units.

Examples: 
	  Convert centimeters to feet and inches
	  "140cm in ft inches"	
     
	  Convert stone and pounds to kilograms and grams
	  "10stone 4pounds to kg g"
	
	   Convert hours minutes and seconds to seconds
	  "4h 21min 45seconds to seconds"


Examples of addition / multiplication / division / subtraction....

Examples:
	
	Add related weight units converted to Pounds
	"4kg + 20pounds - 34g in pounds"
	
	Add Area units converted Hectares
	"1km2 + 400acres in hectares"
	
	Divide Distance by Time and convert to Pace (Great for runners) 
	i.e "10km/46:21 to min sec/km"

	
It also supports clock subtraction so you can get the duration between two times.
For instance if you need the to calculate duration of log file.

For Example
"4:21:34.123 - 12:34:21.234" would give you -- "8 hours 12 minutes 47 seconds 111 milliseconds"


Give it a try and if you think its useful it would be great if you could spread the word and  review it. If you would like improvements and changes you can leave a comment also.

All the great feature can also be accessed from - https://www.convertmyunits.com

Thanks....                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ConvertMyUnits ConvertMyUnits
ID ooeefdkppfgpcgoflgjefeidooienhel
URL Chính Thức https://chrome.google.com/webstore/detail/convertmyunits/ooeefdkppfgpcgoflgjefeidooienhel
Mô tả A natural unit conversion extension
Kích Thước Tệp 419 KB
Số Lần Cài Đặt 507
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2020-06-14
Ngày Phát Hành 2020-06-14
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển http://convertmyunits.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.convertmyunits.com
URL Trang Trợ Giúp https://www.convertmyunits.com/supportedunits
URL Trang Chính Sách Bảo Mật https://www.convertmyunits.com/privacypolicy
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ConvertMyUnits",
    "author": "Brendan Sheehy",
    "version": "1.1.0",
    "manifest_version": 2,
    "description": "A natural unit conversion extension",
    "icons": {
        "16": "assets\/icons\/icon-16.png",
        "128": "assets\/icons\/icon-128.png"
    },
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content\/content.js"
            ]
        }
    ],
    "background": {
        "page": "background\/bg.html",
        "persistent": true
    },
    "permissions": [
        "tabs",
        "storage",
        "contextMenus",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "options_ui": {
        "page": "options\/index.html"
    },
    "browser_action": {
        "default_icon": {
            "19": "assets\/icons\/icon-19.png",
            "38": "assets\/icons\/icon-38.png"
        },
        "default_title": "Convert My Units",
        "default_popup": "popup\/index.html"
    },
    "web_accessible_resources": [
        "assets\/img\/logo_166x55.png",
        "assets\/svg\/cancel.svg",
        "rightclick_popover\/rightclick_popover.html"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}