Unit Convert Selection

Do unit conversion conveniently at the current selected text

Что такое Unit Convert Selection?

Unit Convert Selection - это расширение Chrome, разработанное Mark Kuo, и его основная функция - "Do unit conversion conveniently at the current selected text".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Unit Convert Selection

Скачайте файлы расширений Unit Convert Selection в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название Unit Convert Selection Unit Convert Selection
ID ibdppaaieeojldgandjjlmjfbnjiciji
Официальный URL https://chromewebstore.google.com/detail/unit-convert-selection/ibdppaaieeojldgandjjlmjfbnjiciji
Описание Do unit conversion conveniently at the current selected text
Размер файла 1.32 MB
Количество установок 711
Текущая Версия 1.0.3
Последнее Обновление 2018-02-13
Дата публикации 2018-02-12
Рейтинг 3.29/5 Всего 7 оценок
Разработчик Mark Kuo
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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
}