Unit Convert Selection

Do unit conversion conveniently at the current selected text

Co to jest Unit Convert Selection?

Unit Convert Selection to rozszerzenie Chrome opracowane przez Mark Kuo, a jego główną funkcją jest „Do unit conversion conveniently at the current selected text”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Unit Convert Selection

Pobierz pliki rozszerzeń Unit Convert Selection w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Select any text by mouse which includes a quantity (in Arabic numerals) with a unit, this "Unit Convert Selection" will automatically convert it to all supported units by displaying a bubble floating around the selected text. It's quick and easy. There is no need to select "from" and "to" in other conventional unit conversion tools.

Unit conversion is done by "converts-unit" utility at https://github.com/ben-ng/convert-units                    

Podstawowe informacje o rozszerzeniu

Nazwa Unit Convert Selection Unit Convert Selection
ID ibdppaaieeojldgandjjlmjfbnjiciji
Oficjalny URL https://chromewebstore.google.com/detail/unit-convert-selection/ibdppaaieeojldgandjjlmjfbnjiciji
Opis Do unit conversion conveniently at the current selected text
Rozmiar pliku 1.32 MB
Liczba instalacji 711
Aktualna Wersja 1.0.3
Ostatnia Aktualizacja 2018-02-13
Data Publikacji 2018-02-12
Ocena 3.29/5 Łącznie 7 Oceny
Deweloper Mark Kuo
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Unit Convert Selection",
    "short_name": "unitconv_sel",
    "version": "1.0.3",
    "description": "Do unit conversion conveniently at the current selected text",
    "permissions": [
        ""
    ],
    "browser_action": {
        "default_icon": "UnitConvertSel19.png",
        "default_title": "Unit Convert Selection"
    },
    "minimum_chrome_version": "14",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "run_at": "document_end",
            "css": [
                "content_script.css"
            ],
            "js": [
                "lodash.js",
                "convert-units\/definitions\/angle.js",
                "convert-units\/definitions\/apparentPower.js",
                "convert-units\/definitions\/area.js",
                "convert-units\/definitions\/current.js",
                "convert-units\/definitions\/digital.js",
                "convert-units\/definitions\/each.js",
                "convert-units\/definitions\/energy.js",
                "convert-units\/definitions\/frequency.js",
                "convert-units\/definitions\/illuminance.js",
                "convert-units\/definitions\/length.js",
                "convert-units\/definitions\/mass.js",
                "convert-units\/definitions\/pace.js",
                "convert-units\/definitions\/partsPer.js",
                "convert-units\/definitions\/power.js",
                "convert-units\/definitions\/pressure.js",
                "convert-units\/definitions\/reactiveEnergy.js",
                "convert-units\/definitions\/reactivePower.js",
                "convert-units\/definitions\/speed.js",
                "convert-units\/definitions\/temperature.js",
                "convert-units\/definitions\/time.js",
                "convert-units\/definitions\/voltage.js",
                "convert-units\/definitions\/volume.js",
                "convert-units\/definitions\/volumeFlowRate.js",
                "convert-units\/index.js",
                "unit_convert.js",
                "content_script.js"
            ]
        }
    ],
    "icons": {
        "16": "UnitConvertSel16.png",
        "48": "UnitConvertSel48.png",
        "128": "UnitConvertSel128.png",
        "256": "UnitConvertSel256.png"
    },
    "manifest_version": 2
}