Ingredient Checker

Scans the page for comedogenic and irritating ingredients

Was ist Ingredient Checker?

Ingredient Checker ist eine Chrome-Erweiterung, die von Dan Allegrone entwickelt wurde, und ihr Hauptmerkmal ist "Scans the page for comedogenic and irritating ingredients".

Erweiterungsscreenshots

screenshot
screenshot

Ingredient Checker-Erweiterungs-CRX-Datei herunterladen

Laden Sie Ingredient Checker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Ingredient Checker Ingredient Checker
ID daenhfdfeihpkliicomkjfmfbkagcafn
Offizielle URL https://chromewebstore.google.com/detail/ingredient-checker/daenhfdfeihpkliicomkjfmfbkagcafn
Beschreibung Scans the page for comedogenic and irritating ingredients
Dateigröße 100 KB
Installationsanzahl 37
Aktuelle Version 1.0.3
Letztes Update 2019-11-29
Veröffentlichungsdatum 2019-11-26
Entwickler Dan Allegrone
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}