Brew Convert

Convert highlighted text to different units common for homebrewing

ما هو Brew Convert؟

Brew Convert هو إضافة Chrome تم تطويرها بواسطة svenito، والميزة الرئيسية لها هي "Convert highlighted text to different units common for homebrewing".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Brew Convert

قم بتنزيل ملفات الامتداد Brew Convert بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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
}