Cookbook

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

Cookbookとは何ですか?

CookbookはRobin Glauserによって開発されたChromeの拡張機能で、その主な機能は「A extension which changes the units for recipes to european units.」です。

拡張機能のスクリーンショット

screenshot

Cookbook拡張機能のCRXファイルをダウンロード

Cookbook拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        ** 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"
        }
    ]
}