Allergen Warnings
Know if the product has allergens!
Allergen Warningsคืออะไร?
Allergen Warnings เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jigarkb และคุณลักษณะหลักของมันคือ "Know if the product has allergens!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Allergen Warnings
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
ID | okbjpdfbhnmnoopomccjelhfdgjjhcbj |
URL อย่างเป็นทางการ | 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" } } |