Unit Convert Selection

Do unit conversion conveniently at the current selected text

Vad är Unit Convert Selection?

Unit Convert Selection är en Chrome-tillägg utvecklad av Mark Kuo, och dess huvudfunktion är "Do unit conversion conveniently at the current selected text".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Unit Convert Selection-förlängningens CRX-fil

Ladda ner Unit Convert Selection-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Unit Convert Selection Unit Convert Selection
ID ibdppaaieeojldgandjjlmjfbnjiciji
Officiell webbadress https://chromewebstore.google.com/detail/unit-convert-selection/ibdppaaieeojldgandjjlmjfbnjiciji
Beskrivning Do unit conversion conveniently at the current selected text
Filstorlek 1.32 MB
Antal Installationer 711
Aktuell Version 1.0.3
Senast Uppdaterad 2018-02-13
Publiceringsdatum 2018-02-12
Betyg 3.29/5 Totalt 7 Betyg
Utvecklare Mark Kuo
E-post [email protected]
Betalningssätt free
Stödda Språk 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
}