Brew Convert

Convert highlighted text to different units common for homebrewing

O que é Brew Convert?

Brew Convert é uma extensão do Chrome desenvolvida por svenito, e sua principal característica é "Convert highlighted text to different units common for homebrewing".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Brew Convert

Baixe arquivos de extensão Brew Convert no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Brew Convert Brew Convert
ID jcdkojonmmoljmglhlbampboocmemhfc
URL Oficial https://chromewebstore.google.com/detail/brew-convert/jcdkojonmmoljmglhlbampboocmemhfc
Descrição Convert highlighted text to different units common for homebrewing
Tamanho do Arquivo 21.65 KB
Contagem de Instalações 56
Versão Atual 1.1
Última Atualização 2018-02-14
Data de Publicação 2018-02-14
Classificação 3.00/5 Total de 1 Avaliações
Desenvolvedor svenito
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/Svenito/brewconvert
URL da Página de Ajuda https://github.com/Svenito/brewconvert
Idiomas Suportados 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
}