Recipe Box

A set of tools to make recipes online better.

Cos'è Recipe Box?

Recipe Box è un'estensione di Chrome sviluppata da Recipe Box, e la sua funzione principale è "A set of tools to make recipes online better.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Recipe Box

Scarica i file di estensione Recipe Box in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Recipe Box Recipe Box
ID lcfhmcjffbgobdkdhnmmglogcbfkccpc
URL Ufficiale https://chromewebstore.google.com/detail/recipe-box/lcfhmcjffbgobdkdhnmmglogcbfkccpc
Descrizione A set of tools to make recipes online better.
Dimensione del File 61.44 KB
Conteggio Installazioni 141
Versione Corrente 0.3.0
Ultimo Aggiornamento 2022-03-15
Data di Pubblicazione 2022-03-10
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore Recipe Box
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://ryanmacdonald.ca/
URL della Pagina di Aiuto https://ryanmacdonald.ca/
Lingue Supportate 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": []
        }
    ]
}