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
官方網址 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"
        }
    ]
}