Brew Convert

Convert highlighted text to different units common for homebrewing

什么是Brew Convert?

Brew Convert是由svenito开发的Chrome扩展程序,该扩展的主要功能是“Convert highlighted text to different units common for homebrewing”。

扩展截图

screenshot

下载Brew Convert扩展crx文件

下载Brew Convert扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Converts highlighted text between common units for homebrewing in the context menu. Is able to detect units if selected text includes units, otherwise will show all conversions for the selected number.

Changes in 1.1
    * Support ranges. If you have ranges like "10-12kg" you can highlight both 
      numbers to convert the range.

Changes in 0.8
    * Allow spaces between degree and Celciu/Fahrenheit in text

Changes in 0.7
    * Add options to show all, metric->imperial, or imperial->metric only

Changes in 0.6
    * Detect plurals of unit names
    * Add Lovibond and EBC to known conversions

Changes in 0.5
    * Fix incorrect parsing if there is no space between unit and value                    

扩展基本信息

名称 Brew Convert Brew Convert
ID jcdkojonmmoljmglhlbampboocmemhfc
官方URL https://chromewebstore.google.com/detail/brew-convert/jcdkojonmmoljmglhlbampboocmemhfc
简介 Convert highlighted text to different units common for homebrewing
文件大小 21.65 KB
安装次数 56
当前版本 1.1
更新时间 2018-02-14
上架时间 2018-02-14
评分 3.00/5 共1次评分
开发者 svenito
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/Svenito/brewconvert
帮助页面URL https://github.com/Svenito/brewconvert
支持的语言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Brew Convert",
    "description": "Convert highlighted text to different units common for homebrewing",
    "version": "1.1",
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icons\/brewvert_16.png",
        "48": "icons\/brewvert_48.png",
        "128": "icons\/brewvert_128.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "manifest_version": 2
}