Cookbook

A extension which changes the units for recipes to european units.

Cookbook क्या है?

Cookbook Robin Glauser द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A extension which changes the units for recipes to european units."।

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

screenshot

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

crx प्रारूप में Cookbook एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        ** This is a very experimental extension. Please use with caution. This may break website at any time. **

A extension which changes the units for recipes to european units. It automatically gets loaded and replaces all instances of units in recipes with the european equivalent.

This is still very much a draft of the extension.

If you find bugs or have an idea how to improve it please submit a issue on github:
https://github.com/nahakiole/cookbook/issues

Icon from http://iconfinder.com
https://www.iconfinder.com/icons/416389/cook_cooking_egg_meet_pan_icon by Squid.ink
[Creative Commons Attribution 3.0 Unported License](http://creativecommons.org/licenses/by/3.0)                    

एक्सटेंशन की मूल जानकारी

नाम Cookbook Cookbook
ID agbkfchogbebmhofpgekbffcgikbhifh
आधिकारिक URL https://chrome.google.com/webstore/detail/cookbook/agbkfchogbebmhofpgekbffcgikbhifh
विवरण A extension which changes the units for recipes to european units.
फ़ाइल का आकार 14.17 KB
स्थापना संख्या 18
वर्तमान संस्करण 1.0
अंतिम अपडेट 2015-10-06
प्रकाशन तिथि 2015-10-06
डेवलपर Robin Glauser
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Cookbook",
    "description": "A extension which changes the units for recipes to european units.",
    "version": "1.0",
    "icons": {
        "512": "icon.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "translator.js"
            ],
            "run_at": "document_end"
        }
    ]
}