RecipeCleaner

Remove the clutter, ads, popups, and paragraphs and paragraphs of filler text from recipe sites.

O que é RecipeCleaner?

RecipeCleaner é uma extensão do Chrome desenvolvida por Erik Price, e sua principal característica é "Remove the clutter, ads, popups, and paragraphs and paragraphs of filler text from recipe sites.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão RecipeCleaner

Baixe arquivos de extensão RecipeCleaner 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

                        Even with an ad blocker, recipe sites are a messy experience. Popups ask you to subscribe, there are pages and pages of filler text and images to scroll through, and then finally the recipe is tucked away at the bottom somewhere.

RecipeCleaner shows you only what you care about: what you're making, what you need, and how to make it.                    

Informações Básicas da Extensão

Nome RecipeCleaner RecipeCleaner
ID omonbdfjebcopdfdkiaaajifkaelcohp
URL Oficial https://chromewebstore.google.com/detail/recipecleaner/omonbdfjebcopdfdkiaaajifkaelcohp
Descrição Remove the clutter, ads, popups, and paragraphs and paragraphs of filler text from recipe sites.
Tamanho do Arquivo 583 KB
Contagem de Instalações 423
Versão Atual 2.3.2
Última Atualização 2022-05-19
Data de Publicação 2019-06-24
Classificação 5.00/5 Total de 5 Avaliações
Desenvolvedor Erik Price
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://erik.github.io/recipecleaner
URL da Página de Ajuda https://goo.gl/forms/bsr8RJJoeiXDKJqo2
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "RecipeCleaner",
    "version": "2.3.2",
    "description": "Remove the clutter, ads, popups, and paragraphs and paragraphs of filler text from recipe sites.",
    "icons": {
        "32": "icons\/icon-detected-32.png",
        "48": "icons\/icon-detected-48.png",
        "96": "icons\/icon-detected-96.png"
    },
    "page_action": {
        "browser_style": true,
        "default_icon": "icons\/icon-detected-96.png",
        "default_title": "Show me the recipe!"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/vendor.js",
                "js\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/vendor.js",
            "js\/background.js"
        ]
    },
    "permissions": [
        "*:\/\/*\/*",
        "storage",
        "tabs"
    ],
    "content_security_policy": "script-src 'self' 'sha256-58XC9A7vCVf4d\/kGzBMGAy2dBerh5XDULiZ80gbeBP0='; object-src 'self';"
}