Autocorrect Units

Helps format SI (metric), US customary, and imperial units correctly when typing.

Autocorrect Units là gì?

Autocorrect Units là một tiện ích mở rộng Chrome được phát triển bởi getsnoopy, và tính năng chính của nó là "Helps format SI (metric), US customary, and imperial units correctly when typing.".

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

screenshot

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

Tải xuống các tệp mở rộng Autocorrect Units 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

                        This extension automatically and seamlessly corrects any measurement units and quantities while typing on a web page. For example, type "5c" into a text box and press space (or any punctuation) to convert it to "5 °C", the proper formatting for the unit (degrees Celsius). Similarly, typing "40,000 kms" will correct to "40 000 km"; i.e., the unit symbol will be replaced by the proper one, the comma will be replaced by a non-breaking thin space (the official thousands separator), and the space will be replaced by a non-breaking space (so that text will not wrap in between the "40 000" and "km"). Data never leaves your browser, so there are no privacy concerns.

The primary goal of the extension is to prevent improperly or unofficially formatted measurement units, but it's also very helpful in formatting units with "shortcuts" to avoid finding, copying, and pasting characters from a character map, etc. So you can type the units in basically every variant imaginable, and it will autocorrect to the proper format. This goal, however, means that some trade-offs are made. In the first example, for instance, "C" actually refers to coulombs while "°C" refers to degrees Celsius, but the latter is meant far more frequently, so "C" is corrected to "°C" nevertheless.

In rare cases where the extension produces strange results, you can turn it off temporarily by pressing the extension's button in the browser toolbar. The list of units it supports is not exhaustive, so if the extension doesn't autocorrect your favourite unit, let me know in the feedback and I'll add it in.                    

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

Tên Autocorrect Units Autocorrect Units
ID aeedejoiebbkjijeiobcbdonigjfmijp
URL Chính Thức https://chromewebstore.google.com/detail/autocorrect-units/aeedejoiebbkjijeiobcbdonigjfmijp
Mô tả Helps format SI (metric), US customary, and imperial units correctly when typing.
Kích Thước Tệp 27.88 KB
Số Lần Cài Đặt 441
Phiên Bản Hiện Tại 0.9.21
Cập Nhật Lần Cuối 2021-06-03
Ngày Phát Hành 2020-06-24
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển getsnoopy
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Autocorrect Units",
    "version": "0.9.21",
    "description": "Helps format SI (metric), US customary, and imperial units correctly when typing.",
    "manifest_version": 2,
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAiOErgkKfbAv2qE9LMXPrGqT9D+w8A9Rv2RCQUUJ1AEssXkFWoZo8K6kYukfpFFdNhJZK\/LQh8dqX6zZWhB9Biw\/Cr42\/M51viFvFNMMtGNTr5hYDCDI55vVHeJKmPdrTNa6K3sTwNq07vsOUbGbK+AwzsOurDYBnS7zkzMfCOztsyKa4gxh5OLtEB0WM8AxW2wi+0WHmd8OqimzYbV4Nf42t+JvBLxVObejY3gtWZD7fvlMLOaHhAjfOIXFJwP\/EPgTH9YH+oVVjr3D9LnhWTwny9EjKdPoTihCLxhVUrEIHLf3aw9AS1YDqMNsOBF+iyXZ4GmgaDgbnD0wi4SGDrwIDAQAB",
    "offline_enabled": true,
    "icons": {
        "16": "images\/logo-16-enabled.png",
        "32": "images\/logo-32-enabled.png",
        "48": "images\/logo-48-enabled.png",
        "128": "images\/logo-128-enabled.png"
    },
    "permissions": [
        "tabs",
        "",
        "storage"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "js\/inject.js"
    ],
    "browser_action": {
        "default_title": "Toggle unit autocorrection",
        "default_icon": {
            "16": "images\/logo-16-enabled.png",
            "32": "images\/logo-32-enabled.png",
            "48": "images\/logo-48-enabled.png",
            "128": "images\/logo-128-enabled.png"
        }
    }
}