Cookbook

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

ما هو Cookbook؟

Cookbook هو إضافة Chrome تم تطويرها بواسطة Robin Glauser، والميزة الرئيسية لها هي "A extension which changes the units for recipes to european units.".

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

screenshot

تحميل ملف CRX للإضافة Cookbook

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