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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}