Ingredient Checker

Scans the page for comedogenic and irritating ingredients

ما هو Ingredient Checker؟

Ingredient Checker هو إضافة Chrome تم تطويرها بواسطة Dan Allegrone، والميزة الرئيسية لها هي "Scans the page for comedogenic and irritating ingredients".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Ingredient Checker

قم بتنزيل ملفات الامتداد Ingredient Checker بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم Ingredient Checker Ingredient Checker
ID daenhfdfeihpkliicomkjfmfbkagcafn
عنوان URL الرسمي https://chromewebstore.google.com/detail/ingredient-checker/daenhfdfeihpkliicomkjfmfbkagcafn
الوصف Scans the page for comedogenic and irritating ingredients
حجم الملف 100 KB
عدد التثبيتات 37
النسخة الحالية 1.0.3
آخر تحديث 2019-11-29
تاريخ النشر 2019-11-26
المطور Dan Allegrone
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة 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"
    ]
}