Ingredient Checker

Scans the page for comedogenic and irritating ingredients

Qu'est-ce que Ingredient Checker ?

Ingredient Checker est une extension Chrome développée par Dan Allegrone, et sa fonction principale est "Scans the page for comedogenic and irritating ingredients".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Ingredient Checker

Téléchargez les fichiers d'extension Ingredient Checker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Ingredient Checker Ingredient Checker
ID daenhfdfeihpkliicomkjfmfbkagcafn
URL Officiel https://chromewebstore.google.com/detail/ingredient-checker/daenhfdfeihpkliicomkjfmfbkagcafn
Description Scans the page for comedogenic and irritating ingredients
Taille du Fichier 100 KB
Nombre d'Installations 37
Version Actuelle 1.0.3
Dernière Mise à Jour 2019-11-29
Date de Publication 2019-11-26
Développeur Dan Allegrone
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}