Brew Convert

Convert highlighted text to different units common for homebrewing

Brew Convert क्या है?

Brew Convert svenito द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Convert highlighted text to different units common for homebrewing"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Brew Convert एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
}