Cookbook

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

Cookbook là gì?

Cookbook là một tiện ích mở rộng Chrome được phát triển bởi Robin Glauser, và tính năng chính của nó là "A extension which changes the units for recipes to european units.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Cookbook

Tải xuống các tệp mở rộng Cookbook dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Cookbook Cookbook
ID agbkfchogbebmhofpgekbffcgikbhifh
URL Chính Thức https://chrome.google.com/webstore/detail/cookbook/agbkfchogbebmhofpgekbffcgikbhifh
Mô tả A extension which changes the units for recipes to european units.
Kích Thước Tệp 14.17 KB
Số Lần Cài Đặt 18
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2015-10-06
Ngày Phát Hành 2015-10-06
Nhà Phát Triển Robin Glauser
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}