Recipe Filter

Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup.

¿Qué es Recipe Filter?

Recipe Filter es una extensión de Chrome desarrollada por Seansoft, y su función principal es "Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Recipe Filter

Descarga archivos de extensión Recipe Filter 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

                        This extension will detect recipes on any page you visit and will highlight them at the top of the page. Easy!

No more hunting for the actual recipe when you visit a long-winded food blog!

You can turn it off for specific sites if you find it's not needed and edit the blacklist under "Options" when you right-click the green Recipe Filter icon in your toolbar.

This is an open source project: https://github.com/sean-public/RecipeFilter                    

Información Básica de la Extensión

Nombre Recipe Filter Recipe Filter
ID ahlcdjbkdaegmljnnncfnhiioiadakae
URL Oficial https://chromewebstore.google.com/detail/recipe-filter/ahlcdjbkdaegmljnnncfnhiioiadakae
Descripción Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup.
Tamaño del Archivo 12.64 KB
Cantidad de Instalaciones 56,805
Versión Actual 0.3
Última Actualización 2020-06-13
Fecha de Publicación 2020-06-13
Calificación 4.84/5 Total de 192 Calificaciones
Desarrollador Seansoft
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/sean-public/RecipeFilter
URL de la Página de Ayuda https://github.com/sean-public/RecipeFilter
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Recipe Filter",
    "short_name": "Recipe Filter",
    "version": "0.3",
    "description": "Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup.",
    "icons": {
        "128": "img\/icon-128.png"
    },
    "permissions": [
        "storage"
    ],
    "options_page": "html\/options.html",
    "browser_action": {
        "default_title": "Recipe Filter",
        "default_icon": "img\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "css\/recipe_filter.css"
            ],
            "js": [
                "js\/main.js"
            ]
        }
    ]
}