Recipe Filter

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

What is Recipe Filter?

Recipe Filter is a Chrome extension developed by Seansoft, and its main feature is "Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup.".

Extension Screenshots

screenshot
screenshot

Download Recipe Filter Extension CRX File

Download Recipe Filter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Recipe Filter Recipe Filter
ID ahlcdjbkdaegmljnnncfnhiioiadakae
Official URL https://chromewebstore.google.com/detail/recipe-filter/ahlcdjbkdaegmljnnncfnhiioiadakae
Description Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup.
File Size 12.64 KB
Installation Count 56,805
Current Version 0.3
Last Updated 2020-06-13
Publish Date 2020-06-13
Rating 4.84/5 Total 192 Ratings
Developer Seansoft
Email [email protected]
Payment Type free
Extension Website https://github.com/sean-public/RecipeFilter
Help Page URL https://github.com/sean-public/RecipeFilter
Supported Languages 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"
            ]
        }
    ]
}