Recipe Box
A set of tools to make recipes online better.
¿Qué es Recipe Box?
Recipe Box es una extensión de Chrome desarrollada por Recipe Box, y su función principal es "A set of tools to make recipes online better.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Recipe Box
Descarga archivos de extensión Recipe Box en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Recipe Box |
ID | lcfhmcjffbgobdkdhnmmglogcbfkccpc |
URL Oficial | https://chromewebstore.google.com/detail/recipe-box/lcfhmcjffbgobdkdhnmmglogcbfkccpc |
Descripción | A set of tools to make recipes online better. |
Tamaño del Archivo | 61.44 KB |
Cantidad de Instalaciones | 141 |
Versión Actual | 0.3.0 |
Última Actualización | 2022-03-15 |
Fecha de Publicación | 2022-03-10 |
Calificación | 5.00/5 Total de 3 Calificaciones |
Desarrollador | Recipe Box |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://ryanmacdonald.ca/ |
URL de la Página de Ayuda | https://ryanmacdonald.ca/ |
Idiomas Soportados | 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": [] } ] } |