Ingredient Checker

Scans the page for comedogenic and irritating ingredients

Ingredient Checkerとは何ですか?

Ingredient CheckerはDan Allegroneによって開発されたChromeの拡張機能で、その主な機能は「Scans the page for comedogenic and irritating ingredients」です。

拡張機能のスクリーンショット

screenshot
screenshot

Ingredient Checker拡張機能のCRXファイルをダウンロード

Ingredient Checker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    ]
}