Recipe Filter

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

O que é Recipe Filter?

Recipe Filter é uma extensão do Chrome desenvolvida por Seansoft, e sua principal característica é "Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Recipe Filter

Baixe arquivos de extensão Recipe Filter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Recipe Filter Recipe Filter
ID ahlcdjbkdaegmljnnncfnhiioiadakae
URL Oficial https://chromewebstore.google.com/detail/recipe-filter/ahlcdjbkdaegmljnnncfnhiioiadakae
Descrição Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup.
Tamanho do Arquivo 12.64 KB
Contagem de Instalações 56,805
Versão Atual 0.3
Última Atualização 2020-06-13
Data de Publicação 2020-06-13
Classificação 4.84/5 Total de 192 Avaliações
Desenvolvedor Seansoft
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/sean-public/RecipeFilter
URL da Página de Ajuda https://github.com/sean-public/RecipeFilter
Idiomas Suportados 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"
            ]
        }
    ]
}