Cookbook

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

Apa itu Cookbook?

Cookbook adalah ekstensi Chrome yang dikembangkan oleh Robin Glauser, dan fitur utamanya adalah "A extension which changes the units for recipes to european units.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Cookbook

Unduh file ekstensi Cookbook dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        ** 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)                    

Informasi Dasar Ekstensi

Nama Cookbook Cookbook
ID agbkfchogbebmhofpgekbffcgikbhifh
URL Resmi https://chrome.google.com/webstore/detail/cookbook/agbkfchogbebmhofpgekbffcgikbhifh
Deskripsi A extension which changes the units for recipes to european units.
Ukuran File 14.17 KB
Jumlah Instalasi 18
Versi Saat Ini 1.0
Terakhir Diperbarui 2015-10-06
Tanggal Publikasi 2015-10-06
Pengembang Robin Glauser
Tipe Pembayaran free
Bahasa yang Didukung 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"
        }
    ]
}