Recipe Box
A set of tools to make recipes online better.
Was ist Recipe Box?
Recipe Box ist eine Chrome-Erweiterung, die von Recipe Box entwickelt wurde, und ihr Hauptmerkmal ist "A set of tools to make recipes online better.".
Erweiterungsscreenshots
Recipe Box-Erweiterungs-CRX-Datei herunterladen
Laden Sie Recipe Box-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Recipe Box |
ID | lcfhmcjffbgobdkdhnmmglogcbfkccpc |
Offizielle URL | https://chromewebstore.google.com/detail/recipe-box/lcfhmcjffbgobdkdhnmmglogcbfkccpc |
Beschreibung | A set of tools to make recipes online better. |
Dateigröße | 61.44 KB |
Installationsanzahl | 141 |
Aktuelle Version | 0.3.0 |
Letztes Update | 2022-03-15 |
Veröffentlichungsdatum | 2022-03-10 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | Recipe Box |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://ryanmacdonald.ca/ |
Hilfeseite URL | https://ryanmacdonald.ca/ |
Unterstützte Sprachen | 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": [] } ] } |