Recipe Box

A set of tools to make recipes online better.

Vad är Recipe Box?

Recipe Box är en Chrome-tillägg utvecklad av Recipe Box, och dess huvudfunktion är "A set of tools to make recipes online better.".

Tilläggsskärmbilder

screenshot

Ladda ner Recipe Box-förlängningens CRX-fil

Ladda ner Recipe Box-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Recipe Box Recipe Box
ID lcfhmcjffbgobdkdhnmmglogcbfkccpc
Officiell webbadress https://chromewebstore.google.com/detail/recipe-box/lcfhmcjffbgobdkdhnmmglogcbfkccpc
Beskrivning A set of tools to make recipes online better.
Filstorlek 61.44 KB
Antal Installationer 141
Aktuell Version 0.3.0
Senast Uppdaterad 2022-03-15
Publiceringsdatum 2022-03-10
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare Recipe Box
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://ryanmacdonald.ca/
Hjälpsida URL https://ryanmacdonald.ca/
Stödda Språk 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": []
        }
    ]
}