Allergen Warnings

Know if the product has allergens!

什麼是Allergen Warnings?

Allergen Warnings是由jigarkb開發的Chrome擴展程式,該擴展的主要功能是“Know if the product has allergens!”。

擴展截圖

screenshot
screenshot

下載Allergen Warnings擴展crx文件

下載Allergen Warnings擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        A chrome extension which works seamlessly on major grocery shopping site to display food warnings prominently.

A food allergy is a medical condition in which exposure to a food triggers a harmful immune response. The immune response, called an allergic reaction, occurs because the immune system attacks proteins in the food that are normally harmless. The proteins that trigger the reaction are called allergens.

Is there a Cure? No. To help Americans avoid the health risks posed by food allergens, FDA enforces the Food Allergen Labeling and Consumer Protection Act of 2004 (the Act). The Act applies to the labeling of foods regulated by FDA which includes all foods except poultry, most meats, certain egg products, and most alcoholic beverages which are regulated by other Federal agencies. As a result, food labels help allergic consumers identify offending foods or ingredients so they can more easily avoid them.

Challenge with Online Grocery Shopping: Online grocery shopping is gaining traction but most grocery sites don't explicitly specify allergen warnings. Making life harder for buyer to search for allergen warnings in product images.                    

擴展基本資訊

名稱 Allergen Warnings Allergen Warnings
ID okbjpdfbhnmnoopomccjelhfdgjjhcbj
官方網址 https://chromewebstore.google.com/detail/allergen-warnings/okbjpdfbhnmnoopomccjelhfdgjjhcbj
簡介 Know if the product has allergens!
檔案大小 356 KB
安裝次數 13
目前版本 1.0.2
更新時間 2018-02-18
上架時間 2018-02-18
開發者 jigarkb
電子郵箱 [email protected]
付費類型 free
擴展官網 http://allergenwarnings.com
說明頁面URL https://www.fda.gov/Food/IngredientsPackagingLabeling/FoodAllergens/ucm530854.htm
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Allergen Warnings",
    "description": "Know if the product has allergens!",
    "version": "1.0.2",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/primenow.amazon.com\/*"
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "bootstrap.min.js",
                "content.js",
                "popup.js"
            ],
            "css": [
                "monolithic.css",
                "bootstrap.min.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "exclamation-mark.png",
        "checked-mark.png"
    ],
    "icons": {
        "512": "icon\/icon512.png",
        "128": "icon\/icon128.png"
    }
}