Everything Metric - Auto Unit Converter

Automatic page translation from American to International System of units

Everything Metric - Auto Unit Converterとは何ですか?

Everything Metric - Auto Unit ConverterはMilosによって開発されたChromeの拡張機能で、その主な機能は「Automatic page translation from American to International System of units」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Everything Metric - Auto Unit Converter拡張機能のCRXファイルをダウンロード

Everything Metric - Auto Unit Converter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Automatically translates all sites from American/old British units to International System of units (SI/Metric) - adding converted unit in a bracket behind original units.

Example: 10 feet 🠚 10 feet【𝟯 𝗺】

​Convenient for shopping, cooking, etc.

(You can also use Alt+M for manual conversion of the page)

Inch, Feet, Yard, Mile -> Metre (Meter)
Pound, Ounce, Stone -> Kilogram
Gallon, Quart, Pint, Fluid Ounces, Cups -> Litre (Liter)
mpg -> L/100 km
mph -> km/h
Fahrenheit -> Celsius/Kelvin
Area conversion for ft, yd, in, mi, both as "sq. ft" and "ft²" (must not be superscript); the same is for volume conversion.
Supports Amazon, Ikea, and other formats: 10" x 20" x 3" will be converted and replaced with metric units
Combo units also supported: 1 ½″​【𝟯,𝟴 𝗰𝗺】 or 2’−4″​【𝟳𝟭 𝗰𝗺】
Features most possible ways these units are written with dashes, quotes, apostrophes, Unicode units, etc. 

Toolbar button to turn extension ON/OFF globally
You can keep it off and just run when needed by pressing Alt+M

Permission to read page data is required to be able to change units.
Permission to storage is required to save settings.

Don't forget to check Options page.

Not working on a specific site? Have a suggestion for improvement?
Send me an email with details.

Source code is here https://github.com/m1l/Everything-Metric

Disclaimer: Author is not responsible for any damages, including cakes that are too sweet, because of miscalculation or any other issues.                    

拡張機能の基本情報

名前 Everything Metric - Auto Unit Converter Everything Metric - Auto Unit Converter
ID hknjpaididhfgeocegbacehlnkofjoni
公式URL https://chromewebstore.google.com/detail/everything-metric-auto-un/hknjpaididhfgeocegbacehlnkofjoni
説明 Automatic page translation from American to International System of units
ファイルサイズ 68.45 KB
インストール数 9,842
現在のバージョン 3.4
最終更新日 2021-10-30
公開日 2019-10-02
評価 4.70/5 合計 64 レビュー
開発者 Milos
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/m1l/Everything-Metric
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Automatic page translation from American to International System of units",
    "author": "Milos Paripovic",
    "manifest_version": 2,
    "name": "Everything Metric - Auto Unit Converter",
    "short_name": "Everything Metric",
    "version": "3.4",
    "icons": {
        "16": "icons\/everything-metric-16.png",
        "19": "icons\/everything-metric-19.png",
        "32": "icons\/everything-metric-32.png",
        "38": "icons\/everything-metric-38.png",
        "48": "icons\/everything-metric-48.png",
        "96": "icons\/everything-metric-96.png",
        "128": "icons\/everything-metric-128.png"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "browser_action": {
        "default_icon": {
            "16": "icons\/everything-metric-16.png",
            "19": "icons\/everything-metric-19.png",
            "32": "icons\/everything-metric-32.png",
            "38": "icons\/everything-metric-38.png",
            "48": "icons\/everything-metric-48.png",
            "96": "icons\/everything-metric-96.png",
            "128": "icons\/everything-metric-128.png"
        },
        "default_title": "Automatic Metric\/SI conversion"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_start",
            "css": [
                "everythingmetric.css"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "commands": {
        "parse_page_now": {
            "suggested_key": {
                "default": "Alt+M",
                "windows": "Alt+M"
            },
            "description": "Force convert all to Metric"
        }
    }
}