Ingredient Checker

Scans the page for comedogenic and irritating ingredients

O que é Ingredient Checker?

Ingredient Checker é uma extensão do Chrome desenvolvida por Dan Allegrone, e sua principal característica é "Scans the page for comedogenic and irritating ingredients".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Ingredient Checker

Baixe arquivos de extensão Ingredient Checker 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 tool will scan pages for harmful irritants that are commonly found in beauty products.
Simply click the icon to crawl the text of the page and receive a report on the irritants found.
A popup message will be displayed summarizing the irritants found, and the words will be highlighted on the page.

YELLOW highlights are AGING ingredients - Ingredients that will age the skin.
ORANGE highlights are COMEDOGENIC ingredients - Ingredients that commonly cause or worsen acne.
RED highlights are IRRITATING ingredients - Ingredients that commonly cause skin irritation.

Update History:


v1.0.2:
*Updated list of ingredients.
*Search improvements - Faster page crawling.                    

Informações Básicas da Extensão

Nome Ingredient Checker Ingredient Checker
ID daenhfdfeihpkliicomkjfmfbkagcafn
URL Oficial https://chromewebstore.google.com/detail/ingredient-checker/daenhfdfeihpkliicomkjfmfbkagcafn
Descrição Scans the page for comedogenic and irritating ingredients
Tamanho do Arquivo 100 KB
Contagem de Instalações 37
Versão Atual 1.0.3
Última Atualização 2019-11-29
Data de Publicação 2019-11-26
Desenvolvedor Dan Allegrone
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Ingredient Checker",
    "version": "1.0.3",
    "description": "Scans the page for comedogenic and irritating ingredients",
    "background": {
        "scripts": [
            "lib\/jquery-3.4.1.min.js",
            "background.js"
        ]
    },
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lib\/jquery-3.4.1.min.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "web_accessible_resources": [
        "data\/ingredients.json"
    ]
}