Recipe Box

A set of tools to make recipes online better.

什么是Recipe Box?

Recipe Box是由Recipe Box开发的Chrome扩展程序,该扩展的主要功能是“A set of tools to make recipes online better.”。

扩展截图

screenshot

下载Recipe Box扩展crx文件

下载Recipe Box扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Recipe websites are notorious for many reasons. Chefs, like you, are overwhelmed with ads and units of measurement that aren't familiar to your kitchen. We scroll and pull out converters to make these delicious dishes. Shouldn't it be easier? This is where Recipe Box comes in.

We're committed to changing your world with our lovely cooking extension to keep online recipes enjoyable and easy to navigate.

Features:
• Auto-scroll to the recipe card
• Bookmark recipes and sort alphabetically

Roadmap:
• Organize bookmarks by dish type
• Auto-convert to your preferred units
• Divide recipe by an amount
• Annotate recipes with your own notes

We love recipes and their amazing creators.  
Hit me up with your ideas and features you'd love to see.                    

扩展基本信息

名称 Recipe Box Recipe Box
ID lcfhmcjffbgobdkdhnmmglogcbfkccpc
官方URL https://chromewebstore.google.com/detail/recipe-box/lcfhmcjffbgobdkdhnmmglogcbfkccpc
简介 A set of tools to make recipes online better.
文件大小 61.44 KB
安装次数 141
当前版本 0.3.0
更新时间 2022-03-15
上架时间 2022-03-10
评分 5.00/5 共3次评分
开发者 Recipe Box
电子邮箱 [email protected]
付费类型 free
扩展官网 https://ryanmacdonald.ca/
帮助页面URL https://ryanmacdonald.ca/
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A set of tools to make recipes online better.",
    "version": "0.3.0",
    "manifest_version": 3,
    "name": "Recipe Box",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-48.png"
    },
    "permissions": [
        "bookmarks",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.bundle.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icon-128.png",
                "icon-48.png",
                "icon-16.png"
            ],
            "matches": []
        }
    ]
}